forked from Protocol388835/elcharis-newWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2217 lines (2059 loc) · 102 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>
<meta charset="utf-8" />
<title>EL-Charis Logistics</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="EL-Charis Logistics Website" name="keywords" />
<meta content="EL-Charis Logistics Website" name="description" />
<!-- Favicon -->
<link href="img/logo.png" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Topbar Start -->
<div class="container-fluid bg-dark">
<div class="row py-2 px-lg-5">
<div class="col-lg-6 text-center text-lg-left mb-2 mb-lg-0">
<div class="d-inline-flex align-items-center text-white">
<small><i class="fa fa-phone-alt mr-2"></i>08078970412, 09163444735</small>
<small class="px-3">|</small>
<small><i class="fa fa-envelope mr-2"></i>admin@elcharislogistics.com</small>
</div>
</div>
<div class="col-lg-6 text-center text-lg-right">
<div class="d-inline-flex align-items-center">
<a class="text-white px-2"
href="https://web.facebook.com/elcharis.logistics/">
<i class="fab fa-facebook-f"></i>
</a>
<a class="text-white px-2" href="">
<i class="fab fa-twitter"></i>
</a>
<a class="text-white px-2" href="">
<i class="fab fa-linkedin-in"></i>
</a>
<a
class="text-white px-2"
href="https://www.instagram.com/elcharis_logistics/"
>
<i class="fab fa-instagram"></i>
</a>
<a class="text-white pl-2" href="">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<div class="container-fluid p-0">
<nav
class="navbar navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-lg-5"
>
<a href="index.html" class="navbar-brand ml-lg-3">
<h1 class="m-0 display-5 text-uppercase color-primary">
<img src="./img/logo.png" width="50" />EL-Charis Logistics
</h1>
</a>
<button
type="button"
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-between px-lg-3"
id="navbarCollapse"
>
<div class="navbar-nav m-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="service.html" class="nav-item nav-link">Service</a>
<a href="price.html" class="nav-item nav-link">Price</a>
<a href="contact.html" class="nav-item nav-link">Contact</a>
<a href="https://wghp5.wghservers.com:2096/webmaillogout.cgi" class="nav-item nav-link" target="_blank">Login</a>
<!-- <div class="nav-item dropdown">
<a
href="#"
class="nav-link dropdown-toggle"
data-toggle="dropdown"
>Pages</a
>
<div class="dropdown-menu rounded-0 m-0">
<a href="blog.html" class="dropdown-item">Blog Grid</a>
<a href="single.html" class="dropdown-item">Blog Detail</a>
</div>
</div> -->
</div>
<!-- <a href="" class="btn btn-primary py-2 px-4 d-none d-lg-block"
>Get A Quote</a
> -->
</div>
</nav>
</div>
<!-- Navbar End -->
<!-- Start -->
<div class="jumbotron jumbotron-fluid mb-5">
<div class="container text-center py-5">
<h1 class="text-primary mb-4">Safe & Faster</h1>
<h1 class="text-white display-3 mb-5">Logistics Services</h1>
<div class="mx-auto" style="width: 100%; max-width: 600px">
<!-- <div class="input-group">
<input
type="text"
class="form-control border-light"
style="padding: 30px"
placeholder="Tracking Id"
/>
<div class="input-group-append">
<button class="btn btn-primary px-3">Track & Trace</button>
</div>
</div> -->
</div>
</div>
</div>
<!-- Header End -->
<!-- About Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 pb-4 pb-lg-0">
<img class="img-fluid w-100" src="img\WhatsApp Image 2023-05-28 at 6.19.33 AM (2).jpeg" alt="" />
<div class="bg-primary text-dark text-center p-4">
<h3 class="m-0">15+ Years Experience</h3>
</div>
</div>
<div class="col-lg-7">
<h6 class="text-primary text-uppercase font-weight-bold">
About Us
</h6>
<h1 class="mb-4">Trusted & Faster Logistics Service Provider</h1>
<p class="mb-4">
Express delivery is an innovative service is effective logistics
solution for the delivery of small cargo. This service is useful
for companies various.
</p>
<div class="d-flex align-items-center pt-2">
<button
type="button"
class="btn-play"
data-toggle="modal"
data-src="img\WhatsApp Video 2023-05-28 at 6.27.54 AM.mp4"
data-target="#videoModal"
>
<span></span>
</button>
<h5 class="font-weight-bold m-0 ml-4">Play Video</h5>
</div>
</div>
</div>
</div>
<!-- Video Modal -->
<div
class="modal fade"
id="videoModal"
tabindex="-1"
role="dialog"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe
class="embed-responsive-item"
src=""
id="video"
allowscriptaccess="always"
allow="autoplay"
></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Quote Request Start -->
<div class="container-fluid bg-secondary my-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7 py-5 py-lg-0">
<h6 class="text-primary text-uppercase font-weight-bold">
Get A Quote
</h6>
<h1 class="mb-4">Request A Free Quote</h1>
<p class="mb-4">
We are the right Team for your business. We have the expertise and
knowledge to offer impartial advice and services at an honest
price.
</p>
<div class="row">
<div class="col-sm-4">
<h1 class="text-primary mb-2" data-toggle="counter-up">15</h1>
<h6 class="font-weight-bold mb-4">SKilled Experts</h6>
</div>
<div class="col-sm-4">
<h1 class="text-primary mb-2" data-toggle="counter-up">5000</h1>
<h6 class="font-weight-bold mb-4">Happy Clients</h6>
</div>
<div class="col-sm-4">
<h1 class="text-primary mb-2" data-toggle="counter-up">18000</h1>
<h6 class="font-weight-bold mb-4">Deliveries</h6>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="bg-primary py-5 px-4 px-sm-5">
<form class="py-5">
<div class="form-group">
<input
type="text"
class="form-control border-0 p-4"
placeholder="Your Name"
required="required"
/>
</div>
<div class="form-group">
<input
type="email"
class="form-control border-0 p-4"
placeholder="Your Email"
required="required"
/>
</div>
<div class="form-group">
<select
class="custom-select border-0 px-4"
style="height: 47px"
>
<option selected>Select A Service</option>
<option value="1">Inbound Logistics.</option>
<option value="2">Distribution logistics </option>
<option value="3">Outbound Logistics</option>
</select>
</div>
<div>
<a href="https:wa.link/l99skm" class="btn btn-dark btn-block border-0 py-3">
Get A Quote
</a>
<!-- <button
class="btn btn-dark btn-block border-0 py-3"
type="submit"
>
Get A Quote
</button> -->
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Quote Request Start -->
<!-- Services Start -->
<div class="container-fluid pt-5">
<div class="container">
<div class="text-center pb-2">
<h6 class="text-primary text-uppercase font-weight-bold">
Our Services
</h6>
<h1 class="mb-4">Best Logistic Services</h1>
</div>
<div class="row pb-3">
<div class="col-lg-3 col-md-6 text-center mb-5">
<div
class="d-flex align-items-center justify-content-center bg-primary mb-4 p-4"
>
<i class="fa fa-2x fa-plane text-dark pr-3"></i>
<h6 class="text-white font-weight-medium m-0">AIR LOGISTICS</h6>
</div>
<p style="text-align: justify;">
Air freight is another term for air cargo that is, the shipment of
goods through an air carrier. Air transport services are the most
valuable when it comes to moving express shipments around the
globe.
<br />
<!-- <a class="border-bottom text-decoration-none" href=""
>Read More</a
> -->
</p>
</div>
<div class="col-lg-3 col-md-6 text-center mb-5">
<div
class="d-flex align-items-center justify-content-center bg-primary mb-4 p-4"
>
<i class="fa fa-2x fa-ship text-dark pr-3"></i>
<h6 class="text-white font-weight-medium m-0">SEA LOGISTICS</h6>
</div>
<p style="text-align: justify;">
Sea freight is a method of transporting large quantities of
products via cargo ships. Goods are packed into containers and
these containers are loaded onto a vessel, where they will be
sailed to their destination country.
</p>
<!-- <a class="border-bottom text-decoration-none" href="">Read More</a> -->
</div>
<div class="col-lg-3 col-md-6 text-center mb-5">
<div
class="d-flex align-items-center justify-content-center bg-primary mb-4 p-4"
>
<i class="fa fa-2x fa-truck text-dark pr-3"></i>
<h6 class="text-white font-weight-medium m-0">ROAD LOGISTICS</h6>
</div>
<p style="text-align: justify;">
The major advantage of road transport is that it can enable
door-to-door delivery of goods and materials and can provide a
very cost-effective means of cartage, loading and unloading.
</p>
<!-- <a class="border-bottom text-decoration-none" href="">Read More</a> -->
</div>
<div class="col-lg-3 col-md-6 text-center mb-5">
<div
class="d-flex align-items-center justify-content-center bg-primary mb-4 p-4"
>
<i class="fa fa-2x fa-store text-dark pr-3"></i>
<h6 class="text-white font-weight-medium m-0">WARE-HOUSING</h6>
</div>
<p style="text-align: justify;">
Warehouse logistics refers to the physical flow of products during
receiving and shipping as well as the data associated with this
flow, such as fulfilment times or product information.
</p>
<!-- <a class="border-bottom text-decoration-none" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Features Start -->
<div class="container-fluid bg-secondary my-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5">
<img class="img-fluid w-100" src="./img/ukDelivery.jpeg" alt="" />
</div>
<div class="col-lg-7 py-5 py-lg-0">
<h6 class="text-primary text-uppercase font-weight-bold">
Why Choose Us
</h6>
<h1 class="mb-4">Faster, Safe and Trusted Logistics Services</h1>
<p class="mb-4">
El-charis logistics is a leading global courier and logistics company with over 10years in the logistics industry. We nurture clients’ businesses by learning and understanding their needs, hence partnering with them to achieve their goals. We also accept shipment and deliver to any part of the world
</p>
<ul class="list-inline">
<li>
<h6>
<i class="far fa-dot-circle text-primary mr-3"></i>Best In
Industry
</h6>
</li>
<li>
<h6>
<i class="far fa-dot-circle text-primary mr-3"></i>Emergency
Services
</h6>
</li>
<li>
<h6>
<i class="far fa-dot-circle text-primary mr-3"></i>24/7
Customer Support
</h6>
</li>
</ul>
<a href="" class="btn btn-primary mt-3 py-2 px-4">Learn More</a>
</div>
</div>
</div>
</div>
<!-- Features End -->
<!-- Pricing Plan Start -->
<div class="container-fluid pt-4">
<div class="container">
<div class="text-center pb-2">
<h6 class="text-primary text-uppercase font-weight-bold">
Pricing Plan
</h6>
<h1 class="mb-4">Affordable Pricing Packages</h1>
</div>
<div class="row">
<!-- the table starts here ZONE 1-->
<div class="col-md-4 mb-5">
<div class="bg-secondary">
<div class="text-center p-4-option">
<h1 class="display-4 mb-0">
<p style="font-size: 12px; line-height:15px; margin-top: 10px; ">UNITED KINGDOM / IRELAND / GUERNSEY / JERSEY
<br/>
<br/>
</p>
</h1>
</div>
<div class="bg-primary text-center p-4-option">
<h3 class="m-0">ZONE 1
</h3>
</div>
<table style="width: 100%; border-collapse: collapse;">
<tr>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">KG </th>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">AMOUNT</th>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">0-2KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">24,400
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">2.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">30,500</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">35,800</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">41,100
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">46,400
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">51,700
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">56,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">61,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">66,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">70,500</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">75,000</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">79,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">84,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">88,500</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">93,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">07,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">102,000</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG AND
ABOVE
</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10,000 PER KG</td>
</tr>
</table>
<!-- <h1 class="display-4 mb-0">
<small
class="align-top text-muted font-weight-medium"
style="font-size: 22px; line-height: 45px"
>$</small
>99<small
class="align-bottom text-muted font-weight-medium"
style="font-size: 16px; line-height: 40px"
>/Mo</small
>
</h1>
</div>
<div class="bg-primary text-center p-4">
<h3 class="m-0">Basic</h3>
</div>
<div class="d-flex flex-column align-items-center py-4">
<p>HTML5 & CSS3</p>
<p>Bootstrap 4</p>
<p>Responsive Layout</p>
<p>Compatible With All Browsers</p>
<a href="" class="btn btn-primary py-2 px-4 my-2">Order Now</a>
</div> -->
</div>
</div>
<!-- the table stops here -->
<!-- the table starts here ZONE 2 -->
<div class="col-md-4 mb-5">
<div class="bg-secondary">
<div class="text-center p-4-option">
<h1 class="display-4 mb-0">
<p style="font-size: 12px; line-height:25px; margin-top: 10px; ">BENIN / BURKINA FASO / CAMEROON/ CAPE VERDE / CHAD / CONGO / GUINE /
COTE D’IVOIRE / EQUATORIAL GUINEA/ GABON/ LIBERIA / MALI/ NIGER /
SENEGAL/ SIERRIA LEONE / TOGO / SAO TOME / GAMBIA / GHANA </p>
</h1>
</div>
<div class="bg-primary text-center p-4-option">
<h3 class="m-0">ZONE 2</h3>
</div>
<table style="width: 100%; border-collapse: collapse;">
<tr>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">KG </th>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">AMOUNT</th>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">0-2KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">26,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">2.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">32,600</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">37,900</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">43,200
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">49,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">54,800
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">60,100
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">65,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">70,900
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">75,800</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">80,700
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">86,600
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">91,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">96,400</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">101,300
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">109,200
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">114,100</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG AND
ABOVE
</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">11,500 PER KG</td>
</tr>
</table>
<!-- <h1 class="display-4 mb-0">
<small
class="align-top text-muted font-weight-medium"
style="font-size: 22px; line-height: 45px"
>$</small
>99<small
class="align-bottom text-muted font-weight-medium"
style="font-size: 16px; line-height: 40px"
>/Mo</small
>
</h1>
</div>
<div class="bg-primary text-center p-4">
<h3 class="m-0">Basic</h3>
</div>
<div class="d-flex flex-column align-items-center py-4">
<p>HTML5 & CSS3</p>
<p>Bootstrap 4</p>
<p>Responsive Layout</p>
<p>Compatible With All Browsers</p>
<a href="" class="btn btn-primary py-2 px-4 my-2">Order Now</a>
</div> -->
</div>
</div>
<!-- the table stops here -->
<!-- the table starts here ZONE 3 -->
<div class="col-md-4 mb-5">
<div class="bg-secondary">
<div class="text-center p-4-option">
<h1 class="display-4 mb-0">
<p style="font-size: 12px; line-height:15px; margin-top: 10px; ">UNITED STATES / CANADA / MEXICO <br/>
<br/>
<br/>
</p>
</h1>
</div>
<div class="bg-primary text-center p-4-option">
<h3 class="m-0">ZONE 3</h3>
</div>
<table style="width: 100%; border-collapse: collapse;">
<tr>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">KG </th>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">AMOUNT</th>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">0-2KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">28,700
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">2.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">37,000</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">42,600</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">52,300
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">59,900
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">68,500</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">75,100
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">82,200
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">89,200
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">96,200</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">103,200</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">110,200
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">117,300
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">124,300</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">131,300
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">138,300
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">145,300</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG AND
ABOVE
</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">12,500 PER KG</td>
</tr>
</table>
<!-- <h1 class="display-4 mb-0">
<small
class="align-top text-muted font-weight-medium"
style="font-size: 22px; line-height: 45px"
>$</small
>99<small
class="align-bottom text-muted font-weight-medium"
style="font-size: 16px; line-height: 40px"
>/Mo</small
>
</h1>
</div>
<div class="bg-primary text-center p-4">
<h3 class="m-0">Basic</h3>
</div>
<div class="d-flex flex-column align-items-center py-4">
<p>HTML5 & CSS3</p>
<p>Bootstrap 4</p>
<p>Responsive Layout</p>
<p>Compatible With All Browsers</p>
<a href="" class="btn btn-primary py-2 px-4 my-2">Order Now</a>
</div> -->
</div>
</div>
<!-- the table stops here -->
<!-- the table starts here ZONE 4 -->
<div class="col-md-4 mb-5">
<div class="bg-secondary">
<div class="text-center p-4-option">
<h1 class="display-4 mb-0">
<p style="font-size: 12px; line-height:25px; margin-top: 10px; ">ALBANIA/ ANDORRA/ SERBIA/ AUSTRIA/ SPAIN/ BELARUS/ SWEDEN/
ITALY/ BOSNIA AND HERZEGOVINA/ BELGIUM/ MALTA/ BULGARIA/
CANARYISL/ LATIVA/ CROATIA/ CYPRUS/ CZECH REPUBLIC/
DENMARK/ TURKEY/ SESTONIA/ FAROE ISLAND/ FINLAND/ FRANCE/
GERMANY/ GIBRALTER/ NORWAY/ GREECE / GREENLAND </p>
</h1>
</div>
<div class="bg-primary text-center p-4-option">
<h3 class="m-0">ZONE 4
</h3>
</div>
<table style="width: 100%; border-collapse: collapse;">
<tr>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">KG </th>
<th style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">AMOUNT</th>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">0-2KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">32,500
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">2.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">40,800</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">48,500
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">3.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">55,100
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">64,700
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">4.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">72,300</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">80,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">5.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">86,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">94,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">6.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">101,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">108,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">7.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">115,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">122,000
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">8.5KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">129,100</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">140,100
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">9.5KG</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">147,100
</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG </td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">157,200</td>
</tr>
<tr>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">10KG AND
ABOVE
</td>
<td style="padding: 8px; text-align: center; border-bottom: 1px solid #ddd;">15,500 PER KG</td>
</tr>
</table>
<!-- <h1 class="display-4 mb-0">
<small
class="align-top text-muted font-weight-medium"
style="font-size: 22px; line-height: 45px"
>$</small
>99<small
class="align-bottom text-muted font-weight-medium"
style="font-size: 16px; line-height: 40px"
>/Mo</small
>
</h1>
</div>
<div class="bg-primary text-center p-4">
<h3 class="m-0">Basic</h3>
</div>
<div class="d-flex flex-column align-items-center py-4">
<p>HTML5 & CSS3</p>
<p>Bootstrap 4</p>
<p>Responsive Layout</p>
<p>Compatible With All Browsers</p>
<a href="" class="btn btn-primary py-2 px-4 my-2">Order Now</a>
</div> -->
</div>
</div>
<!-- the table stops here -->