-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1014 lines (848 loc) · 47.9 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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Talent Shade Films</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/F5.jpg" rel="icon">
<link href="assets/img/F3.jpg" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!--CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<!--Header -->
<header id="header" class="header d-flex align-items-center">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1>T-SHAfilms<span>.</span></h1>
</a>
<i class="mobile-nav-toggle mobile-nav-show bi bi-list"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none bi bi-x"></i>
<nav id="navbar" class="navbar">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#get-started">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#recent-blog-posts">Blog</a></li>
<li class="dropdown"><a href="#"><span>Terms</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="#">Videography</a></li>
<li class="dropdown"><a href="#"><span>One on one interviews</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="#">Film production</a></li>
<li><a href="#">Music video</a></li>
<li><a href="#">Video production training</a></li>
<li><a href="#">Event Coverage</a></li>
<li><a href="#">Documentaries</a></li>
</ul>
</li>
<li><a href="#">Media podcast</a></li>
<li><a href="#">Photography</a></li>
<li><a href="#">Video production internship</a></li>
</ul>
</li>
<li><a href="#footer">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="info d-flex align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<h2 data-aos="fade-down">Welcome to <span>Talent Shades Films</span></h2>
<p data-aos="fade-up">Our mission is to promote Young Talents by providing them with access to
quality production of Films, music videos and also equip them with film
production skills so they can be able to tell their own stories. By the power
of film and documentaries we work as voice of voiceless Refugees in
Kakuma and we tell the world our African way of living through Audio
visual images. We also help develop the Media ecosystem locally and
provide employment to the youths..</p>
<a data-aos="fade-up" data-aos-delay="200" href="#get-started" class="btn-get-started">Get Started</a>
</div>
</div>
</div>
</div>
<div id="hero-carousel" class="carousel slide" data-bs-ride="carousel" data-bs-interval="5000">
<div class="carousel-item active" style="background-image: url(assets/img/F1.jpg)"></div>
<div class="carousel-item" style="background-image: url(assets/img/F2.jpg)"></div>
<div class="carousel-item" style="background-image: url(assets/img/F3.jpg)"></div>
<div class="carousel-item" style="background-image: url(assets/img/F5.jpg)"></div>
<div class="carousel-item" style="background-image: url(assets/img/DSC_0704.jpg)"></div>
<a class="carousel-control-prev" href="#hero-carousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#hero-carousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- Get Started Section -->
<section id="get-started" class="get-started section-bg">
<div class="container">
<div class="row justify-content-between gy-4">
<div class="col-lg-6 d-flex align-items-center" data-aos="fade-up">
<div class="content">
<h3>TSHAfilms was founded in the year 2018 by refugees in kakuma refugee camp.</h3>
<p>It was created purposely to produce films , music videos and audio photography. And promote young talents by training and providing them with access to quality production.
<p>T-SHAfilms's Physical location is: Kenya 🇰🇪, Turkana County , Kakuma refugee Camp .</p>
</div>
</div>
<div class="col-lg-5" data-aos="fade">
<form action="forms/quote.php" method="post" class="php-email-form">
<h3>Get a quote or comment for us</h3>
<p>Your invaluable comment will be highly appreciated and the continous moral support.</p>
<div class="row gy-3">
<div class="col-md-12">
<input type="text" name="name" class="form-control" placeholder="Name" required>
</div>
<div class="col-md-12 ">
<input type="email" class="form-control" name="email" placeholder="Email" required>
</div>
<div class="col-md-12">
<input type="text" class="form-control" name="phone" placeholder="Phone" required>
</div>
<div class="col-md-12">
<textarea class="form-control" name="message" rows="6" placeholder="Message" required></textarea>
</div>
<div class="col-md-12 text-center">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your quote request has been sent successfully. Thank you!</div>
<button type="submit">Get a quote</button>
</div>
</div>
</form>
</div><!-- End Quote Form -->
</div>
</div>
</section><!-- End Get Started Section -->
<!-- =======Section 3 ======= -->
<section id="constructions" class="constructions">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Activities</h2>
<p>Brief ellucidation of our Outdoor activities to capture moments, media handling, Graduation and other related activities. </p>
</div>
<div class="row gy-4">
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="card-item">
<div class="row">
<div class="col-xl-5">
<div class="card-bg" style="background-image: url(assets/img/DSC_0704.jpg);"></div>
</div>
<div class="col-xl-7 d-flex align-items-center">
<div class="card-body">
<h4 class="card-title">Training.</h4>
<p>In person trainig sessions that regularyly on with proffesional media men from the industriess with experience in areas in media coverage.</p>
</div>
</div>
</div>
</div>
</div><!-- End Card Item -->
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="200">
<div class="card-item">
<div class="row">
<div class="col-xl-5">
<div class="card-bg" style="background-image: url(assets/img/DSC_0713.jpg);"></div>
</div>
<div class="col-xl-7 d-flex align-items-center">
<div class="card-body">
<h4 class="card-title">Graduation</h4>
<p>Validation as a measure of authencity through certification after suucessful completion of the course, there is a graduation ceremony to validate your competency.After every 4months of a cohort , students are awarded certificate of completion that qualify them for diploma.</p>
</div>
</div>
</div>
</div>
</div><!-- End Card Item -->
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="300">
<div class="card-item">
<div class="row">
<div class="col-xl-5">
<div class="card-bg" style="background-image: url(assets/img/DSC_0793.jpg);"></div>
</div>
<div class="col-xl-7 d-flex align-items-center">
<div class="card-body">
<h4 class="card-title">Fun day</h4>
<p>"Too much work without play makes Jack a dull boy", we constantly hold fun activities day to free the mind and also gives us an opportunity to extend our network with friends from the same industry to continue growing since friendship is the current currency.</p>
</div>
</div>
</div>
</div>
</div><!-- End Card Item -->
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="400">
<div class="card-item">
<div class="row">
<div class="col-xl-5">
<div class="card-bg" style="background-image: url(assets/img/DSC_0811.jpg);"></div>
</div>
<div class="col-xl-7 d-flex align-items-center">
<div class="card-body">
<h4 class="card-title">On-site practicals</h4>
<p>Our esteemed team offers continous training and support to interns in live coverage events, like video shooting, photography, audio recording and others.</p>
</div>
</div>
</div>
</div>
</div><!-- End Card Item -->
</div>
</div>
</section><!-- End activites Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Services</h2>
<p>T-SHAfilms provides extra mission based services to aid in customer service delivery</p>
</div>
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-mountain-city"></i>
</div>
<h3>Videography</h3>
<p>T-SHAfilms does the electronic capture of moving images on electronic media, such as digital cameras, videotapes, and streaming media. This includes specific methods of video editing and post-production as well.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-arrow-up-from-ground-water"></i>
</div>
<h3>One on one interviews</h3>
<p>T-SHAfilms does 1-on-1 interviews that are in person and occur between one interviewer and the interviewee. The format of these interviews is typically rather straight-forward, and this style tends to be more of what applicants are expecting when called in for an interview.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-compass-drafting"></i>
</div>
<h3>Photography</h3>
<p>Creating a timeless look, coupled with a flawless moment,Candid, Joyful and artistic moments with T-SHAfilms
Life Through the Lens.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-trowel-bricks"></i>
</div>
<h3>Video production</h3>
<p>Video production is simply everything that goes into the ideation, planning and execution of a video. Historically video production involves three phases: Pre-production, Production and Post-production.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-helmet-safety"></i>
</div>
<h3>Event Coverage</h3>
<p>At T-SHAfilms, we provide professional event live streaming & broadcasting services in Kenya for small & large events. We also provide professional video cameras and live streaming equipment with lighting gears, lapels and lavaliers for interviews & capturing sound separately.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-item position-relative">
<div class="icon">
<i class="fa-solid fa-arrow-up-from-ground-water"></i>
</div>
<h3>Documentaries</h3>
<p>A documentary film or documentary is a non-fictional motion-picture intended to "document reality, primarily for the purposes of instruction, education or maintaining a historical record".T-SHAfilms has proffesionals individual with expertise in documentaries to bring a thought to reality.</p>
<a href="#" class="readmore stretched-link">Learn more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Alt Services Section ======= -->
<section id="alt-services" class="alt-services">
<div class="container" data-aos="fade-up">
<div class="row justify-content-around gy-4">
<div class="col-lg-6 img-bg" style="background-image: url(assets/img/edit.jpg);" data-aos="zoom-in" data-aos-delay="100"></div>
<div class="col-lg-5 d-flex flex-column justify-content-center">
<h3>T-SHAfilms global experential vediography and photography production</h3>
<p>Highest standards of Film Making and Fine Art Photography.
Continuously striving for perfection.
We (T-SHAfilms) help everything stand out in a glamorously simple style that leaves you breathless.</p>
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="100">
<i class="bi bi-easel flex-shrink-0"></i>
<div>
<h4><a href="" class="stretched-link">Portfolio Galleries</a></h4>
<p>We provide prior check of the portfolio gallery to authenticate our proffesionalism</p>
</div>
</div><!-- End Icon Box -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="200">
<i class="bi bi-patch-check flex-shrink-0"></i>
<div>
<h4><a href="" class="stretched-link">Equipments rental</a></h4>
<p>Massive loaded pertinent equipments for classic production for hire(proof of competency and machine handling) and use.</p>
</div>
</div><!-- End Icon Box -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="300">
<i class="bi bi-brightness-high flex-shrink-0"></i>
<div>
<h4><a href="" class="stretched-link">Collaboration</a></h4>
<p>T-SHAfilms has been collaborating with other film productions companies to achieve stated goals. We are open for collaborations and partnerships</p>
</div>
</div><!-- End Icon Box -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="400">
<i class="bi bi-brightness-high flex-shrink-0"></i>
<div>
<h4><a href="" class="stretched-link">Smooth operation and accessiblity</a></h4>
<p>T-SHAfilms is available on all social media platforms. </p>
</div>
</div><!-- End Icon Box -->
</div>
</div>
</div>
</section><!-- End Alt Services Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features section-bg">
<div class="container" data-aos="fade-up">
<ul class="nav nav-tabs row g-2 d-flex">
<li class="nav-item col-3">
<a class="nav-link active show" data-bs-toggle="tab" data-bs-target="#tab-1">
<h4>Mp4 Song shooting</h4>
</a>
</li><!-- End tab nav item -->
<li class="nav-item col-3">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-2">
<h4>Videography production</h4>
</a><!-- End tab nav item -->
<li class="nav-item col-3">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-3">
<h4>Church service</h4>
</a>
</li><!-- End tab nav item -->
<li class="nav-item col-3">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-4">
<h4>T-SHAfils team & Burner</h4>
</a>
</li><!-- End tab nav item -->
</ul>
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="100">
<h3>MP4 songs shooting</h3>
<p class="fst-italic">
A music video, sometimes abbreviated to MV or M/V, is a video that integrates a song or an album with imagery that is produced for promotional or musical artistic purposes.
</p>
<ul>
<li><i class="bi bi-check2-all"></i> Make up the idea for your video.</li>
<li><i class="bi bi-check2-all"></i> Plan the storyboard.</li>
<li><i class="bi bi-check2-all"></i>We Prepare the equipment,Choose the location,Shoot the video,Edit your footage.</li>
</ul>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/s11.jpg" alt="" class="img-fluid">
</div>
</div>
</div><!-- End tab content item -->
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0 d-flex flex-column justify-content-center">
<h3>Videography and cinematography</h3>
<p class="fst-italic">
Videographers work on filming the world around them without getting much say in the location, art direction, or overall feeling of a scene. For example, videographers shoot events such as interviews, sports, conferences, and weddings whereas cinematographers shoot movies, television shows, and high-budget commercials.
</p>
<ul>
<li><i class="bi bi-check2-all"></i> Videography skills are the combination of photography.</li>
<li><i class="bi bi-check2-all"></i> Editing proficiency.</li>
<li><i class="bi bi-check2-all"></i> Narrative, avant-garde, and documentary. </li>
<li><i class="bi bi-check2-all"></i> With the proliferation of particular genres, film subgenres can also emerge: the legal drama, for example, is a sub-genre of drama that includes courtroom- and trial-focused films.</li>
</ul>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/s12.jpg" alt="" class="img-fluid">
</div>
</div>
</div><!-- End tab content item -->
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0 d-flex flex-column justify-content-center">
<h3>Live church service coverage</h3>
<ul>
<li><i class="bi bi-check2-all"></i>To coordinate among the sound crew and video presentation group a schedule of workers so that each service is appropriately staffed. </li>
<li><i class="bi bi-check2-all"></i>To setup necessary microphones, monitors, and other sound system equipment that is needed in each service.
</li>
<li><i class="bi bi-check2-all"></i> To save all the content for future reference </li>
</ul>
<p class="fst-italic">
Technical team are upto task to ensure continous,reliable live covergaes in all church events.
</p>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/s17.jpg" alt="" class="img-fluid">
</div>
</div>
</div><!-- End tab content item -->
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0 d-flex flex-column justify-content-center">
<h3>Talent Shades Group Photo</h3>
<p class="fst-italic">
The entire team of Talent Shades Films group photo during the T-SHAfilms launch.
</p>
<ul>
<li><i class="bi bi-check2-all"></i>Unity</li>
<li><i class="bi bi-check2-all"></i> Inclusivity</li>
<li><i class="bi bi-check2-all"></i> Network = Networth </li>
</ul>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/s18.jpg" alt="" class="img-fluid">
</div>
</div>
</div><!-- End tab content item -->
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Our Projects Section ======= -->
<section id="projects" class="projects">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Our Projects</h2>
<p>Over the years, T-SHAfilms has been focusing on being achievement oriented based on accomplishing multiple productions.</p>
</div>
<div class="portfolio-isotope" data-portfolio-filter="*" data-portfolio-layout="masonry" data-portfolio-sort="original-order">
<ul class="portfolio-flters" data-aos="fade-up" data-aos-delay="100">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-remodeling">Videography</li>
<li data-filter=".filter-construction">Shots</li>
<li data-filter=".filter-repairs">Amends</li>
<li data-filter=".filter-design">Pictrial Design</li>
</ul><!-- End Projects Filters -->
<div class="row gy-4 portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-remodeling">
<div class="portfolio-content h-100">
<img src="assets/img/edit.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/projects/remodeling-1.jpg" title="Remodeling 1" data-gallery="portfolio-gallery-remodeling" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-construction">
<div class="portfolio-content h-100">
<img src="assets/img/F1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_0979.jpg" title="Construction 1" data-gallery="portfolio-gallery-construction" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-repairs">
<div class="portfolio-content h-100">
<img src="assets/img/DSC_0992.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_1014.jpg" title="Repairs 1" data-gallery="portfolio-gallery-repairs" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-design">
<div class="portfolio-content h-100">
<img src="assets/img/DSC_1019.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_1039 1.jpg" title="Repairs 1" data-gallery="portfolio-gallery-book" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-remodeling">
<div class="portfolio-content h-100">
<img src="assets/img/F5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/s8.jpg" title="Remodeling 2" data-gallery="portfolio-gallery-remodeling" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-construction">
<div class="portfolio-content h-100">
<img src="assets/img/T1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_0979.jpg" title="Construction 2" data-gallery="portfolio-gallery-construction" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-repairs">
<div class="portfolio-content h-100">
<img src="assets/img/DSC_0837.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_0833.jpg" title="Repairs 2" data-gallery="portfolio-gallery-repairs" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-design">
<div class="portfolio-content h-100">
<img src="assets/img/DSC_0713.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/DSC_0704.jpg" title="Repairs 2" data-gallery="portfolio-gallery-book" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-remodeling">
<div class="portfolio-content h-100">
<img src="assets/img/about.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/20230204_174909.jpg" title="Remodeling 3" data-gallery="portfolio-gallery-remodeling" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-construction">
<div class="portfolio-content h-100">
<img src="assets/img/20230203_133616.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/20230203_133610.jpg" title="Construction 3" data-gallery="portfolio-gallery-construction" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-repairs">
<div class="portfolio-content h-100">
<img src="assets/img/s19.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/s13.jpg" title="Repairs 2" data-gallery="portfolio-gallery-repairs" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
<div class="col-lg-4 col-md-6 portfolio-item filter-design">
<div class="portfolio-content h-100">
<img src="assets/img/s14.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>T-SHAfilms</h4>
<p>Talent shades films productions</p>
<a href="assets/img/IMG-20230902-WA0054.jpg" title="Repairs 3" data-gallery="portfolio-gallery-book" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="project-details.html" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div>
</div><!-- End Projects Item -->
</div><!-- End Projects Container -->
</div>
</div>
</section><!-- End Our Projects Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Testimonials</h2>
<p>We work closely with our clients to make sure that all of our projects reflect their unique voice.
We are constantly pushing ourselves to ensure that each project we produce is delivered in a captivating and engaging manner. For that reason we appreciate your feedback and endorsement.</p>
</div>
<div class="slides-2 swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/.jpg" class="testimonial-img" alt="">
<h3>paul</h3>
<h4>Ceo & Founder</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Thanks T-SHAfilms. Good work,satisfied.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/.jpg" class="testimonial-img" alt="">
<h3> Wilsson</h3>
<h4>Designer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Good stuff T-SHAfilms.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/.jpg" class="testimonial-img" alt="">
<h3>Karlis</h3>
<h4>Store Owner</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
I appreciate the nice work you did for me. Thanks Thanks T-SHAfilms.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/.jpg" class="testimonial-img" alt="">
<h3> Brandon</h3>
<h4>Freelancer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Wow wow, wonderful interview, I am actually getting more likes and comments.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/.jpg" class="testimonial-img" alt="">
<h3>John </h3>
<h4>Entrepreneur</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Hi good people from T-SHAfilms. Thansk for shooting my video. Much love guys.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Recent Blog Posts Section ======= -->
<section id="recent-blog-posts" class="recent-blog-posts">
<div class="container" data-aos="fade-up">
<div class=" section-header">
<h2>Recent Blog Posts</h2>
<p>Updates on the most recent service </p>
</div>
<div class="row gy-5">
<div class="col-xl-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="post-item position-relative h-100">
<div class="post-img position-relative overflow-hidden">
<img src="assets/img/s20.jpg" class="img-fluid" alt="">
<span class="post-date">July 12</span>
</div>
<div class="post-content d-flex flex-column">
<h3 class="post-title">Graduation Ceremony</h3>
<div class="meta d-flex align-items-center">
<div class="d-flex align-items-center">
<i class="bi bi-person"></i> <span class="ps-2">T-SHAfilms</span>
</div>
<span class="px-3 text-black-50">/</span>
<div class="d-flex align-items-center">
<i class="bi bi-folder2"></i> <span class="ps-2">Passout event</span>
</div>
</div>
<hr>
<a href="#" class="readmore stretched-link"><span>Read More</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div><!-- End post item -->
<div class="col-xl-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="post-item position-relative h-100">
<div class="post-img position-relative overflow-hidden">
<img src="assets/img/s5.jpg" class="img-fluid" alt="">
<span class="post-date">July 17</span>
</div>
<div class="post-content d-flex flex-column">
<h3 class="post-title">Night video shoot</h3>
<div class="meta d-flex align-items-center">
<div class="d-flex align-items-center">
<i class="bi bi-person"></i> <span class="ps-2">T-SHAfilms</span>
</div>
<span class="px-3 text-black-50">/</span>
<div class="d-flex align-items-center">
<i class="bi bi-folder2"></i> <span class="ps-2">videography</span>
</div>
</div>
<hr>
<a href="#" class="readmore stretched-link"><span>Read More</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div><!-- End post item -->
<div class="col-xl-4 col-md-6">
<div class="post-item position-relative h-100" data-aos="fade-up" data-aos-delay="300">
<div class="post-img position-relative overflow-hidden">
<img src="assets/img/s8.jpg" class="img-fluid" alt="">
<span class="post-date">September 05</span>
</div>
<div class="post-content d-flex flex-column">
<h3 class="post-title">Outdoor interview</h3>
<div class="meta d-flex align-items-center">
<div class="d-flex align-items-center">
<i class="bi bi-person"></i> <span class="ps-2">T-SHAfilms</span>
</div>
<span class="px-3 text-black-50">/</span>
<div class="d-flex align-items-center">
<i class="bi bi-folder2"></i> <span class="ps-2">Economics</span>
</div>
</div>
<hr>
<a href="#" class="readmore stretched-link"><span>Read More</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div><!-- End post item -->
</div>
</div>
</section>
<!-- End Recent Blog Posts Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-content position-relative">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer-info">
<h3>TALENT SHADES FILMS</h3>
<p>
TURKANA <br>
NY 535022, KENYA<br><br>
<strong>Phone:</strong> +254 ....<br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links d-flex mt-3">
<a href="#" class="d-flex align-items-center justify-content-center"><i class="bi bi-twitter"></i></a>
<a href="#" class="d-flex align-items-center justify-content-center"><i class="bi bi-facebook"></i></a>
<a href="#" class="d-flex align-items-center justify-content-center"><i class="bi bi-instagram"></i></a>
<a href="#" class="d-flex align-items-center justify-content-center"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div><!-- End footer info column-->
<div class="col-lg-2 col-md-3 footer-links">
<h4>Useful Links</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Terms of service</a></li>
<li><a href="#">Privacy policy</a></li>
</ul>
</div><!-- End footer links column-->
<div class="col-lg-2 col-md-3 footer-links">
<h4>Our Services</h4>
<ul>
<li><a href="#">Videography</a></li>
<li><a href="#">Photography</a></li>
<li><a href="#">Documentaries</a></li>
<li><a href="#">Podcasts and 1 on 1 interviews</a></li>
<li><a href="#">Song videos production</a></li>
</ul>
</div><!-- End footer links column-->
<div class="col-lg-2 col-md-3 footer-links">
<h4></h4>
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
</div><!-- End footer links column-->
<div class="col-lg-2 col-md-3 footer-links">
<h4>T-SHAfilms Productions</h4>
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
</div><!-- End footer links column-->
</div>
</div>
</div>
<div class="footer-legal text-center position-relative">
<div class="container">
<div class="copyright">
© Copyright <strong><span>peacetekaITsolutions</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- Licensing information: https://bootstrapmade.com/license/ -->
Designed by <a href="https://bootstrapmade.com/">peacetekaITsolutions</a>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->