-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
1089 lines (1013 loc) · 73.4 KB
/
about.php
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, shrink-to-fit=no">
<meta name="description" content="TSB was founded by Mohiuddin Ahmed Munir and William Amitav Dobey, two leading professionals in the knit sector of Bangladesh. They had a very clear vision to contribute with their skills, knowledge and intellect in Bangladesh's booming RMG sector.">
<meta name="author" content="Anas Uddin">
<link rel="mask-icon" sizes="any" href="assets/custom/images/tsb_logo.svg" color="#10263E">
<link rel="apple-touch-icon" href="assets/custom/images/apple-touch-icon-192x192.png" sizes="192x192">
<link rel="fluid-icon" href="assets/custom/images/fluidicon.png" title="Tiger Style Bangladesh">
<meta http-equiv="Content-Type" content="text/html;">
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="robots" content="index,follow,noarchive">
<meta name="googlebot" content="index,follow">
<meta name="url" content="https://www.tigerstylebd.com/about.php">
<meta name="keywords" content="Tiger Style Bangladesh, TSB, Official Website, Knitwear, Exporter, Bangladesh RMG, Mohiuddin Ahmed Munir, William Amitav Dobey, Rubel Rana, Nazmul Islam, Blog, Exporter Exporting Company, T-Shirts, Polo Shirts, Knit Supplier, Dhaka, Bangladesh, Uttara, Garments, Men’s Knitwear, Women’s Knitwear, Kid's Knitwear, Knitwear Manufacturer, Fabric Sourcing, Bulk Manufacture, Team of Professionals">
<link rel="canonical" href="https://www.tigerstylebd.com/about.php" data-pjax-transient>
<link rel="alternate" hreflang="x-default" href="https://www.tigerstylebd.com/about.php">
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Tiger Style Bangladesh" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<link rel="search" type="application/opensearchdescription+xml" href="opensearch.xml" title="Tiger Style Bangladesh">
<meta name="hostname" content="tigerstylebd.com">
<meta name="expected-hostname" content="tigerstylebd.com">
<meta name="selected-link" value="/about.php" data-pjax-transient>
<link rel="apple-touch-icon" sizes="57x57" href="favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-icon-180x180.png">
<link rel="shortcut icon" type="image/x-icon" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#2C3E4F">
<meta name="msapplication-navbutton-color" content="#2C3E4F">
<meta name="msapplication-config" content="favicon/browserconfig.xml">
<meta name="application-name" content="Tiger Style Bangladesh" />
<meta itemprop="name" content="About - Tiger Style Bangladesh">
<meta itemprop="description" content="TTSB was founded by Mohiuddin Ahmed Munir and William Amitav Dobey, two leading professionals in the knit sector of Bangladesh. They had a very clear vision to contribute with their skills, knowledge and intellect in Bangladesh's booming RMG sector.">
<meta itemprop="image" content="https://www.tigerstylebd.com/assets/custom/images/meta-image.jpg">
<meta property="og:site_name" content="Tiger Style Bangladesh" />
<meta property="og:url" content="https://www.tigerstylebd.com/about.php">
<meta property="og:title" content="About - Tiger Style Bangladesh">
<meta property="og:description" content="TSB was founded by Mohiuddin Ahmed Munir and William Amitav Dobey, two leading professionals in the knit sector of Bangladesh. They had a very clear vision to contribute with their skills, knowledge and intellect in Bangladesh's booming RMG sector.">
<meta property="og:image" content="https://www.tigerstylebd.com/assets/custom/images/meta-image.jpg">
<meta name="og:image:secure_url" content="https://www.tigerstylebd.com/assets/custom/images/meta-image.jpg" />
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:type" content="website" />
<!--<meta property="fb:app_id" content="1470168793264145" />-->
<meta property="og:author" content="https://www.facebook.com/theanasuddin" />
<meta property="og:locale" content="en_US">
<meta property="twitter:site" content="@tigerstylebd">
<!--<meta property="twitter:site:id" content="13334762">-->
<meta property="twitter:creator" content="@tigerstylebd">
<!--<meta property="twitter:creator:id" content="13334762">-->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="About - Tiger Style Bangladesh">
<meta property="twitter:description" content="TSB was founded by Mohiuddin Ahmed Munir and William Amitav Dobey, two leading professionals in the knit sector of Bangladesh. They had a very clear vision to contribute with their skills, knowledge and intellect in Bangladesh's booming RMG sector.">
<meta property="twitter:image:src" content="https://www.tigerstylebd.com/assets/custom/images/tsb-logo.jpg">
<meta property="twitter:image:width" content="4096">
<meta property="twitter:image:height" content="4096">
<meta property="twitter:image:alt" content="TSB Logo">
<meta name="twitter:url" content="https://www.tigerstylebd.com/about.php">
<meta name="twitter:domain" content="tigerstylebd.com"/>
<title>About - Tiger Style Bangladesh</title>
<!-- animate.css-->
<link href="assets/vendor/animate.css-master/animate.min.css" rel="stylesheet">
<!-- Load Screen -->
<link href="assets/vendor/loadscreen/css/spinkit.css" rel="stylesheet">
<!-- GOOGLE FONT -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<!-- Font Awesome 5 -->
<link href="assets/vendor/fontawesome/css/fontawesome-all.min.css" rel="stylesheet">
<!-- tsb Icons -->
<link href="assets/custom/css/tsb-icons.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap-4-navbar.css" rel="stylesheet">
<!-- portfolio filter gallery -->
<link href="assets/vendor/portfolio-filter-gallery/portfolio-filter-gallery.css" rel="stylesheet">
<!-- FANCY BOX -->
<link href="assets/vendor/fancybox-master/jquery.fancybox.min.css" rel="stylesheet">
<!-- RANGE SLIDER -->
<link href="assets/vendor/range-slider/range-slider.css" rel="stylesheet">
<!-- OWL CAROUSEL -->
<link href="assets/vendor/owlcarousel/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/owlcarousel/owl.theme.default.min.css" rel="stylesheet">
<!-- tsb CUSTOM CSS FILE -->
<link href="assets/custom/css/custom.css" rel="stylesheet">
<!-- tsb CUSTOM CSS RESPONSIVE FILE -->
<link href="assets/custom/css/custom-responsive.css" rel="stylesheet">
</head>
<body>
<div class="search-section">
<a class="close-search" href="#"></a>
<div class="d-flex justify-content-center align-items-center h-100">
<form method="post" action="search_tsb.php" class="w-50">
<div class="row">
<div class="col-10">
<input type="search" name="keyword" class="form-control palce bg-transparent border-0 search-input" placeholder="Search TSB ..." />
</div>
<div class="col-2 mt-3">
<button type="submit" name="submit-keyword" class="btn bg-transparent text-white"> <i class="fas fa-search"></i> </button>
</div>
</div>
</form>
</div>
</div>
<!-- Loading Screen -->
<div id="ju-loading-screen">
<div class="sk-double-bounce">
<div class="sk-child sk-double-bounce1"></div>
<div class="sk-child sk-double-bounce2"></div>
</div>
</div>
<!-- Start Top Header -->
<!-- /End Top Header -->
<!-- Start tsb Navigation -->
<div class="tsb-light-background-color py-3 py-lg-0">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-9 pr-md-0">
<nav class="navbar navbar-expand-md btco-hover-menu py-lg-2">
<a class="navbar-brand pl-0" href="index.php"><img style="height:80px" src="assets/custom/images/tsb_logo.svg" alt="TSB Logo" class="tsb-logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#fablesNavDropdown" aria-controls="fablesNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="tsb-iconmenu-icon text-white font-16"></span>
</button>
<div class="collapse navbar-collapse" id="fablesNavDropdown">
<ul class="navbar-nav mx-auto tsb-nav">
<li class="nav-item">
<a class="nav-link" href="index.php">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">
About
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.php">
Products
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.php">
Gallery
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.php">
Blog
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">
Contact
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.tigerstylebd.com:2096/3rdparty/roundcube/index.php" target="_blank">
Webmail
</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="col-12 col-md-2 col-lg-3 pr-md-0 icons-header-mobile">
<div class="tsb-header-icons">
<a href="#" class="open-search tsb-third-text-color right top-header-link px-3 px-md-2 px-lg-4 tsb-second-hover-color border-0 max-line-height">
<span class="tsb-iconsearch-icon"></span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- /End tsb Navigation -->
<!-- Start Header -->
<div class="tsb-header tsb-after-overlay">
<div class="container">
<h2 class="tsb-page-title tsb-second-border-color">About</h2>
</div>
</div>
<!-- /End Header -->
<!-- Start Breadcrumbs -->
<div class="tsb-light-gary-background">
<div class="container">
<nav aria-label="breadcrumb">
<ol class="tsb-breadcrumb breadcrumb px-0 py-3">
<li class="breadcrumb-item"><a href="index.php" class="tsb-second-text-color">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">About</li>
</ol>
</nav>
</div>
</div>
<!-- /End Breadcrumbs -->
<!-- Start page content -->
<div class="container" id="restofservices">
<div class="my-4 my-md-5 overflow-hidden">
<div class="text-center mb-5 wow fadeInDown" data-wow-delay="1s">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Services Cont.</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">Provide you the great Services</h2>
</div>
<div class="row">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/hanger.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Prototypes And Sampling </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
For each order we create a paradigm for client's approval, permitting clients to check and refine the practicality of their style. Once the samples are approved, we go for bulk manufacture.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/fabric.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Fabric Sourcing </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Fabrics are sourced to match client's necessities for composition and feel nice texture.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/needle.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Bulk Manufacture </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Bulk manufacture takes place when all the sample checking and confirmations are done. The samples are checked again and again by our QA team before going for mass production. Products are carefully checked before final packaging and shipment.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="my-4 my-md-5 overflow-hidden">
<div class="text-center wow fadeInDown" data-wow-delay="1s">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">TSB</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">At a Glance</h2>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-sm-6 p-sm-0 mb-3 mb-md-0 image-container translate-effect-right wow fadeInLeft" data-wow-durationn="2.5s">
<img src="assets/custom/images/tsb-products.svg" alt="TSB Products" class="img-fluid">
</div>
<div class="col-12 col-sm-6 p-sm-0 image-container translate-effect-right wow fadeInRight" data-wow-durationn="2.5s">
<img src="assets/custom/images/tsb-services.svg" alt="TSB Services" class="img-fluid">
</div>
</div>
</div>
<div class="tsb-counter-no-background my-4 my-md-5 overflow-hidden">
<div class="container">
<div class="tsb-about-head-style">
<div class="row wow fadeInDown" data-wow-delay=".5s">
<div class="col-12 text-center">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Company</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">Our business experties provide you the greatest value</h2>
</div>
<div class="col-12 col-md-10 offset-md-1 mt-3 mb-5">
<p class="tsb-forth-text-color text-center">
We wish to become an example of excellence in serving emerging brands in the global knit industry. We will make this possible through our industry experience and world-class manufacturing backbone.
<br>
We are Bangladesh’s one of the leading knit exporter. As a preferred long-term vendor to most leading global brands, we are amongst the leading players in the multinational apparel industry. We generate value from competitively sourcing and exporting fashion garments to leading global brands.
</p>
</div>
</div>
</div>
<div class="row wow fadeIn" data-wow-delay=".8s">
<div class="col-6 col-md-3">
<div class="tsb-counter">
<h2 class="tsb-counter-value font-40 font-weight-bold mb-3 tsb-forth-text-color" data-count="7">0</h2>
<h3 class="font-14 semi-font tsb-forth-text-color">SATISFIED CLIENTS</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="tsb-counter">
<h2 class="tsb-counter-value font-40 font-weight-bold mb-3 tsb-forth-text-color" data-count="22">0</h2>
<h3 class="font-14 semi-font tsb-forth-text-color">COMPANY MEMBERS</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="tsb-counter">
<h2 class="tsb-counter-value font-40 font-weight-bold mb-3 tsb-forth-text-color" data-count="4">0</h2>
<h3 class="font-14 semi-font tsb-forth-text-color">AWWARDS WIN</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="tsb-counter">
<h2 class="tsb-counter-value font-40 font-weight-bold mb-3 tsb-forth-text-color" data-count="2">0</h2>
<h3 class="font-14 semi-font tsb-forth-text-color">YEARS EXPIRIENCE</h3>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="restofwhyus">
<div class="my-4 my-md-5 overflow-hidden">
<div class="text-center mb-5 wow fadeInDown" data-wow-delay="1s">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">WC Us Cont.</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">We believe in having Partners and not Clients</h2>
</div>
<div class="row mb-4">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/team.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Team of Professionals </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
TSB has a top-notch team of professionals consistently examines the details of quality management.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/standard.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Standard Development </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Product development with design support, vertical set-up, customization and more.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/export.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Efficient Exporting </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
An efficient exporting set-up with a two way process, involving both our customers as well as TSB. Exporters should make it easier for their customers to do business with them, thus helping them lower their production costs and eventually building stronger profitable relationships and we are good at that.
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/process.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Systematic Process </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
We focus on effective manufacturing set-up, systematic processes, clear establishment of responsibility areas and uninterrupted information flow.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/social-care.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Social And Ethical Practices </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
We are seriously following the social and ethical practices.
</div>
</div>
</div>
</div>
<div class="text-center mb-5 wow fadeInDown" data-wow-delay="1s">
<h2 class="tsb-second-text-color mt-3 font-20 font-weight-bold text-center">We have become a supplier of a wide range of knitted <br> fabrics and garments owing to the following factors:</h2>
</div>
<div class="row mb-4">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/value.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Quality Product Range </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Quality product range
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/diversify.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Wide Variety </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Wide variety
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/clock.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Quick Response </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Quick response
</div>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/effective.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Competent Work Force </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Competent work force
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/department.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Experienced Departments </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Experienced departments
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/assets.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Good Financial Position And TQM </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Good financial position and TQM
</div>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/product.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Large Product Line </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Large product line
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/logistics.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Large Exporting Capacity </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Large exporting capacity
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/office.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Upgraded Infrastructure </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Upgraded infrastructure
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/handshake.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Transparent Deals </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Transparent deals
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/oil-price.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Economical Price </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Economical price
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-about-icon-style">
<img style="height:42px; width:42px" src="assets/custom/images/support.svg"></img>
<h2 class="tsb-second-text-color tsb-about-icon-head mt-3 mb-2 font-18 semi-font">Free Support </h2>
<span class="tsb-title-border tsb-second-background-color"></span>
<div class="tsb-forth-text-color mt-3 font-14">
Free support
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tsbhistory" class="tsb-history-section mb-4 mb-md-5">
<div class="container">
<div class="tsb-about-head-style">
<div class="row wow fadeInDown" data-wow-delay=".5s">
<div class="col-12 text-center">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">About us</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">Company History</h2>
<div class="col-12 col-md-10 offset-md-1">
<p class="tsb-forth-text-color mt-3 mb-4 mb-md-5">
TSB was founded by Mohiuddin Ahmed Munir and William Amitav Dobey, two leading professionals in the knit sector of Bangladesh. They had a very clear vision to contribute with their skills, knowledge and intellect in Bangladesh's booming RMG sector. With a long scaled plan, they stepped their foot into this sector and within several years became able to be in the center of buzz. From 2018 to till date, TSB may haven't passed a long period but its achievements are notable. With a clear & sharp vision, Tiger Style Bangladesh wants to go a long way.
</p>
</div>
</div>
</div>
</div>
<div class="tsb-history-carousel">
<div id="sync2" class="owl-carousel owl-theme">
<div class="item">
<h1>2015</h1>
</div>
<div class="item">
<h1>2016</h1>
</div>
<div class="item">
<h1>2017</h1>
</div>
<div class="item">
<h1>2018</h1>
</div>
<div class="item">
<h1>2019</h1>
</div>
<div class="item">
<h1>2020</h1>
</div>
</div>
<div id="sync1" class="owl-carousel owl-theme">
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2015</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2015</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2015</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2016</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2016</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2016</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2017</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2017</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2017</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2018</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2018</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2018</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2019</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/bangladesh_printing_&_packaging_expo.jpg" alt="Bangladesh Printing & Packaging Expo">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2019</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Bangladesh Printing & Packaging Expo</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2019</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2020</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2020</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/tsb_dummy_image.jpg" alt="TSB Dummy Image">
<div class="card-body">
<h5 class="card-title tsb-second-text-color">2020</h5>
<p class="card-text tsb-forth-text-color d-sm-none d-md-block font-15">Some TSB Events</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-rules mb-4 mb-lg-0 py-3 py-lg-0" style="background-image: url(assets/custom/images/tsb-mission.jpg)">
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-lg-6 offset-lg-6 p-lg-0">
<div class="tsb-vision-overlay tsb-after-overlay bg-rules">
<h2 class="tsb-second-text-color my-0 font-30 font-weight-bold position-relative z-index wow fadeInRight" data-wow-duration="2s">Vision & Mission</h2>
<p class="text-white position-relative z-index mt-4 mb-4 mb-md-5 wow fadeInRight font-18" data-wow-duration="2s">
We love what we do <br> & we do it with passion!
</p>
<p class="position-relative z-index mt-4 mb-4 mb-md-5 wow fadeInRight" data-wow-duration="2s">
Tiger Style Bangladesh (TSB) understands the need to firm its position as a dominant competitor in the changing global market through technological excellence and human expertise. TSB is committed to shifting its local achievements to the global spot.<br> <br>
We aim to establish ourselves as a one-stop source for global knit apparel. We are committed to satisfy and meet customer's expectations by developing and providing products and services on time which offer value in terms of quality, price, safety & environmental impact. We follow JIT (just-in-time) manufacturing, intended to reduce times within the production system as well as response times from us to our customers. We assure complete acquiescence with the international quality standards. We are aimed to provide our employees with internationally acceptable working conditions. We want to promote the development and best use of human resources & equal opportunity employment. We rely on advanced & sophisticated technology for producing desired products. TSB wants to attain the highest level of competence through the continuous development of the professional management system and to ensure complete transparency in all aspects of the business.
</p>
<a href="contact.php" class="btn tsb-second-border-color white-color tsb-btn-rouned tsb-hover-btn-color font-19 px-5 py-2 position-relative z-index wow fadeInRight" data-wow-duration="2s"><span>Contact Us</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="bg-rules mb-4 py-3 py-lg-0" style="background-image: url(assets/custom/images/tsb-message.jpg)">
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-lg-6 p-lg-0">
<div class="tsb-vision-overlay tsb-after-overlay tsb-light-overlay bg-rules">
<h2 class="tsb-second-text-color my-0 font-30 font-weight-bold position-relative z-index wow fadeInLeft" data-wow-duration="2s">Messages From Founders</h2>
<p class="tsb-forth-text-color position-relative z-index mt-4 mb-4 mb-md-5 wow fadeInLeft" data-wow-duration="2s">
<span class="tsb-second-text-color font-18 semi-font">Mohiuddin Ahmed Munir</span> - <span class="tsb-forth-text-color font-italic font-14 semi-font">"Dear guest, accept my cordial greetings. It is my immense pleasure to introduce Tiger Style Bangladesh on its achievements incorporation with a wide range of knit garment products. In today’s world, competition in business particularly in the textile manufacturing industry has reached its pinnacle. Customers need quality products at a reasonable price. It is their right to get the products delivered on time and most importantly keep themselves free from any kind of inconvenience. I am contented with our dedicated team of professionals who are focused on customer-oriented goals and objectives that enables the prompt delivery of standard products at a fair price."</span>
<br><br>
<span class="tsb-second-text-color font-18 semi-font">William Amitav Dobey</span> - <span class="tsb-forth-text-color font-italic font-14 semi-font">"Dear guest, warm regards. We intend to model Tiger Style Bangladesh as the best knitwear supplier in Bangladesh as well as abroad and chase this goal thoughtfully. We always strive to provide you the best services. It is our commitment to deliver world-class products. We made this happen by making sure that every shipment meets the quality and standards. We are glad that the factories we work with are equipped with the latest technologies available. We have always strived to fulfill your expectations through the services we provided yet if we miss something or fall short, please feel free to contact us at your convenience. I invite you to work with us and experience superior product quality and a group of energetic workforce."</span>
</p>
<a href="contact.php" class="btn tsb-second-border-color tsb-second-text-color tsb-btn-rouned tsb-hover-btn-color font-19 px-5 py-2 position-relative z-index wow fadeInLeft" data-wow-duration="2s"><span>Contact Us</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row mt-4 mt-md-5">
<div class="col-12 text-center wow fadeInDown">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Testimonials</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">See what they are saying</h2>
</div>
<div class="col-12 col-md-8 offset-md-2 col-lg-6 offset-lg-3 wow fadeInDown">
<p class="mt-4 mt-md-3 mb-4 mb-md-5 tsb-forth-text-color text-center">
We’ve been lucky enough to work with so many industrial clients.
Check out what they’re saying.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".3s">
<div class="tsb-testimonial-block border tsb-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img style="width:120px" src="assets/custom/images/shahadat-khandaker-tutul.jpg" alt="Shahadat Khandaker Tutul" class="tsb-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="tsb-testimonial-block-info">
<h3 class="tsb-forth-text-color mt-4 mb-2 font-15 semi-font">Shahadat Khandaker Tutul</h3>
<h3 class="tsb-fifth-text-color font-italic font-14 mt-2">Founder & Managing Director, Denim Venture Ltd.</h3>
</div>
</div>
</div>
<div class="tsb-forth-text-color font-italic font-14 semi-font mt-3">
Best knitwear exporter without any doubt. Top-notch quality. Wishing them a great future ahead.
</div>
</div>
</div>
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".6s">
<div class="tsb-testimonial-block border tsb-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img style="width:120px" src="assets/custom/images/sarif-anwar.jpg" alt="Sarif Anwar" class="tsb-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="tsb-testimonial-block-info">
<h3 class="tsb-forth-text-color mt-4 mb-2 font-15 semi-font">Sarif Anwar</h3>
<h3 class="tsb-fifth-text-color font-italic font-14 mt-2">Director, Denim Venture Ltd.</h3>
</div>
</div>
</div>
<div class="tsb-forth-text-color font-italic font-14 semi-font mt-3">
An emerging competitor in the knitwear arena. Dedication for innovation is so on point. Going to defeat others in knitwear game.
</div>
</div>
</div>
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".9s">
<div class="tsb-testimonial-block border tsb-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img style="width:120px" src="assets/custom/images/rubel-rana.jpg" alt="Rubel Rana" class="tsb-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="tsb-testimonial-block-info">
<h3 class="tsb-forth-text-color mt-4 mb-2 font-15 semi-font">Rubel Rana</h3>
<h3 class="tsb-fifth-text-color font-italic font-14 mt-2">Sales & Marketing Manager, Organic Group.</h3>
</div>
</div>
</div>
<div class="tsb-forth-text-color font-italic font-14 semi-font mt-3">
A hard-working team with the touch of passion everywhere. As a person from marketing, all I can see is immense potential of their new products. Best of luck.
</div>
</div>
</div>
</div>
<div class="tsb-team mb-4">
<div class="row wow fadeInDown">
<div class="col-12 text-center mt-md-5">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Founders</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">Meet Founders</h2>
</div>
<div class="col-12 col-md-8 offset-md-2">
<p class="mt-4 mt-md-3 mb-4 mb-md-5 tsb-forth-text-color text-center">
We love what we do and we do it with passion. We value the experimentation, the reformation of the message and the smart incentives.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-6 col-md-5 col-lg-4 mb-3 wow fadeInDown" data-wow-delay=".3s">
<div class="card tsb-team-block tsb-team-data-hover tsb-second-border-color">
<img class="img-fluid" src="assets/custom/images/mohiuddin_ahmed_munir.jpg" alt="Mohiuddin Ahmed Munir">
<div class="card-body">
<h5><a class="team-name text-white">Mohiuddin Ahmed Munir</a></h5>
<p class="tsb-team-pos mt-2 mb-3 italic">Co-Founder</p>
<ul class="nav tsb-team-social-links">
<li><a href="tel:+880 1711985473"><span class="tsb-iconphone tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
<li><a href="tel:+880 1811189894"><span class="tsb-iconphone tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
<li><a href="mailto:[email protected]" target="_blank"><span class="tsb-iconemail tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"><span><a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 mb-3 wow fadeInDown" data-wow-delay=".3s">
<div class="card tsb-team-block tsb-team-data-hover tsb-second-border-color">
<img class="img-fluid" src="assets/custom/images/william_amitav_dobey.svg" alt="William Amitav Dobey">
<div class="card-body">
<h5><a class="team-name text-white">William Amitav Dobey</a></h5>
<p class="tsb-team-pos mt-2 mb-3 italic">Co-Founder</p>
<ul class="nav tsb-team-social-links">
<li><a href="mailto:[email protected]"><span class="tsb-iconemail tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tsb-team mb-4">
<div class="row wow fadeInDown">
<div class="col-12 text-center mt-md-5">
<h3 class="tsb-about-top-head tsb-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Team</span>
</h3>
<h2 class="tsb-second-text-color mt-3 font-30 font-weight-bold text-center">Meet The Team</h2>
</div>
<div class="col-12 col-md-8 offset-md-2">
<p class="mt-4 mt-md-3 mb-4 mb-md-5 tsb-forth-text-color text-center">
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-6 col-md-5 col-lg-4 mb-3 wow fadeInDown" data-wow-delay=".3s">
<div class="card tsb-team-block tsb-team-data-hover tsb-second-border-color">
<img class="img-fluid" src="assets/custom/images/rubel_rana.jpg" alt="Rubel Rana">
<div class="card-body">
<h5><a class="team-name text-white">Rubel Rana</a></h5>
<p class="tsb-team-pos mt-2 mb-3 italic">Director of Sales & Marketing</p>
<ul class="nav tsb-team-social-links">
<li><a href="tel:+880 1670273967"><span class="tsb-iconphone tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
<li><a href="mailto:[email protected]" target="_blank"><span class="tsb-iconemail tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"><span><a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 mb-3 wow fadeInDown" data-wow-delay=".3s">
<div class="card tsb-team-block tsb-team-data-hover tsb-second-border-color">
<img class="img-fluid" src="assets/custom/images/nazmul_islam.svg" alt="Nazmul Islam">
<div class="card-body">
<h5><a class="team-name text-white">Nazmul Islam</a></h5>
<p class="tsb-team-pos mt-2 mb-3 italic">Executive Director</p>
<ul class="nav tsb-team-social-links">
<li><a href="tel:+880 1847245553"><span class="tsb-iconphone tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
<li><a href="mailto:[email protected]"><span class="tsb-iconemail tsb-forth-text-color tsb-fifth-border-color tsb-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>