-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1031 lines (965 loc) · 36.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/logo/favicon.png">
<!-- ?Plugin Active Css -->
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/myanim.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/loaders.min.css">
<!-- ?Plugin Active Css -->
<!-- ?Font-Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css" integrity="sha384-REHJTs1r2ErKBuJB0fCK99gCYsVjwxHrSU0N7I1zl9vZbggVJXRMsv/sLlOAGb4M" crossorigin="anonymous">
<!-- ?Font-Awesome -->
<!-- ?w3 Css -->
<link rel="stylesheet" href="css/w3.css">
<!-- ?w3 Css -->
<!-- ?Bootstrap Css -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- ?Bootstrap Css -->
<!-- ?Default Css -->
<link rel="stylesheet" href="css/default.css">
<!-- ?Default Css -->
<!-- ?Custom Css -->
<link rel="stylesheet" href="css/style.css">
<!-- ?Custom Css -->
<title>TORUN | F.H. SAGOR</title>
</head>
<body id="goTop">
<!-- ?Go Top -->
<a href="#goTop" class="btn btn-primary text-light rounded position-fixed bounceUpDown" style="height: 40px; width: 40px; bottom: 10px; right: 10px; line-height: 30px; z-index: 999;"><i class="fas fa-angle-up "></i></a>
<!-- ?Go Top -->
<!-- ?Start From Here -->
<!-- Header Part -->
<header class="header-sec overflow-hidden">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand wow slideInLeft" href="index.html">
<img src="img/logo/logox.png" alt="">
</a>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#collapsibleNavId" aria-controls="collapsibleNavId"
aria-expanded="false" aria-label="Toggle navigation">
<span class="text-primary"><i class="fas fa-bars "></i></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav mx-auto mt-2 mt-lg-0 wow slideInDown">
<li class="nav-item">
<a href="index.html" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="#abt" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#srv" class="nav-link">Service</a>
</li>
<li class="nav-item">
<a href="#per" class="nav-link">Perfomance</a>
</li>
<li class="nav-item">
<a href="#blg" class="nav-link">Blog</a>
</li>
<li class="nav-item">
<a href="#cnt" class="nav-link">Contact</a>
</li>
</ul>
<ul class="nav mt-2 mt-lg-0 wow slideInRight">
<li><a href="#"><i class="fab fa-facebook-f "></i></a></li>
<li><a href="#"><i class="fab fa-twitter "></i></a></li>
<li><a href="#"><i class="fab fa-instagram "></i></a></li>
<li><a href="#"><i class="fab fa-youtube "></i></a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Banner Part -->
<section class="banner-sec">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 col-12">
<div class="hero">
<h3 class="wow slideInUp">IT SOLUTION <span class="btn btn-primary">AGENCY</span></h3>
<h1 class="wow slideInLeft">MOST EXPERIENCE IT SOLUTION AGENCY FOR YOUR BUSINESS</h1>
<p class="">
<button class="btn btn-primary wow slideInUp mr-10">LEARN MORE <span class="text-light">
<i class="fas fa-long-arrow-alt-right ml-1"></i>
</span>
</button>
<button class="btn btn-light work-btn wow slideInUp btnp-hide"> HOW IT WORKS
<span class="">
<i class="fas fa-long-arrow-alt-right ml-1"></i>
</span>
</button>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Business Section -->
<section class="business-sec py-80 overflow-hidden" id="abt">
<div class="container">
<div class="row">
<div class="col-lg-6 col-12">
<div class="bis-pic wow slideInLeft mb-30">
<img src="img/business.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-6 col-12">
<div class="bis-con ">
<div class="about mb-20 wow slideInDown">
<span class="bg-primary bl-line line1"></span>
<span class="bg-primary bl-line line2"></span>
<span class="text-primary f-700 text-uppercase w3-xlarge">About us</span>
</div>
<div class="solu-con wow slideInUp">
<h2>Why Most People Choose Our Business Solutions</h2>
<p>Sedut perspiciatis unde omnis iste natus error sitlupttem accusantium doloremque laudantium totam remap eriaeaque ipsa quae ab illo inventore veritatis </p>
</div>
<div class="other-con wow slideInUp">
<h3>
<span class="mr-1"><i class="fas fa-long-arrow-alt-right "></i></span>
Product Design Strategy
</h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete acount of the system anpound the actual teacings of the great explorer of the truth-builder</p>
<h3>
<span class="mr-1"><i class="fas fa-plus "></i></span>
Software Development Solutions
</h3>
<h3>
<span class="mr-1"><i class="fas fa-plus "></i></span>
UX/UI Design Strategy
</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Performance Section -->
<section class="performance-sec py-80" id="per">
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6 col-12">
<div class="performance text-center">
<div class="icon mb-20 text-center">
<i class="far fa-compass text-primary w3-xxxlarge w3-spin"></i>
</div>
<h2 class="w3-jumbo d-inline-block position-relative">569
<span class="text-primary w3-xlarge position-absolute">
<i class="fas fa-plus "></i>
</span>
</h2>
<p>IT Consultant</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="performance text-center">
<div class="icon mb-20 text-center">
<i class="fab fa-firefox text-primary w3-xxxlarge w3-spin"></i>
</div>
<h2 class="w3-jumbo d-inline-block position-relative">220
<span class="text-primary w3-xlarge position-absolute">
<i class="fas fa-plus "></i>
</span>
</h2>
<p>Business Partners</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="performance text-center">
<div class="icon mb-20 text-center">
<i class="fab fa-rebel text-primary w3-xxxlarge w3-spin"></i>
</div>
<h2 class="w3-jumbo d-inline-block position-relative">673
<span class="text-primary w3-xlarge position-absolute">
<i class="fas fa-plus "></i>
</span>
</h2>
<p>Happy Client</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="performance text-center">
<div class="icon mb-20 text-center">
<i class="fab fa-ello text-primary w3-xxxlarge w3-spin"></i>
</div>
<h2 class="w3-jumbo d-inline-block position-relative">721
<span class="text-primary w3-xlarge position-absolute">
<i class="fas fa-plus "></i>
</span>
</h2>
<p>Expert Doctors</p>
</div>
</div>
</div>
</div>
</section>
<!-- Service Section -->
<section class="service-sec py-80 overflow-hidden" id="srv">
<div class="container">
<div class="sec-head text-center mb-50 wow slideInDown">
<h3 class="text-primary f-700 w3-xlarge">WHAT WE DO</h3>
<h2 class="text-capitalize">We provide exclusive services for your business</h2>
</div>
<div class="row">
<div class="col-lg-3 col-sm-6 col-12">
<div class="single-service mb-30 w3-card wow slideInLeft p-3 rounded">
<div class="service-photo mb-30">
<img src="img/service-1.jpg" alt="" class="img-fluid rounded">
</div>
<div class="service-con">
<div class="ser-text">
<h3>Marketing Strategy</h3>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking.</p>
<a href="#" class="text-uppercase f-700">Read More <span><i class="fas fa-long-arrow-alt-right "></i></span></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="single-service mb-30 w3-card wow slideInUp p-3 rounded">
<div class="service-photo mb-30">
<img src="img/service-2.jpg" alt="" class="img-fluid rounded">
</div>
<div class="service-con">
<div class="ser-text">
<h3>Analysis For Tools</h3>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking.</p>
<a href="#" class="text-uppercase f-700">Read More <span><i
class="fas fa-long-arrow-alt-right "></i></span></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="single-service mb-30 w3-card wow slideInUp p-3 rounded">
<div class="service-photo mb-30">
<img src="img/service-1.jpg" alt="" class="img-fluid rounded">
</div>
<div class="service-con">
<div class="ser-text">
<h3>UX/UI Strategy</h3>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking.</p>
<a href="#" class="text-uppercase f-700">Read More <span><i
class="fas fa-long-arrow-alt-right "></i></span></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-12">
<div class="single-service mb-30 w3-card wow slideInRight p-3 rounded">
<div class="service-photo mb-30">
<img src="img/service-4.jpg" alt="" class="img-fluid rounded">
</div>
<div class="service-con">
<div class="ser-text">
<h3>Server Security</h3>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking.</p>
<a href="#" class="text-uppercase f-700">Read More <span><i
class="fas fa-long-arrow-alt-right "></i></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Case Study Sec -->
<section class="case-sec py-80 overflow-hidden">
<div class="container">
<div class="row align-items-center mb-30">
<div class="col-lg-4 col-12">
<div class="sec-head wow zoomIn text-center text-lg-left mb-20">
<h3 class="text-primary f-700 w3-xlarge">our project</h3>
<h2 class="text-capitalize">Our Latest Case Studies</h2>
</div>
</div>
<div class="col-lg-8 col-12">
<nav class="nav case-nav justify-content-end wow slideInRight">
<li class="nav-item">
<a href="#" class="nav-link active">All Project</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Design</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Development</a>
</li>
<li class="nav-item btnp-hide">
<a href="#" class="nav-link">Product</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Software</a>
</li>
</nav>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow slideInLeft position-relative rounded w3-card mb-30">
<img src="img/latest-case-study-3-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>DESIGN</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow slideInDown position-relative rounded w3-card mb-30">
<img src="img/software-1-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>DEVELOPMENT</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i
class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow slideInLeft position-relative rounded w3-card mb-30">
<img src="img/latest-case-study-1-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>PRODUCT</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i
class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow rotateInUpRight position-relative rounded w3-card mb-30">
<img src="img/carousel-1-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>SUPPORT</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i
class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow zoomIn position-relative rounded w3-card mb-30">
<img src="img/carousel-2-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>CO-OPERATION</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i
class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="case-pic wow rotateInUpLeft position-relative rounded w3-card mb-30">
<img src="img/carousel-3-740x780.jpg" class="img-fluid rounded" alt="">
<div class="case-con bg-light position-absolute w3-round-large">
<h3>INNOVATION</h3>
<h2>Creative Idea Buildup</h2>
<button class="btn btn-primary py-10 f-700">LEARN MORE <span class="text-light ml-1"><i
class="fas fa-long-arrow-alt-right "></i></span> </button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Work Section -->
<section class="work-sec overflow-hidden py-80">
<div class="container">
<div class="sec-head text-center mb-50 wow slideInDown">
<h3 class="text-light f-700 w3-xlarge">WORKING PROCESS</h3>
<h2 class="text-capitalize text-light">Who Does We Works</h2>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-work text-center wow slideInLeft">
<div class="work-icon w3-round-large">
<i class="fas fa-cogs"></i>
</div>
<h2>Select Project</h2>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam</p>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-work text-center wow zoomIn">
<div class="work-icon w3-round-large">
<i class="far fa-lightbulb "></i>
</div>
<h2>Project Analysis</h2>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam
</p>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-work text-center wow slideInRight">
<div class="work-icon w3-round-large">
<i class="fas fa-medal"></i>
</div>
<h2>Finished Project</h2>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testmonial Section -->
<section class="test-sec overflow-hidden py-80">
<div class="container">
<div class="sec-head wow slideInLeft text-center text-lg-left mb-20">
<h3 class="text-primary f-700 w3-xlarge">our client</h3>
<h2 class="text-capitalize">More Than 800+ Customer Satisfied Our Solutions</h2>
</div>
<div class="slider-active owl-carousel pt-50">
<div class="slider-item">
<div class="single-slide w3-round-large w3-white p-3">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client2.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>Maria Alaina</h3>
<h4>GRAPHICS DESIGNER</h4>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="single-slide w3-white p-3 w3-round-large">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client1.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>F.H. SAGOR</h3>
<h4>WEB DEVELOPER</h4>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="single-slide w3-round-large w3-white p-3">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client3.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>Melissa Benois</h3>
<h4>FLIM ACTRESS</h4>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="single-slide w3-round-large w3-white p-3">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client2.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>Aeiana Grande</h3>
<h4>POP SINGER</h4>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="single-slide w3-round-large w3-white p-3">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client1.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>Joseph Lorez</h3>
<h4>SR DEVELOPER</h4>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="single-slide w3-round-large w3-white p-3">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusante doloremque laudantium, totam rem
aperiam eaque ipsa illventore verit atis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<div class="my-30 stars">
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
<i class="fas fa-star "></i>
</div>
<div class="d-flex">
<div class="test-pic mr-3">
<img src="img/client3.png" alt="" class="rounded-circle">
</div>
<div class="test-con">
<h3>Katherine Lopa</h3>
<h4>FEAST ARTIST</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Solution Section -->
<section class="solution-sec py-80 overflow-hidden">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-12">
<div class="solu-photo wow slideInLeft mb-20 text-center text-lg-left">
<img src="img/solu.jpg" class="img-fluid rounded" alt="">
</div>
</div>
<div class="col-lg-7 col-12">
<div class="sec-head wow slideInRight text-center text-lg-left mb-20 pl-lg-5 pl-0">
<h3 class="text-primary f-700 w3-xlarge">our skill</h3>
<h2 class="text-capitalize">More Than 25+ Years We Provide Solutions</h2>
</div>
<div class="progress-board rounded">
<div class="single-progress mb-30">
<div class="d-flex justify-content-between">
<p class="f-700"> Design Strategy</p>
<span class="text-light f-700">80%</span>
</div>
<div class="progress-bar" style="background-color: #173044;">
<div class="progress w3-deep-orange wow slideInLeft" style="width: 80%; height: 10px;"></div>
</div>
</div>
<div class="single-progress mb-30">
<div class="d-flex justify-content-between">
<p class="f-700"> Marketing Strategy</p>
<span class="text-light f-700">90%</span>
</div>
<div class="progress-bar" style="background-color: #173044;">
<div class="progress w3-deep-purple wow slideInLeft" style="width: 90%; height: 10px;"></div>
</div>
</div>
<div class="single-progress mb-30">
<div class="d-flex justify-content-between">
<p class="f-700"> UI/UX Strategy</p>
<span class="text-light f-700">85%</span>
</div>
<div class="progress-bar" style="background-color: #173044;">
<div class="progress w3-pink wow slideInLeft" style="width: 85%; height: 10px;"></div>
</div>
</div>
<div class="single-progress mb-30">
<div class="d-flex justify-content-between">
<p class="f-700"> Business Development</p>
<span class="text-light f-700">95%</span>
</div>
<div class="progress-bar" style="background-color: #173044;">
<div class="progress w3-cyan wow slideInLeft" style="width: 95%; height: 10px;"></div>
</div>
</div>
<div class="single-progress mb-30">
<div class="d-flex justify-content-between">
<p class="f-700"> Software Development</p>
<span class="text-light f-700">70%</span>
</div>
<div class="progress-bar" style="background-color: #173044;">
<div class="progress w3-green wow slideInLeft" style="width:70%; height: 10px;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-sec py-80">
<div class="container">
<div class="sec-head text-lg-left text-center mb-50 wow slideInDown">
<h3 class="text-light f-700 w3-xlarge">CONTACT US</h3>
<h2 class="text-capitalize text-light w3-jumbo">Don't Hesitate To Contact Us</h2>
</div>
<div class="row">
<div class="col-lg-7 col-12">
<form class="pt-20">
<div class="form-row mb-50">
<div class="col w3-display-container">
<input type="text" placeholder="Name" class="w3-input w3-transparent w3-text-white">
<span class="w3-display-right" style="right: 10px;">
<i class="fas fa-user text-light"></i>
</span>
</div>
<div class="col w3-display-container">
<input type="text" placeholder="Email" class="w3-input w3-transparent w3-text-white">
<span class="w3-display-right" style="right: 10px;">
<i class="fas fa-envelope text-light"></i>
</span>
</div>
</div>
<div class="form-row mb-50 w3-display-container">
<input type="text" placeholder="Phone" class="w3-input w3-transparent w3-text-white">
<span class="w3-display-right" style="right: 10px;">
<i class="fas fa-mobile-alt text-light"></i>
</span>
</div>
<div class="form-row w3-display-container mb-30">
<textarea type="text" row="5" placeholder="Message" class="w3-input w3-transparent w3-text-white"></textarea>
<span class="w3-display-right" style="right: 10px;">
<i class="fas fa-pen text-light"></i>
</span>
</div>
<p>
<button class="btn w3-white f-700 py-20 px-40 w3-text-gray w3-hover-deep-orange w3-hover-text-white wow zoomIn">SEND MESSAGE</button>
</p>
</form>
</div>
<div class="col-lg-5 col-12">
<div class="con-map text-lg-right text-center">
<img src="img/map.png" class="img-fluid bounceUpDown" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Blog Section -->
<section class="blog-sec py-80 overflow-hidden" id="blg">
<div class="container">
<div class="sec-head wow zoomIn text-center mb-30">
<h3 class="text-primary f-700 w3-xlarge text-center">our blog</h3>
<h2 class="text-capitalize text-center">Read Our Latest News & Blog</h2>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-post wow slideInUp mb-30">
<div class="w3-card rounded pb-10">
<div class="blog-photo">
<a href="#">
<img src="img/blog1.jpg" class="img-fluid rounded" alt="">
</a>
<div class="post-widget w3-card py-10 px-10">
<nav class="nav justify-content-around blog-nav">
<li>
<span class="mr-1"><i class="fa fa-user-circle"></i></span>
<span class="">JOHN</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-calendar-alt "></i>
</span>
<span>SEP 25, 2020</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-comments "></i>
</span>
<span>(23)</span>
</li>
</nav>
</div>
<div class="blog-con p-3">
<h3>Monthly Web Development To Update React Hooks</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut</p>
<a href="#" class="btn btn-outline-primary py-15 f-700 px-30">READ MORE <span class=" w-700 ml-2">
<i class="fas fa-long-arrow-alt-right "></i>
</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-post wow zoomIn mb-30">
<div class="w3-card rounded pb-10">
<div class="blog-photo">
<a href="#">
<img src="img/blog2.jpg" class="img-fluid rounded" alt="">
</a>
<div class="post-widget w3-card py-10 px-10">
<nav class="nav justify-content-around blog-nav">
<li>
<span class="mr-1"><i class="fa fa-user-circle"></i></span>
<span>REZA</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-calendar-alt "></i>
</span>
<span>DEC 12, 2020</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-comments "></i>
</span>
<span>(19)</span>
</li>
</nav>
</div>
<div class="blog-con p-3">
<h3>Exploring Latest Web Design Together With Theme</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
</p>
<a href="#" class="btn btn-outline-primary py-15 f-700 px-30">READ MORE <span
class=" w-700 ml-2">
<i class="fas fa-long-arrow-alt-right "></i>
</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 col-12">
<div class="single-post wow zoomIn mb-30">
<div class="w3-card rounded pb-10">
<div class="blog-photo">
<a href="#">
<img src="img/blog3.jpg" class="img-fluid rounded" alt="">
</a>
<div class="post-widget w3-card py-10 px-10">
<nav class="nav justify-content-around blog-nav">
<li>
<span class="mr-1"><i class="fa fa-user-circle"></i></span>
<span>TUHIN</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-calendar-alt "></i>
</span>
<span>MAY 19, 2020</span>
</li>
<li>
<span class="mr-1">
<i class="fas fa-comments "></i>
</span>
<span>(5)</span>
</li>
</nav>
</div>
<div class="blog-con p-3">
<h3>Detailed Comparison Between WordPress & October CMS</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
</p>
<a href="#" class="btn btn-outline-primary py-15 f-700 px-30">READ MORE <span
class=" w-700 ml-2">
<i class="fas fa-long-arrow-alt-right "></i>
</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Seciton -->
<section class="footer-sec pt-80 pb-20 overflow-hidden" id="cnt">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-lg-6 col-12">
<div class="form-inline wow slideInLeft text-center text-lg-left footer-sub ">
<input type="text" placeholder="Enter Your Email" class="w3-input w3-card w3-text-white pl-3 w3-border-0 mr-2 w3-round-large py-20 in-mb"
style="width:60%; background: #1B2F3E;">
<button class="btn btn-primary f-700 w3-medium w3-round-large sbtn">SUBSCRIBE</button>
</div>
</div>
<div class="col-lg-6 col-12">
<nav class="nav justify-content-end brand-nav wow slideInRight cont-link">
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-facebook-f "></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab
fa-twitter "></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-behance "></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-youtube "></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-github "></i>
</a>
</li>
</nav>
</div>
</div>
<div class="row justify-content-center align-items-center">
<div class="xline w-100 mt-80 mb-80" style="height: 1px;"></div>
<div class="col-lg-5 col-12">
<div class="footer-info wow slideInLeft text-lg-left text-center mb-30">
<div class="footer-pic mb-30">
<img src="img/logo/white.png" alt="">
</div>
<p class="mb-30">Sed ut perspiciatis unde omnis iste natus error sitluptatem accusantium doloremque laudantium totam rem apereaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. </p>
<p>
<button class="btn btn-primary f-600 w3-medium py-15 px-40">LEARN MORE</button>
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6 col-12">
<div class="footer-widget text-center text-md-left wow slideInUp mb-30">
<div class="footer-header mb-30">
<h3 class="text-light m-0">Our Services</h3>
<span class="d-inline-block bg-primary mr-2" style="height: 3px;width:20px ;"></span>
<span class="d-inline-block bg-primary" style="height: 3px;width:40px ;"></span>
</div>
<ul>
<li>
<a href="#">User Strategy</a>
</li>
<li>
<a href="#">Product Designing</a>
</li>
<li>
<a href="#">Marketing Strategy</a>
</li>
<li>
<a href="#">IT Consultancy</a>
</li>
<li>
<a href="#">Server Security</a>
</li>
<li>
<a href="#">Product Marketing</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6 col-12">
<div class="footer-widget text-center text-md-left wow slideInDown mb-30">
<div class="footer-header mb-30">
<h3 class="text-light m-0">Quick Links</h3>
<span class="d-inline-block bg-primary mr-2" style="height: 3px;width:20px ;"></span>
<span class="d-inline-block bg-primary" style="height: 3px;width:40px ;"></span>
</div>
<ul>
<li>
<a href="#">Need a Consultant?</a>
</li>
<li>
<a href="#">Meet Our Team</a>
</li>
<li>
<a href="#">Our Services</a>
</li>
<li>
<a href="#">Have Any Questions?</a>
</li>
<li>
<a href="#">Meet Our Team</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="footer-widget text-center text-md-left wow slideInRight">
<div class="footer-header mb-30">
<h3 class="text-light m-0">Contact Us</h3>
<span class="d-inline-block bg-primary mr-2" style="height: 3px;width:20px ;"></span>
<span class="d-inline-block bg-primary" style="height: 3px;width:40px ;"></span>
</div>
<p>
But I must explain to you how all this mistaken
</p>
<ul class="cont">
<li>
<i class="fas fa-phone mr-1"></i>
+812 (345) 778 88
</li>
<li>
<i class="fas fa-envelope mr-1"></i>
support@gmail.com
</li>
<li>
<i class="fa fa-map-marker-alt mr-1" aria-hidden="true"></i>
227 Marion Street, Columbia
</li>
</ul>
</div>
</div>
</div>
<div class="row justify-content-between footer-end">
<div class="xline w-100 mt-40 mb-40" style="height: 1px;"></div>
<div class="col-lg-6 col-12">
<p class="wow text-center text-lg-left slideInLeft">
<i class="fas fa-copyright mr-1"></i>
Copyright ©2020 BDevs. All Rights Reserved.