-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1311 lines (1128 loc) · 82 KB
/
Copy pathindex.html
File metadata and controls
1311 lines (1128 loc) · 82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/all.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="images/Trade-X-Logo.png" />
<script src="js/jquery-3.5.1.slim.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<title>Tradex</title>
</head>
<body>
<a href="#" class="text-decoration-none bg-primary text-white position-fixed custom-arrow text-center pt-1 col-lg-3 col-md-3 col-sm-3">^</a>
<section class="bg-primary d-sm-none d-md-none d-lg-block">
<div class="container">
<div class="row d-flex">
<div class="col-8 pt-2 ">
<div class="pr-1 text-white mr-0 pb-0">
<ul class="list-style d-inline-block d-flex">
<li> <a href="#facebook"><i class="fab fa-facebook-f pr-4 text-decoration-none text-white"></i></a></li>
<li><a href="#"><i class="fab fa-twitter pr-4 text-decoration-none text-white"></i></a></li>
<li> <a href="#"><i class="fab fa-linkedin-in pr-4 text-decoration-none text-white"></i></a></li>
<li><a href="#"><i class="fab fa-instagram pr-4 text-decoration-none text-white"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g pr-3 text-decoration-none text-white"></i></a></li>
<li class="border-left"> <i class="fas fa-map-marker-alt text-transparent"></i></li>
<li><p class="text-center text-white pl-2">267 Park Avenue New York, NY 90210</p></li>
</ul>
</div>
</div>
<div class="col-4 d-flex">
<div>
<i class="far fa-envelope p-2 text-white"></i>
<p class="text-center text-white p-2 d-inline-block border-right">Quick Email</p>
</div>
<div>
<i class="fas fa-phone-volume p-2 text-decoration-none text-white"></i>
<p class="text-center text-white p-2 d-inline-block">+1 (409) 987-5874</p>
</div>
</div>
</div>
</div>
</section>
<!--NavBar---------------------------------------------------------------------------->
<section class="bg-white position-sticky sticky-top">
<div class="container custom-nav">
<div class="row">
<nav class="navbar navbar-expand-lg sticky-top shadow-black">
<a class="navbar-brand mr-5 " href="#">
<img src="images/Trade-X-Logo.png" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main_nav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse align-self-start nav_right p-sm-3" id="main_nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown" data-hover="dropdown">
HOME
<i class=" fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu p-0">
<a class="dropdown-item border-bottom" href="#">Home01</a>
<a class="dropdown-item" href="#">Home02</a>
</div>
</li>
<li class="nav-item mr-xl-2">
<a class="nav-link" href="#">ABOUT</a>
</li>
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown">
HEADERS
<i class="fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu p-0">
<a class="dropdown-item border-bottom " href="#">Header Style 1</a>
<a class="dropdown-item border-bottom" href="#">Header Style 2</a>
<a class="dropdown-item border-bottom" href="#">Header Style 3</a>
<a class="dropdown-item " href="#">Header Style 4</a>
</div>
</li>
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown">
BLOG POST
<i class="fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu p-0">
<div class="dropdown w-100">
<div data-toggle="dropdown"
class="dropdown-item border-bottom d-flex justify-content-between align-items-center nxt">
<a class="pr-5" href="#">Blog Grid</a>
<i class="fa fa-angle-down down_animate"></i>
</div>
<div class="dropdown-menu nxt_drop p-0 w-100">
<a class="dropdown-item border-bottom " href="#">Grid 2 Column</a>
<a class="dropdown-item border-bottom" href="#">Grid 3 Column</a>
<a class="dropdown-item border-bottom" href="#">Grid Left Sidebar</a>
<a class="dropdown-item " href="#">Grid Right Sidebar</a>
</div>
</div>
<div class="dropdown nxt w-100">
<div data-toggle="dropdown"
class="dropdown-item border-bottom d-flex justify-content-between align-items-center">
<a class="pr-5" href="#">Blog Masonary</a>
<i class="fa fa-angle-down down_animate text-right"></i>
</div>
<div class="dropdown-menu nxt_drop p-0 w-100">
<a class="dropdown-item border-bottom " href="#">Masonary 2 Column</a>
<a class="dropdown-item border-bottom" href="#">Masonary 3 Column</a>
<a class="dropdown-item border-bottom" href="#">Masonary Left Sidebar</a>
<a class="dropdown-item " href="#">Masonary Right Sidebar</a>
</div>
</div>
<div class="dropdown nxt w-100">
<div data-toggle="dropdown"
class="dropdown-item border-bottom d-flex justify-content-between align-items-center">
<a class="pr-5" href="#">Clasic</a>
<i class="fa fa-angle-down down_animate "></i>
</div>
<div class="dropdown-menu nxt_drop p-0 w-100">
<a class="dropdown-item border-bottom " href="#">Full Width</a>
<a class="dropdown-item " href="#">Full Width Sidebar</a>
</div>
</div>
<a class="dropdown-item" href="#">Blog Detail</a>
</div>
</li>
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown">
SERVICES
<i class="fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu p-0">
<a class="dropdown-item border-bottom" href="#">Full Width</a>
<a class="dropdown-item border-bottom" href="#">Service 2 Column</a>
<a class="dropdown-item border-bottom" href="#">Service 3 Column</a>
<a class="dropdown-item" href="#">Service 4 Column</a>
</div>
</li>
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown">
FEATURES
<i class="fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu p-0">
<div class="dropdown w-100">
<div data-toggle="dropdown"
class="dropdown-item border-bottom d-flex justify-content-between align-items-center">
<a class="pr-5" href="#">ShortCodes</a>
<i class="fa fa-angle-down down_animate"></i>
</div>
<div class="dropdown-menu nxt_drop p-0 w-100">
<a class="dropdown-item border-bottom " href="#">Portfolio Shortcode</a>
<a class="dropdown-item border-bottom" href="#">Price Shortcode</a>
<a class="dropdown-item border-bottom" href="#">Counter Shortcode</a>
<a class="dropdown-item " href="#">Client Shortcode</a>
</div>
</div>
<a class="dropdown-item border-bottom" href="#">Features 2 Column</a>
<a class="dropdown-item border-bottom" href="#">Features 3 Column</a>
<a class="dropdown-item" href="#">Features 4 Column</a>
</div>
</li>
<li class="nav-item dropdown mr-xl-2">
<a class="nav-link" href="#" data-toggle="dropdown">
PAGES
<i class="fa fa-angle-down down_animate align-middle"></i>
</a>
<div class="dropdown-menu dropdown-menu-right p-0">
<div class="d-md-flex">
<div class="border-right">
<p class="dropdown-item-text text-center p-3 font-weight-bolder">
Project Style 1
</p>
<a class="dropdown-item pr-5" href="#">2 Column Grid</a>
<a class="dropdown-item pr-5" href="#">3 Column Grid</a>
<a class="dropdown-item pr-5" href="#">2 Column Masonary</a>
<a class="dropdown-item pr-5" href="#">3 Column Masonary</a>
</div>
<div class="border-right">
<p class="dropdown-item-text text-center p-3 font-weight-bolder">
Project Style 2
</p>
<a class="dropdown-item pr-5" href="#">2 col Grid</a>
<a class="dropdown-item pr-5" href="#">3 col Grid</a>
<a class="dropdown-item pr-5" href="#">2 col Masonary</a>
<a class="dropdown-item pr-5" href="#">3 col Masonary</a>
</div>
<div class="border-right">
<p class="dropdown-item-text text-center p-3 font-weight-bolder">Other Page</p>
<a class="dropdown-item pr-5" href="#">Pricing Details</a>
<a class="dropdown-item pr-5" href="#">Team Style 1</a>
<a class="dropdown-item pr-5" href="#">Team Style 2</a>
<a class="dropdown-item pr-5" href="#">Team Details</a>
</div>
<div>
<p class="dropdown-item-text text-center p-3 font-weight-bolder">Other Page</p>
<a class="dropdown-item pr-5" href="#">Pricing</a>
<a class="dropdown-item pr-5" href="#">FAQ</a>
<a class="dropdown-item pr-5" href="#">404</a>
<a class="dropdown-item pr-5" href="#">Typography</a>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">CONTACT</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</section>
<!--Slider---------------------------------------------------------------------------------->
<section>
<div class="container-fluid">
<div class="row">
<div id="carouselExampleCaptions" class="carousel slide position-relative" data-ride="carousel">
<ol class="carousel-indicators custom-list-style position-absolute m-0">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="3"></li>
</ol>
<div class="carousel-inner position-relative">
<div class="carousel-item active">
<div class="overlay position-absolute"></div>
<img src="images/ecommerce-cover-2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2 class="wow fadeInLeftBig">What You Do Today For People</h2>
<p class="wow fadeInRightBig">Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
<a class="slide-btn wow fadeInUpBig" href="#">Start Now</a>
<a class="slide-btn wow fadeInUpBig" href="#">Contact Us</a>
</div>
</div>
<div class="carousel-item">
<div class="overlay position-absolute"></div>
<img src="images/slider1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2 class="wow fadeInLeftBig">What You Do Today For People</h2>
<p class="wow fadeInRightBig">Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
<a class="slide-btn wow fadeInUpBig" href="#">Start Now</a>
<a class="slide-btn wow fadeInUpBig" href="#">Contact Us</a>
</div>
</div>
<div class="carousel-item">
<div class="overlay position-absolute"></div>
<img src="images/slider2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2 class="wow fadeInLeftBig">What You Do Today For People</h2>
<p class="wow fadeInRightBig">Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
<a class="slide-btn wow fadeInUpBig" href="#">Start Now</a>
<a class="slide-btn wow fadeInUpBig" href="#">Contact Us</a>
</div>
</div>
<div class="carousel-item">
<div class="overlay position-absolute"></div>
<img src="images/slider3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block text-center">
<h2 class="wow fadeInLeftBig">What You Do Today For People</h2>
<p class="wow fadeInRightBig">Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
<a class="slide-btn wow fadeInUpBig" href="#">Start Now</a>
<a class="slide-btn wow fadeInUpBig" href="#">Contact Us</a>
</div>
</div>
</div>
<!-- <a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>-->
</div>
</div>
</div>
</section>
<!--Section About----------------------------------------------------------------->
<section id="section-about ">
<div class="container">
<div class="row position-relative">
<div class="col col-md-12">
<h3 class="title-about"><span>about us</span> </h3>
<h5 id="title-dublicate">about us</h5>
</div>
<div class="white-box position-absolute">
<div class="img-hover d-flex p-2">
<i class="fas fa-bullhorn box-custom-icon p-2"></i>
<div class="border-left p-2 m-1">
<h4 class="data">Markating</h4>
<p class="text-secondary m-0">
Sed rebum zzril sit diam et kasd rebum eos clita
Sed rebum zzril sit
</p>
</div>
</div>
<div class="img-hover d-flex p-2">
<i class="fas fa-snowflake box-custom-icon p-2"></i>
<div class="border-left p-2 m-1">
<h4 class="data">Great Usability</h4>
<p class="text-secondary m-0">
Sed rebum zzril sit diam et kasd rebum eos clita
Sed rebum zzril sit
</p>
</div>
</div>
<div class="img-hover d-flex p-2">
<i class="far fa-edit box-custom-icon p-2"></i>
<div class="border-left p-2 m-1">
<h4 class="data m-0">Unique Design</h4>
<p class="text-secondary m-0">
Sed rebum zzril sit diam et kasd rebum eos clita
Sed rebum zzril sit
</p>
</div>
</div>
<div class="img-hover d-flex p-2">
<i class="far fa-thumbs-up box-custom-icon p-2"></i>
<div class="border-left p-2 m-1">
<h4 class="data">Quick & Powerful </h4>
<p class="text-secondary m-0 ">
Sed rebum zzril sit diam et kasd rebum eos clita
Sed rebum zzril sit
</p>
</div>
</div>
</div>
<div class="col-5 col-md-5 col-sm-5 offset-3 w-100">
<img src="images/abt-3.jpg">
</div>
<div class="col-4 col-md-4 col-sm-4 pl-5">
<p class="text-secondary">
Eirmod assum et justo facer sit at stet erat tempor
vulputate accumsan velit duo sit et sed at dolore
et minim eirmod velit consectetuer dolor diam et takimata
ea lorem et dolore lorem illum invidunt labore sadipscing imperdiet at amet
</p>
<p class="text-secondary">
Eirmod assum et justo facer sit at stet erat tempor
vulputate accumsan velit duo sit et sed at dolore
et minim eirmod velit consectetuer dolor diam et takimata
ea lorem et dolore lorem illum invidunt labore sadipscing imperdiet at amet
</p>
<a href="#" class="btn bg-primary rounded-pill btn-custom">Learn More</a>
</div>
</div>
</div>
</section>
<!--Section Counter---------------------------------------------------------------->
<section class="bg-light mt-5">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-6 d-flex flex-wrap m-5">
<div class="col-lg-3 col-sm-6 d-flex">
<div class="custom-icon p-1 pr-2 pl-2">
<i class="fas fa-tv text-primary bg-white"></i>
</div>
<div>
<div class="counter p-2" data-target="8000">0</div>
<div class="p-2 text-dark">Total Projects</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 d-flex">
<div class="custom-icon p-1 pr-2 pl-2">
<i class="fas fa-trophy text-primary bg-white"></i>
</div>
<div>
<div class="counter p-2" data-target="810">0</div>
<div class="p-2 text-dark">Won Awards</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 d-flex">
<div class="custom-icon p-1 pr-2 pl-2">
<i class="far fa-smile text-primary bg-white"></i>
</div>
<div>
<div class="counter p-2" data-target="2000">0</div>
<div class="p-2 text-dark">Happy Clients</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 d-flex">
<div class="custom-icon p-1 pr-2 pl-2">
<i class="far fa-calendar-alt text-primary"></i>
</div>
<div>
<div class="counter p-2" data-target="20">0</div>
<div class="p-2 text-dark">Years Experience</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Section Our Services------------------------------------------------------->
<section class="our-service">
<div class="overlay">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="title-about text-white"><span>our services</span> </h3>
<p id="title-dublicate" class="text-white">Accusam ipsum lorem aliquyam dolores at volutpat et ipsum consequat sed nostrud dolore no vero ea invidunt clita sadipscing liber nibh odio lorem stet lorem ea et in dolor ut tation nostrud euismod stet invidunt accusam eos in amet enimt</p>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 d-flex flex-wrap justify-content-between mt-5">
<div class="col-lg-4 col-md-6 col-sm-6 ">
<div class="div-hover card bg-transparent position-relative border">
<i class="fas fa-cloud-upload-alt text-white card-icon">
<h5 class="p-4">Online Marketing</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Online Marketing</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border">
<i class="far fa-edit text-white card-icon">
<h5 class="p-4">Web Design</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Web Design</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border">
<i class="fas fa-pen text-white card-icon">
<h5 class="p-4">Graphic Design</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Graphic Design</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<i class="fas fa-tv text-white card-icon">
<h5 class="p-4">Web Development</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Web Development</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<i class="fas fa-network-wired text-white card-icon">
<h5 class="p-4">Networking</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Networking</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<i class="fab fa-wordpress-simple text-white card-icon">
<h5 class="p-4">WordPress Theme</h5>
</i>
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">WordPress Theme</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Section our Work--------------------------------------------------------------->
<section class="portfolio" id="portfolio">
<div class="container">
<div class="row">
<div class="gallery col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h1 class="gallery-title">Gallery</h1>
</div>
<div class="col-lg-12 col-md-12 text-center">
<button class="filter-button" data-filter="all">All</button>
<button class="filter-button" data-filter="category1">Designing</button>
<button class="filter-button" data-filter="category2">Development</button>
<button class="filter-button" data-filter="category2">Graphics</button>
</div>
<br />
<div class="col-lg-12 col-md-12 d-flex flex-wrap justify-content-between">
<div class="gallery_product col-lg-4 col-md-6 filter category2">
<img class="img-responsive" alt="" src="images/port2-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 1</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="gallery_product col-lg-4 col-md-6 filter category2">
<img class="img-responsive" alt="" src="images/computer-472016_1920-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 2</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="gallery_product col-lg-4 col-md-6 filter category1">
<img class="img-responsive" alt="" src="images/office-1209640_1920-1-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 3</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="gallery_product col-lg-4 col-md-6 filter category1 mt-4">
<img class="img-responsive" alt="" src="images/port7-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 4</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="gallery_product col-lg-4 col-md-6 filter category2 mt-4">
<img class="img-responsive" alt="" src="images/suit-869380_1920-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 5</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="gallery_product col-lg-4 col-md-6 filter category2 mt-4">
<img class="img-responsive" alt="" src="images/port2-5-360x380.jpg" />
<div class='img-info'>
<h4>Image Title 6</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Section Photoe------------------------------------------------------>
<div class="container-fluid mt-5">
<div class="row">
<img src="images/ecommerce-cover-2.jpg" class="w-100" />
</div>
</div>
<!--Section Our Creative Team-------------------------------------------------->
<section class="bg-light mt-5">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="title-creative"><span>our Creative Team</span> </h3>
<p id="title-dublicate" class="text-secondary">Accusam ipsum lorem aliquyam dolores at volutpat et ipsum consequat sed nostrud dolore no vero ea invidunt clita sadipscing liber nibh odio lorem stet lorem ea et in dolor ut tation nostrud euismod stet invidunt accusam eos in amet enimt</p>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 d-flex flex-wrap justify-content-between mt-5">
<div class="creative-image col-lg-4 col-md-6 col-sm-6 ">
<div class="div-hover card bg-transparent position-relative border">
<img src="images/team1.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Jen Whyan</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="creative-image col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border">
<img src="images/team2.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Mical Peterson</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="creative-image col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border">
<img src="images/team3.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Sara Corner</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="creative-image col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<img src="images/team4.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Milly Jackson</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="creative-image col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<img src="images/team5.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">Clark Jacson</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="creative-image col-lg-4 col-md-6 col-sm-6">
<div class="div-hover card bg-transparent position-relative border mt-4">
<img src="images/team6.png" class="w-50 border-none" />
<div class="card-body position-absolute bg-white text-center">
<h5 class="card-title">John Jojo</h5>
<h6 class="text-primary p-2">Founder</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-style d-inline-block d-flex justify-content-around bg-primary rounded p-1">
<li> <a onclick="popup = window.open('http://www.facebook.com/sharer.php?u=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&t=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#facebook"><i class="fab fa-facebook-f text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('http://twitter.com/home?status=jen whyan https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-twitter text-decoration-none text-white"></i></a></li>
<li> <a onclick="popup = window.open('http://linkedin.com/shareArticle?mini=true&url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-linkedin-in text-decoration-none text-white"></i></a></li>
<li><a href="#" class="link-hover"><i class="fab fa-instagram text-decoration-none text-white"></i></a></li>
<li><a onclick="popup = window.open('https://plus.google.com/share?url=https://digitaltemplatemarket.com/wp/tradex-premium/munix_team/jen-whyan/&title=jen whyan', 'PopupPage', 'height=450,width=500,scrollbars=yes,resizable=yes'); return false" href="#" class="link-hover"><i class="fab fa-google-plus-g text-decoration-none text-white"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Our Pricing------------------------------------------------------------------->
<section class="our-pricing mt-5">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="title-creative"><span>Our Pricing</span> </h3>
<p id="title-dublicate">Accusam ipsum lorem aliquyam dolores at volutpat et ipsum consequat sed nostrud dolore no vero ea invidunt clita sadipscing liber nibh odio lorem stet lorem ea et in dolor ut tation nostrud euismod stet invidunt accusam eos in amet enimt</p>
</div>
<div class="col-lg-12 col-md-12 text-center">
<button class="filter-button bg-primary border-none text-white" style="outline:0; border-radius:20px;" data-filter="category1">Per/Month</button>
<button class="filter-button bg-primary border-none text-white" style="outline:0; border-radius:20px;" data-filter="category2">Per/Year</button>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 mt-5 position-relative">
<div class="gallery_product col-lg-12 col-md-12 col-sm-12 d-flex filter category1">
<div class="card edit-card mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Personal</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $399</h6>
<h6 class="card-subtitle my-4 text-dark"><b>03 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>03 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>120 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
<div class="card edit-card boxing-shadow mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Bussines</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $899</h6>
<h6 class="card-subtitle my-4 text-dark"><b>05 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>05 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>1000 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
<div class="card edit-card mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Ultimate</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $499</h6>
<h6 class="card-subtitle my-4 text-dark"><b>20 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>20 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>1500 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
</div>
<div class="gallery_product col-lg-12 col-md-12 col-sm-12 custom-price d-flex filter category2 position-absolute">
<div class="card edit-card mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Bussiness</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $499</h6>
<h6 class="card-subtitle my-4 text-dark"><b>03 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>03 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>03 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
<div class="card edit-card mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Ultimate</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $799</h6>
<h6 class="card-subtitle my-4 text-dark"><b>05 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>20 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>1000 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
<div class="card edit-card boxing-shadow mx-4" style="width: 30rem;">
<div class="card-body text-center">
<h5 class="card-title pb-2 mx-3">Personal</h5><hr class="bg-primary mx-5" />
<h6 class="text-primary pb-4 border-bottom mx-3">From $1499</h6>
<h6 class="card-subtitle my-4 text-dark"><b>20 PSD Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>30 Wordpress Pack</b></h6>
<p class="card-text border-bottom mb-3">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h6 class="card-subtitle my-4 text-dark"><b>1500 Support Ticket</b></h6>
<p class="card-text border-bottom mb-4">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link text-decoration-none bg-primary rounded-pill py-2 px-4 text-white mt-5">Get Started Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Subscribe--------------------------------------------------------------------->
<section class="bg-dark">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-6 col-sm-3">
<div class="col-lg-12 col-md-6 col-sm-3 d-flex justify-content-between">
<div class="col-lg-6 col-md-12 col-sm-12">
<i class="far fa-envelope custom-subscribe text-white"></i>
<h2 class="text-white d-inline-block custom-font">Subscribe now for news</h2>
</div>
<div class="custom-form col-lg-6 col-md-12 col-sm-12">
<form class="form d-flex">
<input type="text" class="form-control col-lg-9 col-md-12 col-sm-12" placeholder="Enter Your Mail" />
<!--<button type="submit" class="btn btn-primary btn-large col-lg-3 ml-3">Subscribe Now</button>-->
<a href="#" class="rounded-pill bg-primary col-lg-3 col-md-12 col-sm-12 ml-3 text-white p-2 text-decoration-none">Subscribe Now</a>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Testimonial--------------------------------------------------------------------->
<section class="Testimonial mt-5 w-100">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="title-creative"><span>Testimonial</span> </h3>
</div>
<div class="owl-carousel owl-theme owl-loaded owl-drag col-lg-12 col-md-12 col-sm-12">
<div class="card mb-3 justify-content-center">
<div class="row no-gutters">
<div class="col-md-4 col-sm-4">
<img src="images/testi-avtar-1.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8 col-sm-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3 justify-content-center">
<div class="row no-gutters">
<div class="col-md-4 col-sm-4">
<img src="images/testi-avtar-2.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8 col-sm-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card justify-content-center">
<div class="row no-gutters">
<div class="col-md-4 col-sm-4">
<img src="images/testi-avtar-3.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8 col-sm-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3 justify-content-center">
<div class="row no-gutters">
<div class="col-md-4 col-sm-4">
<img src="images/testi-avtar-4.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8 col-sm-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>