-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-3.html
More file actions
1127 lines (1102 loc) · 66.9 KB
/
Copy pathindex-3.html
File metadata and controls
1127 lines (1102 loc) · 66.9 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">
<title>Murad - Creative Agency HTML Template </title>
<link rel="icon" type="image/x-icon" href="assets/img/logo/favicon.jpg">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/fontawesome-pro.min.css">
<link rel="stylesheet" href="assets/css/odometer.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--back-to-top-->
<button id="back-to-top"><i class="far fa-angle-up"></i></button>
<!-- preloader -->
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_four"></div>
<div class="object" id="object_three"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_one"></div>
</div>
</div>
</div>
<!--header-start-->
<header>
<div id="tf-header-sticky" class="tf-header-area tf-header-transparent tf-sticky-white tf-header-small">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-2 col-lg-2 col-md-4 col-sm-4 col-6">
<div class="tf-header-logo">
<a href="index.html"><img src="assets/img/logo/black.png" alt=""></a>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-2 col-sm-2 col-2">
<div class="tf-header-main-menu d-none d-lg-block">
<nav class="tf-mobile-menu-active">
<ul>
<li class="has-dropdown"><a href="index-3.html">Home <i class="fas fa-angle-down"></i></a>
<div class="tf-mega-menu">
<div class="tf-home-menu">
<div class="row gx-4 row-cols-2 row-cols-lg-5">
<div class="col mb-25">
<div class="tf-home-thumb p-relative">
<img src="assets/img/demo/home-1.jpg" alt="">
<h3 class="tf-home-title"><a href="index.html">Home 01</a></h3>
<div class="tf-home-btn">
<a class="tf-btn-gradient tf-btn-gradient-bg tf-home-padding" href="index.html">Demo</a>
</div>
</div>
</div>
<div class="col mb-25">
<div class="tf-home-thumb p-relative">
<img src="assets/img/demo/home-2.jpg" alt="">
<h3 class="tf-home-title"><a href="index-2.html">Home 02</a></h3>
<div class="tf-home-btn">
<a class="tf-btn-gradient tf-btn-gradient-bg tf-home-padding" href="index-2.html">Demo</a>
</div>
</div>
</div>
<div class="col mb-25">
<div class="tf-home-thumb p-relative">
<img src="assets/img/demo/home-3.jpg" alt="">
<h3 class="tf-home-title"><a href="index-3.html">Home 03</a></h3>
<div class="tf-home-btn">
<a class="tf-btn-gradient tf-btn-gradient-bg tf-home-padding" href="index-3.html">Demo</a>
</div>
</div>
</div>
<div class="col mb-25">
<div class="tf-home-thumb p-relative">
<img src="assets/img/demo/home-4.jpg" alt="">
<h3 class="tf-home-title"><a href="index-4.html">Home 04</a></h3>
<div class="tf-home-btn">
<a class="tf-btn-gradient tf-btn-gradient-bg tf-home-padding" href="index-4.html">Demo</a>
</div>
</div>
</div>
<div class="col mb-25">
<div class="tf-home-thumb p-relative">
<img src="assets/img/demo/home-5.jpg" alt="">
<h3 class="tf-home-title"><a href="index-5.html">Home 05</a></h3>
<div class="tf-home-btn">
<a class="tf-btn-gradient tf-btn-gradient-bg tf-home-padding" href="index-5.html">Demo</a>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="has-dropdown"><a href="portfolio.html">Pages <i class="fas fa-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="team-details.html">Team Details</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="portfolio-details.html">Portfolio Details</a></li>
<li><a href="pricing.html">Price</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="error.html">Error</a></li>
</ul>
</li>
<li class="has-dropdown"><a href="services.html">Services <i class="fas fa-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="services.html">Services</a></li>
<li><a href="services-details.html">Services Details</a></li>
</ul>
</li>
<li class="has-dropdown"><a href="blog.html">News <i class="fas fa-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-mg-6 col-md-6 col-sm-6 col-4">
<div class="tf-header-right">
<div class="tf-header-iocn align-items-center d-none d-xl-flex">
<div class="tf-header-icon-logo">
<span class="mr-15 tf-header-call-icon"><img src="assets/img/icon/phone-call.svg" alt=""></span>
</div>
<div class="tf-header-contact-info">
<span class="tf-header-content-title">Consultation</span>
<a class="tf-header-number" href="tel:+8801608456553">+880 1608 456 553</a>
</div>
</div>
<div class="tf-header-right-btn ml-35 d-none d-md-block">
<a class="tf-btn-black" href="contact.html">Contact Us</a>
</div>
<div class="tf-header-right-bar d-xl-none">
<button class="tf-offcanvas-toogle">
<img src="assets/img/icon/bar.png" alt="">
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!--header-end-->
<!-- tf-offcanvas -->
<div class="tf-offcanvas">
<div class="tf-offcanvas-wrapper">
<div class="tf-offcanvas-header d-flex justify-content-between align-items-center mb-90">
<div class="tf-offcanvas-logo">
<a href="index.html"><img src="assets/img/logo/black.png" alt=""></a>
</div>
<div class="tf-offcanvas-close">
<button class="tf-offcanvas-close-toggle"><i class="fal fa-times"></i></button>
</div>
</div>
<div class="tf-offcanvas-menu d-lg-none mb-50">
<nav></nav>
</div>
<div class="tf-offcanvas-content mb-50 d-none d-lg-block">
<h2 class="tf-offcanvas-title">Hello There!</h2>
<p>Lorem ipsum dolor sit amet, consect etur adipiscing elit. </p>
</div>
<div class="tf-offcanvas-gallery mb-50">
<a class="popup-image" href="assets/img/project/h2-img1.jpg"><img src="assets/img/project/h2-img1.jpg" alt=""></a>
<a class="popup-image" href="assets/img/project/h2-img2.jpg"><img src="assets/img/project/h2-img2.jpg" alt=""></a>
<a class="popup-image" href="assets/img/project/h2-img3.jpg"><img src="assets/img/project/h2-img3.jpg" alt=""></a>
<a class="popup-image" href="assets/img/project/h2-img4.jpg"><img src="assets/img/project/h2-img4.jpg" alt=""></a>
</div>
<div class="tf-offcanvas-info mb-50">
<h3 class="tf-offcanvas-sm-title">Information</h3>
<span><a href="tel:+8801608456553">+88016 0845 6553</a></span>
<span><a href="mailto:mdmuraddev400@gmail.com">mdmuraddev400@gmail.com</a></span>
<span><a href="contact.html">Boulevard Saint-Germain 221, Paris</a></span>
</div>
<div class="tf-offcanvas-social mb-50">
<h3 class="tf-offcanvas-sm-title">Follow Us</h3>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="tf-offcanvas-overlay"></div>
<main>
<!--tf-hero-area-start-->
<section class="tf-hero-area p-relative tf-hero-area-2 tf-hero-spacing fix">
<div class="tf-hero-shape">
<div class="tf-hero-bg-1 d-none d-xl-block wow img-custom-anim-right" data-wow-duration="1.5s" data-wow-delay="0.3s">
<img src="assets/img/hero/bg2.jpg" alt="">
</div>
</div>
<div class="tf-hero-groth d-none d-sm-block">
<span><i class="fas fa-arrow-up"></i></span>
<h4 class="tf-hero-groth-title mt-10">50%</h4>
<p>Yearly Growth</p>
</div>
<div class="container">
<div class="row">
<div class="col-xl-8">
<div class="tf-hero-content-3">
<h1 class="tf-hero-title tf-hero-title-2 tf-upper mb-30 wow img-custom-anim-left" data-wow-duration="1.5s" data-wow-delay="0.1s">Instantly connect with high-quality potential <span>leads.</span></h1>
<p class="tf-hero-text tf-hero-text-2 mb-50">Every project we build is fueled by passion and precision, combining innovative design <br> clean code, and thoughtful strategy to create digital products
that connect, inspire <br> and leave lasting impressions</p>
<a href="about.html" class="tf-btn-gradient tf-btn-gradient-bg wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">Descover More</a>
</div>
</div>
</div>
</div>
</section>
<!--tf-hero-area end-->
<!--tf-about-area-start-->
<section class="tf-about-area section-padding mt-50 fix">
<div class="container">
<div class="row flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<div class="tf-about-image br-16 wow img-custom-anim-top" data-wow-duration="1.5s" data-wow-delay="0.3s">
<img src="assets/img/about/h2-about1.jpg" alt="">
</div>
<div class="tf-about-video">
<div class="tf-about-video-info mt-50 mb-30 d-flex align-items-center">
<div class="tf-about-video-icon mr-30">
<a class="popup-video" href="https://www.youtube.com/watch?v=OtADGO_F4QE"><i class="fas fa-play"></i></a>
</div>
<h4>Intro video</h4>
</div>
</div>
<div class="tf-section-title-wrapper mb-30">
<h2 class="tf-section-title">Connecting brands and customers through creativity and innovation.</h2>
</div>
</div>
<div class="col-lg-6">
<div class="tf-about-thumb-wrap ml-50">
<div class="tf-section-title-wrapper mb-30">
<h2 class="tf-section-title">Bridging ideas, design, and people for meaningful connections.</h2>
<p>Per ipsum ultrices sollicitudin iaculis platea facilisi Semper aliquam up
taciti senectus cursus vivamus volutpat nibh. Penatibus fringilla porttitor
do magna purus massa per duis dapibus scelerisque etiam</p>
</div>
<div class="tf-about-btn mb-30 wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.1s">
<a class="tf-btn-project tf-btn-project-bg" href="about.html">About More</a>
</div>
<div class="tf-about-image br-16 wow img-custom-anim-top" data-wow-duration="1.5s" data-wow-delay="0.5s">
<img src="assets/img/about/h2-about2.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!--tf-about-area-end-->
<!--tf-services-area-start-->
<section class="tf-services-area section-padding fix">
<div class="container">
<div class="tf-section-title-wrapper text-center mb-50">
<span class="tf-section-subtitle">KNOW ABOUT OUR AGENCY</span>
<h2 class="tf-section-title">Our marketing service</h2>
</div>
<div class="row gx-0">
<div class="col-lg-4 col-md-6">
<div class="tfservices__2 br-24 mb-30 wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.1s">
<div class="tfservices__icon">
<img src="assets/img/services/icon-1.png" alt="">
</div>
<div class="tfservices__content-2">
<h3 class="tfservices__title-2 mt-15"><a href="services.html">Design Architect</a></h3>
<p>Mirum est notare quam littera gothica, quam nunc putamus parum claram.</p>
</div>
<div class="tfservices__list">
<ul>
<li>Branding Design</li>
<li>Research & Testing </li>
<li>Interion Design</li>
<li>Content Writing</li>
</ul>
</div>
<div class="tfservices__button mt-20">
<a class="tfservices__btn-2" href="services-details.html">Read More <i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="tfservices__2 br-24 mb-30 wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.3s">
<div class="tfservices__icon">
<img src="assets/img/services/icon-2.png" alt="">
</div>
<div class="tfservices__content-2">
<h3 class="tfservices__title-2 mt-15"><a href="services.html">Brand Creator</a></h3>
<p>Mirum est notare quam littera gothica, quam nunc putamus parum claram.</p>
</div>
<div class="tfservices__list">
<ul>
<li>Branding Design</li>
<li>Research & Testing </li>
<li>Interion Design</li>
<li>Content Writing</li>
</ul>
</div>
<div class="tfservices__button mt-20">
<a class="tfservices__btn-2" href="services-details.html">Read More <i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="tfservices__2 br-24 mb-30 wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.5s">
<div class="tfservices__icon">
<img src="assets/img/services/icon-3.png" alt="">
</div>
<div class="tfservices__content-2">
<h3 class="tfservices__title-2 mt-28"><a href="services.html">General Builder</a></h3>
<p>Mirum est notare quam littera gothica, quam nunc putamus parum claram.</p>
</div>
<div class="tfservices__list">
<ul>
<li>Branding Design</li>
<li>Research & Testing </li>
<li>Interion Design</li>
<li>Content Writing</li>
</ul>
</div>
<div class="tfservices__button mt-20">
<a class="tfservices__btn-2" href="services-details.html">Read More <i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--tf-services-area-end-->
<!--tf-count-area-start-->
<div class="tfcounter-area section-padding fix">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="tfcounter__2 p-relative d-flex justify-content-between mb-30">
<div class="tfcounter__content">
<div class="tfcounter__icon-2 mb-15">
<i class="fas fa-heart"></i>
</div>
<p>Our Global <br> Costomer</p>
</div>
<div class="tfcounter__text">
<h2 class="tfcounter__title-2"><span class="odometer" data-count="55">0</span>k</h2>
</div>
<div class="tfcounter__arrow">
<img src="assets/img/icon/arrow-up.png" alt="">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="tfcounter__2 p-relative d-flex justify-content-between mb-30">
<div class="tfcounter__content">
<div class="tfcounter__icon-2 mb-15">
<i class="fas fa-star"></i>
</div>
<p>Our Completed <br> Projects</p>
</div>
<div class="tfcounter__text">
<h2 class="tfcounter__title-2 tfcounter__title-2-sec"><span class="odometer" data-count="15">0</span>k</h2>
</div>
<div class="tfcounter__arrow tfcounter__arrow-two">
<img src="assets/img/icon/arrow-up.png" alt="">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="tfcounter__2 p-relative d-flex justify-content-between mb-30">
<div class="tfcounter__content">
<div class="tfcounter__icon-2 mb-15">
<i class="fas fa-user"></i>
</div>
<p>Our Expert <br> Worker</p>
</div>
<div class="tfcounter__text">
<h2 class="tfcounter__title-2"><span class="odometer" data-count="10">0</span>k</h2>
</div>
<div class="tfcounter__arrow">
<img src="assets/img/icon/arrow-up.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<!--tf-count-area-end-->
<!--tf-project-area-start-->
<div class="tf-project-area section-padding fix">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="tf-section-title-wrapper">
<span class="tf-section-subtitle mb-10" data-color="#010F1C">OUR PORTFOLIO</span>
<h2 class="tf-section-title">Creative work <br> we done</h2>
</div>
<div class="tf-project-tab-wraper">
<nav>
<div class="tf-project-tab tf-project-tab-2" id="nav-tab" role="tablist">
<button class="nav-links active" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">All Work</button>
<button class="nav-links" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile" type="button" role="tab" aria-controls="nav-profile" aria-selected="false">Digital thinker</button>
<button class="nav-links" id="nav-contact-tab" data-bs-toggle="tab" data-bs-target="#nav-contact" type="button" role="tab" aria-controls="nav-contact" aria-selected="false">Web Design</button>
<button class="nav-links" id="nav-contact-tab-1" data-bs-toggle="tab" data-bs-target="#nav-contact-1" type="button" role="tab" aria-controls="nav-contact-1" aria-selected="false">Branding</button>
</div>
</nav>
</div>
</div>
<div class="col-lg-6">
<div class="tf-project-content-wraper">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab" tabindex="0">
<div class="tf-project-image p-relative br-16">
<a class="popup-image" href="assets/img/project/h2-img1.jpg"><img src="assets/img/project/h2-img1.jpg" alt=""></a>
<div class="tf-project-image-text">
<span>Digital Marketing</span>
<h4 class="tf-project-image-title"><a href="portfolio.html">Designing the Future</a></h4>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab" tabindex="0">
<div class="tf-project-image p-relative br-16">
<a class="popup-image" href="assets/img/project/h2-img2.jpg"><img src="assets/img/project/h2-img2.jpg" alt=""></a>
<div class="tf-project-image-text">
<span>Digital Marketing</span>
<h4 class="tf-project-image-title"><a href="portfolio-details.html">Realistic 3d model</a></h4>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab" tabindex="0">
<div class="tf-project-image p-relative br-16">
<a class="popup-image" href="assets/img/project/h2-img3.jpg"><img src="assets/img/project/h2-img3.jpg" alt=""></a>
<div class="tf-project-image-text">
<span>Web Design</span>
<h4 class="tf-project-image-title"><a href="portfolio.html">Designing the Future</a></h4>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-contact-1" role="tabpanel" aria-labelledby="nav-contact-tab-1" tabindex="0">
<div class="tf-project-image p-relative br-16">
<a class="popup-image" href="assets/img/project/h2-img4.jpg"><img src="assets/img/project/h2-img4.jpg" alt=""></a>
<div class="tf-project-image-text">
<span>Digital Marketing</span>
<h4 class="tf-project-image-title"><a href="portfolio-details.html">Project Management</a></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--tf-project-area-end-->
<!--tf-testimonial-area-start-->
<div class="tf-testimonial-area section-padding-2 fix">
<div class="container">
<div class="tf-testimonial-wrapper p-relative br-32 wow img-custom-anim-top" data-wow-duration="1.5s" data-wow-delay="0.3s">
<div class="tf-testimonial-shape">
<div class="tf-testimonial-shape-1">
<img src="assets/img/testimonial/test-quote.png" alt="">
</div>
<div class="tf-testimonial-shape-2">
<img src="assets/img/testimonial/test-shape.png" alt="">
</div>
</div>
<div class="tf-testimonial-arrow p-absolute">
<div class="tf-testimonial-button-prev tf-testimonial-button-2 mr-10"><i class="far fa-arrow-left"></i></div>
<div class="tf-testimonial-button-next tf-testimonial-button-2"><i class="far fa-arrow-right"></i></div>
</div>
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6">
<div class="tf-testimonial-image p-relative z-index-11 br-16 d-none d-md-block">
<img src="assets/img/testimonial/test2.png" alt="">
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6">
<div class="tf-testimonial-comment p-relative z-index-11">
<div class="swiper tf-testimonial-active">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="tf-testimonial-content">
<div class="tf-section-title-wrapper mb-50 tf-testimonial-title-wrapper">
<span class="tf-section-subtitle tf-testimonial-subtitle mb-10">Testimonial</span>
<h2 class="tf-section-title tf-testimonial-title">What Our Client Say About Us</h2>
<p class="tf-white">"Working with this designer was a fantastic experience! Their
attention to detail and creativity brought our project to life. The communication
was smooth and professional throughout the process. Highly recommended for anyone
seeking high-quality design work."</p>
</div>
<div class="tf-testimonial-info d-flex align-items-center">
<div class="tf-testimonial-info-logo mr-15">
<img src="assets/img/testimonial/info1.jpg" alt="">
</div>
<div class="tf-testimonial-info-bio">
<h5 class="tf-testimonial-info-title">Laboni Akter</h5>
<span>CUSTOMER</span>
<div class="tf-testimonial-info-rating">
<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>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tf-testimonial-content">
<div class="tf-section-title-wrapper mb-50 tf-testimonial-title-wrapper">
<span class="tf-section-subtitle tf-testimonial-subtitle mb-10"><img src="assets/img/logo/sub-logo.png" alt=""> Testimonial</span>
<h2 class="tf-section-title tf-testimonial-title">What Our Client Say About Us</h2>
<p class="tf-white">"Working with this designer was a fantastic experience! Their
attention to detail and creativity brought our project to life. The communication
was smooth and professional throughout the process. Highly recommended for anyone
seeking high-quality design work."</p>
</div>
<div class="tf-testimonial-info d-flex align-items-center">
<div class="tf-testimonial-info-logo mr-15">
<img src="assets/img/testimonial/info2.jpg" alt="">
</div>
<div class="tf-testimonial-info-bio">
<h5 class="tf-testimonial-info-title">Sumaiya Akter</h5>
<span>CUSTOMER</span>
<div class="tf-testimonial-info-rating">
<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>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tf-testimonial-content">
<div class="tf-section-title-wrapper mb-50 tf-testimonial-title-wrapper">
<span class="tf-section-subtitle tf-testimonial-subtitle mb-10"><img src="assets/img/logo/sub-logo.png" alt=""> Testimonial</span>
<h2 class="tf-section-title tf-testimonial-title">What Our Client Say About Us</h2>
<p class="tf-white">"Working with this designer was a fantastic experience! Their
attention to detail and creativity brought our project to life. The communication
was smooth and professional throughout the process. Highly recommended for anyone
seeking high-quality design work."</p>
</div>
<div class="tf-testimonial-info d-flex align-items-center">
<div class="tf-testimonial-info-logo mr-15">
<img src="assets/img/testimonial/info3.jpg" alt="">
</div>
<div class="tf-testimonial-info-bio">
<h5 class="tf-testimonial-info-title">Murad Hossain</h5>
<span>CUSTOMER</span>
<div class="tf-testimonial-info-rating">
<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>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--tf-testimonial-area-end-->
<!--tf-choose-area-start-->
<div class="tf-choose-area section-padding fix" data-bg-color="#F4F4F4">
<div class="container">
<div class="row">
<div class="col-xl-6 col-lg-6">
<div class="tfchoose__image-wrap d-flex tfchoose__margin mb-50">
<div class="tfchoose__image mr-30 wow img-custom-anim-left" data-wow-duration="1.5s" data-wow-delay="0.3s">
<img src="assets/img/choose/choose1.jpg" alt="">
</div>
<div class="tfchoose__image wow img-custom-anim-right" data-wow-duration="1.5s" data-wow-delay="0.3s">
<img src="assets/img/choose/choose2.jpg" alt="">
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div class="tfchoose__content">
<div class="tf-section-title-wrapper mb-50">
<h2 class="tf-section-title mb-20">What makes us different from others</h2>
<p>Migrating your rank tracker is like trading in your GPS mid-journey — one wrong turn, and you’re off course.</p>
</div>
<div class="tfchoose__list-wrap d-sm-flex">
<div class="tfchoose__list mr-50">
<ul>
<li><i class="far fa-check"></i> Lavender Farming</li>
<li><i class="far fa-check"></i> Garlic Farming</li>
<li><i class="far fa-check"></i> Fertilizer Distribution</li>
</ul>
</div>
<div class="tfchoose__list">
<ul>
<li><i class="far fa-check"></i> Poultry Farming</li>
<li><i class="far fa-check"></i> Baby Bellas Mushrooms</li>
<li><i class="far fa-check"></i> 100% Organic Fertilizer</li>
</ul>
</div>
</div>
<div class="tfchoose__btn mt-40 wow img-custom-anim-top" data-wow-duration="1.5s" data-wow-delay="0.3s">
<a class="tf-btn-project tf-btn-project-bg" href="services.html">Choose Us <i class="fal fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--tf-choose-area-end-->
<!--tf-team-area-start-->
<div class="tf-team-area section-padding-2 fix">
<div class="container">
<div class="tfteam-wrapper p-relative">
<div class="swiper tf-team-active-3">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="tfteam-3 p-relative">
<div class="tfteam__image br-16">
<a href="team-details.html"><img src="assets/img/team/team-1.jpg" alt=""></a>
</div>
<div class="tfteam__info text-center mt-30 mb-15">
<h3 class="tfteam__title tfteam__title-2 mb-0"><a href="team-details.html">Murad Hossain</a></h3>
<span>Leader</span>
</div>
<div class="tfteam__plus-wrap">
<div class="tfteam__plus-item p-relative">
<a class="tfteam__plus" href="team.html"><i class="far fa-plus"></i></a>
</div>
<div class="tfteam__social tfteam__social-3 mt-20 mb-20">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfteam-3 p-relative">
<div class="tfteam__image br-16">
<a href="team-details.html"><img src="assets/img/team/team-2.jpg" alt=""></a>
</div>
<div class="tfteam__info text-center mt-30 mb-15">
<h3 class="tfteam__title tfteam__title-2 mb-0"><a href="team-details.html">Laboni Akter</a></h3>
<span>Leader</span>
</div>
<div class="tfteam__plus-wrap">
<div class="tfteam__plus-item p-relative">
<a class="tfteam__plus" href="team.html"><i class="far fa-plus"></i></a>
</div>
<div class="tfteam__social tfteam__social-3 mt-20 mb-20">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfteam-3 p-relative">
<div class="tfteam__image br-16">
<a href="team-details.html"><img src="assets/img/team/team-3.jpg" alt=""></a>
</div>
<div class="tfteam__info text-center mt-30 mb-15">
<h3 class="tfteam__title tfteam__title-2 mb-0"><a href="team-details.html">Sohag Ali</a></h3>
<span>Leader</span>
</div>
<div class="tfteam__plus-wrap">
<div class="tfteam__plus-item p-relative">
<a class="tfteam__plus" href="team.html"><i class="far fa-plus"></i></a>
</div>
<div class="tfteam__social tfteam__social-3 mt-20 mb-20">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfteam-3 p-relative">
<div class="tfteam__image br-16">
<a href="team-details.html"><img src="assets/img/team/team-4.jpg" alt=""></a>
</div>
<div class="tfteam__info text-center mt-30 mb-15">
<h3 class="tfteam__title tfteam__title-2 mb-0"><a href="team-details.html">Sumaiya Akter</a></h3>
<span>Leader</span>
</div>
<div class="tfteam__plus-wrap">
<div class="tfteam__plus-item p-relative">
<a class="tfteam__plus" href="team.html"><i class="far fa-plus"></i></a>
</div>
<div class="tfteam__social tfteam__social-3 mt-20 mb-20">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tf-team-arrow">
<div class="tfteam-arrow-next tfteam-arrow"><i class="fal fa-chevron-left"></i></div>
<div class="tfteam-arrow-prev tfteam-button"><i class="fal fa-chevron-right"></i></div>
</div>
</div>
</div>
</div>
<!--tf-team-area-end-->
<!--faq-area-srart-->
<div class="tf-faq-area section-padding fix" data-bg-color="#f0f4f5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="tffaq__content">
<div class="tf-section-title-wrapper mb-40">
<span class="tf-section-subtitle mb-20">Faq’s</span>
<h2 class="section-title wow img-custom-anim-left" data-wow-duration="1.5s" data-wow-delay="0.1s">Discover top education culture with <span>Educatie.</span></h2>
<p>Explore the best in education culture and learning experiences with <br> Educatie—where knowledge meets growth.</p>
</div>
<div class="accordion" id="accordionExample">
<div class="tffaq__item mb-30">
<h2 class="tffaq__header">
<button class="tffaq__button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Why should I hire a digital agency?
<span><i class="far fa-angle-down"></i></span>
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="tffaq__body">
<p>Lorem ipsum dolor sit amet consectur adipiscing elit sed eius mod ex tempor incididunt labore dolore magna aliquaenim ad minim eniam.</p>
</div>
</div>
</div>
<div class="tffaq__item mb-30">
<h2 class="tffaq__header">
<button class="tffaq__button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
Which industries do you serve?
<span><i class="far fa-angle-down"></i></span>
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="tffaq__body">
<p>Lorem ipsum dolor sit amet consectur adipiscing elit sed eius mod ex tempor incididunt labore dolore magna aliquaenim ad minim eniam.</p>
</div>
</div>
</div>
<div class="tffaq__item">
<h2 class="tffaq__header">
<button class="tffaq__button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="true" aria-controls="collapseThree">
How long does it take to see results?
<span><i class="far fa-angle-down"></i></span>
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="tffaq__body">
<p>Lorem ipsum dolor sit amet consectur adipiscing elit sed eius mod ex tempor incididunt labore dolore magna aliquaenim ad minim eniam.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="tffaq__image-box p-relative br-16 mt-100 wow tffadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">
<img src="assets/img/faq/faq1.jpg" alt="">
<a class="tffaq__image-btn popup-video" href="https://www.youtube.com/watch?v=OtADGO_F4QE"><span><i class="fas fa-play"></i></span></a>
</div>
</div>
</div>
</div>
</div>
<!--faq-area-end-->
<!--tf-blog-area-start-->
<div class="tf-blog-area section-padding fix">
<div class="container">
<div class="tfteam-top d-flex justify-content-between">
<div class="tf-section-title-wrapper mb-40">
<span class="tf-section-subtitle mb-10">OUR BLOG POST</span>
<h2 class="tf-section-title">Read our latest blog</h2>
</div>
<div class="tfblog__button mt-50 d-none d-sm-block">
<a class="tfteam__btn" href="blog-details.html">More News <i class="far fa-arrow-right"></i></a>
</div>
</div>
<div class="tfblog-wrapper p-relative">
<div class="swiper tf-blog-active">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="tfblog__3">
<div class="tfblog__image-3 br-16">
<a href="blog.html"><img src="assets/img/blog/h3-blog1.jpg" alt=""></a>
</div>
<div class="tfblog__content-3">
<div class="tfblog__meta-3 mt-20">
<a class="mr-15" href="blog-details.html">SEO Analysis</a>
<a href="blog-details.html">Merkating</a>
</div>
<h5 class="tfblog__title mt-10"><a href="blog-details.html">Pure creativity is the most inspiring foundation for impactful design.</a></h5>
<div class="tfblog__author-wrap d-flex align-items-center justify-content-between mt-10">
<div class="tfblog__author d-flex align-items-center">
<div class="tfblog__author-avater">
<img src="assets/img/testimonial/info1.jpg" alt="">
</div>
<div class="tfblog__author-info ml-10">
<h4>Laboni Akter</h4>
<span>Auguht 10, 2025</span>
</div>
</div>
<div class="tfblog__author-view">
<span><i class="fal fa-eye"></i></span>
<span>223,2k</span>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfblog__3">
<div class="tfblog__image-3 br-16">
<a href="blog.html"><img src="assets/img/blog/h3-blog2.jpg" alt=""></a>
</div>
<div class="tfblog__content-3">
<div class="tfblog__meta-3 mt-20">
<a class="mr-15" href="blog-details.html">SEO Analysis</a>
<a href="blog-details.html">Merkating</a>
</div>
<h5 class="tfblog__title mt-10"><a href="blog-details.html">Authentic ideas are the healthiest and most nourishing innovation.</a></h5>
<div class="tfblog__author-wrap d-flex align-items-center justify-content-between mt-10">
<div class="tfblog__author d-flex align-items-center">
<div class="tfblog__author-avater">
<img src="assets/img/testimonial/info2.jpg" alt="">
</div>
<div class="tfblog__author-info ml-10">
<h4>Sumaiya Akter</h4>
<span>Auguht 11, 2025</span>
</div>
</div>
<div class="tfblog__author-view">
<span><i class="fal fa-eye"></i></span>
<span>243,2k</span>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfblog__3">
<div class="tfblog__image-3 br-16">
<a href="blog.html"><img src="assets/img/blog/h3-blog3.jpg" alt=""></a>
</div>
<div class="tfblog__content-3">
<div class="tfblog__meta-3 mt-20">
<a class="mr-15" href="blog-details.html">SEO Analysis</a>
<a href="blog-details.html">Merkating</a>
</div>
<h5 class="tfblog__title mt-10"><a href="blog-details.html">Pure design delivers the most powerful lasting brand experiences.</a></h5>
<div class="tfblog__author-wrap d-flex align-items-center justify-content-between mt-10">
<div class="tfblog__author d-flex align-items-center">
<div class="tfblog__author-avater">
<img src="assets/img/testimonial/info3.jpg" alt="">
</div>
<div class="tfblog__author-info ml-10">
<h4>Murad Hossain</h4>
<span>Auguht 12, 2025</span>
</div>
</div>
<div class="tfblog__author-view">
<span><i class="fal fa-eye"></i></span>
<span>273,2k</span>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="tfblog__3">
<div class="tfblog__image-3 br-16">
<a href="blog.html"><img src="assets/img/blog/h3-blog2.jpg" alt=""></a>
</div>
<div class="tfblog__content-3">
<div class="tfblog__meta-3 mt-20">
<a class="mr-15" href="blog-details.html">SEO Analysis</a>
<a href="blog-details.html">Merkating</a>
</div>
<h5 class="tfblog__title mt-10"><a href="blog-details.html">Authentic ideas are the healthiest and most nourishing innovation.</a></h5>
<div class="tfblog__author-wrap d-flex align-items-center justify-content-between mt-10">
<div class="tfblog__author d-flex align-items-center">
<div class="tfblog__author-avater">
<img src="assets/img/testimonial/info2.jpg" alt="">
</div>
<div class="tfblog__author-info ml-10">
<h4>Sumaiya Akter</h4>
<span>Auguht 11, 2025</span>
</div>
</div>
<div class="tfblog__author-view">
<span><i class="fal fa-eye"></i></span>
<span>243,2k</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tf-blog-arrow">
<div class="tfblog-button-next tfblog-button"><i class="fal fa-chevron-left"></i></div>
<div class="tfblog-button-prev tfblog-button"><i class="fal fa-chevron-right"></i></div>
</div>
</div>
</div>
</div>
<!--tf-blog-area-end-->
<!--tf-contact-area-start-->
<div class="tf-contact-area section-padding fix">
<div class="container">
<div class="row">
<div class="col-xl-6 col-lg-6">
<div class="tf-contact-wrapper wow img-custom-anim-left" data-wow-duration="1.5s" data-wow-delay="0.3s">
<div class="tf-contact-item d-flex align-items-center mb-20">
<div class="tf-contact-icon mr-30"><i class="far fa-map-marker-check"></i></div>
<div class="tf-contact-info">
<span>Our Address</span>
<a href="contact.html">88 New South Head Rd, Triple SFW 66, New York</a>
</div>
</div>
<div class="tf-contact-item d-flex align-items-center mb-20">
<div class="tf-contact-icon mr-30"><i class="far fa-map-marker-check"></i></div>
<div class="tf-contact-info">
<span>Phone Number</span>
<a href="tel:+8801608456565">Mobile: +8801608456565</a> <br>
<a href="tel:131224831">Hotline: 1312 24831</a>
</div>
</div>
<div class="tf-contact-item d-flex align-items-center">
<div class="tf-contact-icon mr-30"><i class="far fa-map-marker-check"></i></div>
<div class="tf-contact-info">
<span>Email Address</span>
<a href="mailto:hello@murad.com">hello@murad.com</a> <br>
<a href="mailto:contact@infocompany.com">contact@infocompany.com</a>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div class="tf-contact-form-wrapper wow img-custom-anim-right" data-wow-duration="1.5s" data-wow-delay="0.5s">
<h3 class="tf-contact-title mb-30">Have Any Other Question?</h3>
<div class="tf-contact-form-box">
<form action="assets/mail.php" method="POST">
<div class="row">
<div class="col-md-6">
<div class="tf-contact-form-input mb-20 p-relative">
<input type="text" name="name" placeholder="Your Name">
<i class="fas fa-user"></i>
</div>
</div>
<div class="col-md-6">
<div class="tf-contact-form-input mb-20 p-relative">
<input type="email" name="email" placeholder="Your Email">
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="col-md-12">
<div class="tf-contact-form-input mb-20 p-relative">
<input type="tel" name="tel" placeholder="Phone Number">
<i class="fas fa-phone-alt"></i>