-
Notifications
You must be signed in to change notification settings - Fork 0
/
extras.html
2242 lines (2158 loc) · 119 KB
/
extras.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
! from index.html
<!-- service -->
<section class="section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h5 class="section-title-sm">Best Service</h5>
<h2 class="section-title section-title-border">Service We Provide</h2>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6 mb-5 mb-lg-0">
<div class="card text-center">
<h4 class="card-title pt-3">Business Consulting</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-1.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-bar-chart"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6 mb-5 mb-lg-0">
<div class="card text-center">
<h4 class="card-title pt-3">Valuable Idea</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-2.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-thought"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6">
<div class="card text-center">
<h4 class="card-title pt-3">Market Strategy</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-3.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-server"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about section-sm overlay" style="background-image: url(images/background/about-bg.jpg);">
<div class="container">
<div class="row">
<div class="col-lg-6 ml-auto">
<div class="rounded p-sm-5 px-3 py-5 bg-secondary">
<h3 class="section-title section-title-border-half text-white">Who We Are?</h3>
<p class="text-white mb-40">Excepteur sint occaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum.</p>
<div>
<ul class="d-inline-block pl-0 mr-5">
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Business Services</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Audit & Assurance</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>IT Control Solutions</li>
</ul>
<ul class="d-inline-block pl-0">
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Business Services</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Audit & Assurance</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>IT Control Solutions</li>
</ul>
</div>
<a href="service.html" class="btn btn-primary mt-4">Explore More</a>
</div>
</div>
</div>
</div>
</section>
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>BIZTROX</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<!-- magnific popup -->
<link rel="stylesheet" href="plugins/magnific-popup/magnific-popup.css">
<!-- Slick Carousel -->
<link rel="stylesheet" href="plugins/slick/slick.css">
<link rel="stylesheet" href="plugins/slick/slick-theme.css">
<!-- themify icon -->
<link rel="stylesheet" href="plugins/themify-icons/themify-icons.css">
<!-- animate -->
<link rel="stylesheet" href="plugins/animate/animate.css">
<!-- Aos -->
<link rel="stylesheet" href="plugins/aos/aos.css">
<!-- swiper -->
<link rel="stylesheet" href="plugins/swiper/swiper.min.css">
<!-- Stylesheets -->
<link href="css/style.css" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="icon" href="images/favicon.png" type="image/x-icon">
</head>
<body>
<!-- preloader start -->
<div class="preloader">
<img src="images/preloader.gif" alt="preloader">
</div>
<!-- preloader end -->
<!-- navigation -->
<header>
<!-- top header -->
<div class="top-header">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="list-inline text-lg-right text-center">
<li class="list-inline-item">
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li class="list-inline-item">
<a href="callto:1234565523">Call Us Now:
<span class="ml-2"> 123 456 5523</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" id="searchOpen">
<i class="ti-search"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- nav bar -->
<div class="navigation">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Home
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="index.html">Home Page 1</a>
<a class="dropdown-item" href="homepage-2.html">Home Page 2</a>
<a class="dropdown-item" href="homepage-3.html">Home Page 3</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About Us
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="about.html">About page</a>
<a class="dropdown-item" href="about-2.html">About page-2</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Service
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="service.html">Service page</a>
<a class="dropdown-item" href="service-2.html">Service page-2</a>
<a class="dropdown-item" href="service-single.html">Service Single</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Pages
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="team.html">Team Page</a>
<a class="dropdown-item" href="pricing.html">Pricing Page</a>
<a class="dropdown-item" href="project.html">project Page</a>
<a class="dropdown-item" href="faqs.html">FAQs Page</a>
<a class="dropdown-item" href="project-single.html">Project Single</a>
<a class="dropdown-item" href="team-single.html">Team Single</a>
<a class="dropdown-item" href="404.html">404 Page</a>
<a class="dropdown-item" href="signup.html">Sign Up Page</a>
<a class="dropdown-item" href="login.html">Login Page</a>
<a class="dropdown-item" href="comming-soon.html">Comming Soon Page</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Blog
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="blog.html">Blog Page</a>
<a class="dropdown-item" href="blog-sidebar.html">Blog with Sidebar</a>
<a class="dropdown-item" href="blog-single.html">Blog Single</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Elements
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="components/buttons.html">Buttons</a>
<a class="dropdown-item" href="components/icons.html">Icons</a>
<a class="dropdown-item" href="components/typography.html">Typography</a>
<a class="dropdown-item" href="components/accordions.html">Accordions</a>
<a class="dropdown-item" href="components/blog-contents.html">Blog Contents</a>
<a class="dropdown-item" href="components/service-contents.html">Service Contents</a>
<a class="dropdown-item" href="components/team-contents.html">Team Contents</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!-- Search Form -->
<div class="search-form">
<a href="#" class="close" id="searchClose">
<i class="ti-close"></i>
</a>
<div class="container">
<form action="#" class="row">
<div class="col-lg-10 mx-auto">
<h3>Search Here</h3>
<div class="input-wrapper">
<input type="text" class="form-control" name="search" id="search" placeholder="Enter Keywords..." required>
<button>
<i class="ti-search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<!-- /navigation -->
<section>
<div class="hero-slider position-relative">
<div class="hero-slider-item py-160" style="background-image: url(images/banner/banner-1.jpg);" data-icon="ti-comments" data-text="Consultation">
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-content">
<h4 class="text-uppercase mb-1" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".1">We are here to</h4>
<h1 class="font-weight-bold mb-3" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".5">
Planning Business</h1>
<p class="text-dark mb-50" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".9">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
<br> incididunt ut labore et dolore magna aliqua.
</p>
<a data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in="1.3" href="about.html" class="btn btn-outline text-uppercase">more details</a>
</div>
</div>
</div>
</div>
</div>
<div class="hero-slider-item py-160" style="background-image: url(images/banner/banner-2.jpg);" data-icon="ti-bar-chart" data-text="Marketting">
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-content">
<h4 class="text-uppercase mb-1" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".1">
Get your</h4>
<h1 class="font-weight-bold mb-3" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".5">
Business Consultant</h1>
<p class="text-dark mb-50" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".9">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
<br> incididunt ut labore et dolore magna aliqua.
</p>
<a data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in="1.3" href="about-2.html" class="btn btn-outline text-uppercase">more details</a>
</div>
</div>
</div>
</div>
</div>
<div class="hero-slider-item py-160" style="background-image: url(images/banner/banner-3.jpg);" data-icon="ti-money" data-text="Finance">
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-content">
<h4 class="text-uppercase mb-1" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".1">
Start your</h4>
<h1 class="font-weight-bold mb-3" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".5">
Future Plan</h1>
<p class="text-dark mb-50" data-duration-in=".5" data-animation-in="fadeInLeft" data-delay-in=".9">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
<br> incididunt ut labore et dolore magna aliqua.
</p>
<a data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in="1.3" href="about.html" class="btn btn-outline text-uppercase">more details</a>
</div>
</div>
</div>
</div>
</div>
<div class="hero-slider-item py-160" style="background-image: url(images/banner/banner-4.jpg);" data-icon="ti-package" data-text="Human Resources">
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-content">
<h4 class="text-uppercase mb-1" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".1">We are always</h4>
<h1 class="font-weight-bold mb-3" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".5">
Be Inspired By Best</h1>
<p class="text-dark mb-50" data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in=".9">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
<br> incididunt ut labore et dolore magna aliqua.
</p>
<a data-duration-in=".5" data-animation-in="fadeInDown" data-delay-in="1.3" href="about-2.html" class="btn btn-outline text-uppercase">more details</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- service -->
<section class="section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h5 class="section-title-sm">Best Service</h5>
<h2 class="section-title section-title-border">Service We Provide</h2>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6 mb-5 mb-lg-0">
<div class="card text-center">
<h4 class="card-title pt-3">Business Consulting</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-1.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-bar-chart"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6 mb-5 mb-lg-0">
<div class="card text-center">
<h4 class="card-title pt-3">Valuable Idea</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-2.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-thought"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
<!-- service item -->
<div class="col-lg-4 col-sm-6">
<div class="card text-center">
<h4 class="card-title pt-3">Market Strategy</h4>
<div class="card-img-wrapper">
<img class="card-img-top rounded-0" src="images/service/service-3.jpg" alt="service-image">
</div>
<div class="card-body p-0">
<i class="square-icon translateY-33 rounded ti-server"></i>
<p class="card-text mx-2 mb-0">Lorem ipsum dolor amet consecte tur adipisicing elit sed done eius mod tempor enim ad minim veniam quis nostrud.
</p>
<a href="service-single.html" class="btn btn-secondary translateY-25">Read
More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about section-sm overlay" style="background-image: url(images/background/about-bg.jpg);">
<div class="container">
<div class="row">
<div class="col-lg-6 ml-auto">
<div class="rounded p-sm-5 px-3 py-5 bg-secondary">
<h3 class="section-title section-title-border-half text-white">Who We Are?</h3>
<p class="text-white mb-40">Excepteur sint occaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum.</p>
<div>
<ul class="d-inline-block pl-0 mr-5">
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Business Services</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Audit & Assurance</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>IT Control Solutions</li>
</ul>
<ul class="d-inline-block pl-0">
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Business Services</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>Audit & Assurance</li>
<li class="font-secondary mb-10 text-white">
<i class="text-primary mr-2 ti-arrow-circle-right"></i>IT Control Solutions</li>
</ul>
</div>
<a href="service.html" class="btn btn-primary mt-4">Explore More</a>
</div>
</div>
</div>
</div>
</section>
<!-- skill -->
<section class="section">
<div class="container">
<div class="row">
<div class="col-12">
<h5 class="section-title-sm">Best Service</h5>
<h2 class="section-title section-title-border-half">Why Choose Us</h2>
</div>
<div class="col-lg-7">
<div class="mb-40">
<p class="text-dark">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed eiusmod tempor incididunt laboris nisi ut aliquip ex ea commodo consequat. </p>
<p class="text-dark mb-30">Duis aute irure dolor in reprehenderit voluptate velit esse cillum dolore fugiat nulla pariatur.Excepteur sint ocaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum. sed perspiciatis unde omnisiste
natus error sit voluptatem accusantium.doloremque ladantium totam rem aperieaque ipsa quae ab illo inventore.veritatis. et quasi architecto beatae vitae dicta sunt explicabo.</p>
</div>
<!-- fun-fact -->
<div class="mb-md-50">
<div class="row">
<div class="col-4">
<div class="d-flex flex-column flex-sm-row align-items-center">
<i class="round-icon mr-sm-3 ti-server"></i>
<div class="text-center text-sm-left">
<h2 class="count mb-0" data-count="230">0</h2>
<p class="mb-0">Projects Done</p>
</div>
</div>
</div>
<div class="col-4">
<div class="d-flex flex-column flex-sm-row align-items-center">
<i class="round-icon mr-sm-3 ti-face-smile"></i>
<div class="text-center text-sm-left">
<h2 class="count mb-0" data-count="789">0</h2>
<p class="mb-0">Satisfied Clients</p>
</div>
</div>
</div>
<div class="col-4">
<div class="d-flex flex-column flex-sm-row align-items-center">
<i class="round-icon mr-sm-3 ti-thumb-up"></i>
<div class="text-center text-sm-left">
<h2 class="count mb-0" data-count="580">0</h2>
<p class="mb-0">Cup Of Coffee</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- progressbar -->
<div class="col-lg-4 offset-lg-1">
<div class="progressbar">
<h5 class="progressbar-title">Branding</h5>
<div class="progress" data-percent="85%">
<div class="progress-bar progress-bar-striped" style="width: 85%;">
<div class="progress-bar-value">85%</div>
</div>
</div>
</div>
<div class="progressbar">
<h5 class="progressbar-title">Consulting</h5>
<div class="progress" data-percent="90%">
<div class="progress-bar progress-bar-striped" style="width: 90%;">
<div class="progress-bar-value">90%</div>
</div>
</div>
</div>
<div class="progressbar">
<h5 class="progressbar-title">Business</h5>
<div class="progress" data-percent="75%">
<div class="progress-bar progress-bar-striped" style="width: 75%;">
<div class="progress-bar-value">75%</div>
</div>
</div>
</div>
<div class="progressbar">
<h5 class="progressbar-title">Promotion</h5>
<div class="progress" data-percent="90%">
<div class="progress-bar progress-bar-striped" style="width: 90%;">
<div class="progress-bar-value">90%</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /skill -->
<!-- work -->
<section class="section bg-gray">
<div class="container-fluid">
<div class="row">
<div class="col-12 text-center">
<h5 class="section-title-sm">Our Works</h5>
<h2 class="section-title section-title-border-gray">Latest Projects</h2>
</div>
</div>
<!-- work slider -->
<div class="row work-slider">
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-1.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-1.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-2.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-2.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-3.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-3.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-4.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-4.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-1.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-1.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-2.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-2.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-3.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-3.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-4.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-4.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-1.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-1.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-2.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-2.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-3.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-3.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
<div class="col-lg-3 px-0">
<div class="work-slider-image">
<img class="img-fluid w-100" src="images/works/work-4.jpg" alt="work-image">
<div class="image-overlay">
<a class="popup-image" data-effect="mfp-zoom-in" href="images/works/work-4.jpg">
<i class="ti-search"></i>
</a>
<a class="h4" href="project-single.html">Cras Sed Elit Sit Amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /work -->
<!-- mission -->
<section class="mission section">
<div class="container">
<div class="row">
<div class="col-12">
<h5 class="section-title-sm">Our Goal</h5>
<h2 class="section-title section-title-border-half">Company Mission</h2>
<div class="row">
<div class="col-lg-6">
<p class="mb-40">Lorem ipsum dolor sit amet consectetur adipisicing elit sed eiusmod tempor didunt laboris nisi ut aliquip ex ea commodo consequat.
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- accordion -->
<div id="accordion" class="mb-md-50">
<div class="card border-0 mb-4">
<div class="card-header bg-gray border p-0">
<a class="card-link h5 d-block text-dark mb-0 py-10 px-4" data-toggle="collapse" href="#collapseOne">
<i class="ti-minus text-primary mr-2"></i> Our Company Mission
</a>
</div>
<div id="collapseOne" class="collapse show" data-parent="#accordion">
<div class="card-body font-secondary text-color pl-0 pb-0">
Duis aute irure dolor in reprehenderit voluptate velit esse cillum dolore fugiat nulla pariatur.Excepteur sint ocaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
</div>
<div class="card border-0 mb-4">
<div class="card-header bg-gray border p-0">
<a class="collapsed card-link h5 d-block text-dark mb-0 py-10 px-4" data-toggle="collapse" href="#collapseTwo">
<i class="ti-plus text-primary mr-2"></i> Our Company Mission
</a>
</div>
<div id="collapseTwo" class="collapse" data-parent="#accordion">
<div class="card-body font-secondary text-color pl-0 pb-0">
Duis aute irure dolor in reprehenderit voluptate velit esse cillum dolore fugiat nulla pariatur.Excepteur sint ocaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
</div>
<div class="card border-0 mb-4">
<div class="card-header bg-gray border p-0">
<a class="collapsed card-link h5 d-block text-dark mb-0 py-10 px-4" data-toggle="collapse" href="#collapseThree">
<i class="ti-plus text-primary mr-2"></i> Our Company Mission
</a>
</div>
<div id="collapseThree" class="collapse" data-parent="#accordion">
<div class="card-body font-secondary text-color pl-0 pb-0">
Duis aute irure dolor in reprehenderit voluptate velit esse cillum dolore fugiat nulla pariatur.Excepteur sint ocaecat cupidatat non proident sunt culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
</div>
</div>
</div>
<!-- chart -->
<div class="col-lg-6">
<img src="images/chart.png" alt="chart" class="img-fluid w-100">
</div>
</div>
</div>
</section>
<!-- /mission -->
<!-- promo-video -->
<section class="promo-video overlay section" style="background-image: url(images/background/promo-video.jpg);">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="text-white mb-20 font-weight-normal">We Are Alawys <br> Comited</h1>
<div class="d-flex">
<a class="popup-youtube play-icon mr-4" href="https://www.youtube.com/watch?v=6ZfuNTqbHE8">
<i class="ti-control-play"></i>
</a>
<p class="text-white align-self-center h4">Lorem ipsum dolor <br> sit amet con.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- /promo-video -->
<!-- testimonial -->
<section class="section pb-0">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h5 class="section-title-sm">Clients</h5>
<h2 class="section-title section-title-border"> What client Say </h2>
</div>
<div class="col-lg-5 col-md-5 pr-0 align-self-center">
<img class="img-fluid w-100" src="images/client.png" alt="clients-image">
</div>
<div class="col-lg-7 col-md-7 align-self-center pl-0">
<div class="testimonial-slider p-5">
<!-- slider item -->
<div class="outline-0">
<i class="testimonial-icon ti-quote-left"></i>
<p class="text-dark">Lorem ipsum dolor sit amet constur adipisicing elit sed eiusmtempor incid sed dolore magna aliqu enim minim veniam quis nostrud exercittion ullamco labo ris nisi aliquip excepteur.</p>
<h4 class="font-weight-normal">Julia Robertson</h4>
<h6 class="font-secondary text-color">Happy Clients</h6>
</div>
<!-- slider item -->
<div class="outline-0">
<i class="testimonial-icon ti-quote-left"></i>
<p class="text-dark">Lorem ipsum dolor sit amet constur adipisicing elit sed eiusmtempor incid sed dolore magna aliqu enim minim veniam quis nostrud exercittion ullamco labo ris nisi aliquip excepteur.</p>
<h4 class="font-weight-normal">Julia Robertson</h4>
<h6 class="font-secondary text-color">Happy Clients</h6>
</div>
<!-- slider item -->
<div class="outline-0">
<i class="testimonial-icon ti-quote-left"></i>
<p class="text-dark">Lorem ipsum dolor sit amet constur adipisicing elit sed eiusmtempor incid sed dolore magna aliqu enim minim veniam quis nostrud exercittion ullamco labo ris nisi aliquip excepteur.</p>
<h4 class="font-weight-normal">Julia Robertson</h4>
<h6 class="font-secondary text-color">Happy Clients</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /testimonial -->
<section class="cta overlay-primary py-50 text-center text-lg-left" style="background-image: url(images/background/cta.jpg);">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-6">
<h3 class="text-white">Biztrox give the smart solution for your business</h3>
</div>
<div class="col-lg-6 text-lg-right align-self-center">
<a href="contact.html" class="btn btn-light">GET AN QUOTE</a>
</div>
</div>
</div>
</section>
<!-- blog -->
<section class="section bg-gray">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h5 class="section-title-sm">Latest News</h5>
<h2 class="section-title section-title-border-gray">Company News</h2>
</div>
<!-- blog-item -->
<div class="col-lg-4 col-sm-6 mb-4 mb-lg-0">
<div class="card">
<div class="card-img-wrapper overlay-rounded-top">
<img class="card-img-top" src="images/blog/blog-1.jpg" alt="blog-thumbnail">
</div>
<div class="card-body p-0">
<div class="d-flex">
<div class="py-3 px-4 border-right text-center">
<h3 class="text-primary mb-0">25</h3>
<p class="mb-0">Nov</p>
</div>
<div class="p-3">
<a href="blog-single.html" class="h4 font-primary text-dark">Cras
sed elit sit amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
</div>
</div>
<!-- blog-item -->
<div class="col-lg-4 col-sm-6 mb-4 mb-lg-0">
<div class="card">
<div class="card-img-wrapper overlay-rounded-top">
<img class="card-img-top" src="images/blog/blog-2.jpg" alt="blog-thumbnail">
</div>
<div class="card-body p-0">
<div class="d-flex">
<div class="py-3 px-4 border-right text-center">
<h3 class="text-primary mb-0">25</h3>
<p class="mb-0">Nov</p>
</div>
<div class="p-3">
<a href="blog-single.html" class="h4 font-primary text-dark">Cras
sed elit sit amet.</a>
<p>by Admin</p>
</div>
</div>
</div>
</div>
</div>
<!-- blog-list -->
<div class="col-lg-4 col-12">
<ul class="bg-white border rounded pl-0">
<li class="d-flex border-bottom">
<div class="py-3 px-4 border-right text-center">
<h3 class="text-primary mb-0">25</h3>
<p class="mb-2">Nov</p>
</div>
<div class="p-3">
<a href="blog-single.html" class="h4 font-primary text-dark">Cras sed
elit sit amet.</a>
<p>by Admin</p>
</div>
</li>
<li class="d-flex border-bottom">
<div class="py-3 px-4 border-right text-center">
<h3 class="text-primary mb-0">25</h3>
<p class="mb-2">Nov</p>
</div>
<div class="p-3">
<a href="blog-single.html" class="h4 font-primary text-dark">Cras sed
elit sit amet.</a>
<p>by Admin</p>
</div>
</li>
<li class="d-flex">
<div class="py-3 px-4 border-right text-center">
<h3 class="text-primary mb-0">25</h3>
<p class="mb-2">Nov</p>
</div>
<div class="p-3">
<a href="blog-single.html" class="h4 font-primary text-dark">Cras sed
elit sit amet.</a>
<p>by Admin</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- /blog -->
<!-- client logo slider -->
<section class="bg-white py-4">
<div class="container">
<div class="client-logo-slider align-self-center">
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-1.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-2.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-3.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-4.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-5.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-1.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-2.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-3.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-4.png" alt="client-logo"></a>
<a href="#" class="text-center d-block outline-0 py-3 px-2"><img class="d-unset" src="images/client-logo/client-logo-5.png" alt="client-logo"></a>
</div>
</div>
</section>
<!-- /client logo slider -->
<!-- footer -->
<footer class="bg-secondary">
<div class="py-100 border-bottom" style="border-color: #454547 !important">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="mb-5 mb-md-0 text-center text-md-left">
<!-- logo -->
<img class="mb-30" src="images/logo-footer.png" alt="logo">
<p class="text-white mb-30">Lorem ipsum dolor amet consectetur adipisicing elit sed eiusm tempor incididunt labore dolore magna aliqua enim.</p>
<!-- social icon -->
<ul class="list-inline">
<li class="list-inline-item">
<a class="social-icon-outline" href="#">
<i class="ti-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon-outline" href="#">
<i class="ti-twitter-alt"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon-outline" href="#">
<i class="ti-vimeo-alt"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon-outline" href="#">
<i class="ti-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- footer links -->
<div class="col-lg-2 col-md-4 col-6">
<h4 class="text-white mb-4">Services</h4>
<ul class="footer-links">
<li>
<a href="#">Company History</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
<li>
<a href="service.html">Service</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
</ul>
</div>
<!-- footer links -->