-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex-sw.html
More file actions
1479 lines (1464 loc) · 104 KB
/
index-sw.html
File metadata and controls
1479 lines (1464 loc) · 104 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
<!-- Change the value of lang="en" attribute if your website's language is not English.
You can find the code of your language here - https://www.w3schools.com/tags/ref_language_codes.asp -->
<!DOCTYPE html>
<html lang='sw'>
<head>
<title>Programu ya Manukuu ya Moja kwa Moja ya Mkutano, na BeAware</title>
<meta name="description" content="Manukuu ya Moja kwa Moja ya Mkutano kwa Viziwi na BeAware">
<meta charset="utf-8">
<meta name="author" content="Saamer Mansoor">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-itunes-app" content="app-id=6450253525, app-argument=web">
<meta name="keywords" content="Viziwi, HoH, HardofHearing, Ngumu, Kusikia, Mratibu, Android, iPhone, iOS, Programu, Tovuti" />
<link rel="canonical" href="https://conferencecaptioning.com/index-sw.html">
<meta property="og:site_name" content="Manukuu ya Moja kwa Moja ya Mkutano kwa Viziwi na BeAware">
<!-- Twitter Meta Tags -->
<link rel="alternate" hreflang="x-default" href="https://conferencecaptioning.com" />
<link rel="alternate" hreflang="en" href="https://conferencecaptioning.com" />
<link rel="alternate" hreflang="es" href="https://conferencecaptioning.com/index-es.html" />
<link rel="alternate" hreflang="fr" href="https://conferencecaptioning.com/index-fr.html" />
<link rel="alternate" hreflang="pt" href="https://conferencecaptioning.com/index-pt.html" />
<link rel="alternate" hreflang="ar" href="https://conferencecaptioning.com/index-ar.html" />
<link rel="alternate" hreflang="ru" href="https://conferencecaptioning.com/index-ru.html" />
<link rel="alternate" hreflang="de" href="https://conferencecaptioning.com/index-de.html" />
<link rel="alternate" hreflang="uk" href="https://conferencecaptioning.com/index-uk.html" />
<link rel="alternate" hreflang="hi" href="https://conferencecaptioning.com/index-hi.html" />
<link rel="alternate" hreflang="ur" href="https://conferencecaptioning.com/index-ur.html" />
<link rel="alternate" hreflang="yo" href="https://conferencecaptioning.com/index-yo.html" />
<link rel="alternate" hreflang="id" href="https://conferencecaptioning.com/index-id.html" />
<link rel="alternate" hreflang="it" href="https://conferencecaptioning.com/index-it.html" />
<link rel="alternate" hreflang="ja" href="https://conferencecaptioning.com/index-ja.html" />
<link rel="alternate" hreflang="sw" href="https://conferencecaptioning.com/index-sw.html" />
<link rel="alternate" hreflang="pl" href="https://conferencecaptioning.com/index-pl.html" />
<link rel="alternate" hreflang="vi" href="https://conferencecaptioning.com/index-vi.html" />
<link rel="alternate" hreflang="ro" href="https://conferencecaptioning.com/index-ro.html" />
<link rel="alternate" hreflang="zh-Hant" href="https://conferencecaptioning.com/index-zh-hant.html" />
<link rel="alternate" hreflang="zh" href="https://conferencecaptioning.com/index-zh.html" />
<link rel="alternate" hreflang="hr" href="https://conferencecaptioning.com/index-hr.html" />
<link rel="alternate" hreflang="fa" href="https://conferencecaptioning.com/index-fa.html" />
<link rel="alternate" hreflang="nl" href="https://conferencecaptioning.com/index-nl.html" />
<link rel="alternate" hreflang="ko" href="https://conferencecaptioning.com/index-ko.html" />
<link rel="alternate" hreflang="sv" href="https://conferencecaptioning.com/index-sv.html" />
<link rel="alternate" hreflang="hu" href="https://conferencecaptioning.com/index-hu.html" />
<link rel="alternate" hreflang="sq" href="https://conferencecaptioning.com/index-sq.html" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Manukuu ya Moja kwa Moja ya Mkutano na BeAware">
<meta name="twitter:description" content="Programu za Manukuu ya Moja kwa Moja ya Kongamano la Asili kwa ajili ya kuwahudumia Viziwi na Wagumu wa kusikia">
<meta name="twitter:image" content="https://conferencecaptioning.com/images/author.png">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Manukuu ya Moja kwa Moja ya Mkutano na BeAware">
<meta itemprop="description" content="Programu za Manukuu ya Moja kwa Moja ya Kongamano la Asili kwa ajili ya kuwahudumia Viziwi na Wagumu wa kusikia">
<meta itemprop="image" content="https://conferencecaptioning.com/images/author.png">
<!-- Facebook Open Graph -->
<meta property="og:url" content='https://conferencecaptioning.com/index-sw.html'>
<meta property="og:type" content="website">
<meta property="og:title" content="Manukuu ya Moja kwa Moja ya Mkutano kwa Viziwi na BeAware">
<meta property="og:description" content="Programu za Manukuu ya Moja kwa Moja ya Kongamano la Asili kwa ajili ya kuwahudumia Viziwi na Wagumu wa kusikia">
<meta property="og:image" content="https://conferencecaptioning.com/images/author.png">
<meta name="robots" content="noodp,noydir">
<!-- Facebook Open Graph end -->
<link rel="apple-touch-icon" sizes="57x57" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<!-- <link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png"> Need this low-->
<link rel="manifest" href="favicon/site.webmanifest">
<!-- Favicons -->
<link rel="shortcut icon" href="images/favicon.png">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-responsive.css">
<link rel="stylesheet" href="css/vertical-rhythm.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/splitting.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-632LHDVZTW">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-632LHDVZTW');
</script>
<!-- Meta Pixel Code -->
<!-- <script>!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '210485784445970'); fbq('track', 'PageView');</script><noscript> <img height="1" width="1" src="https://www.facebook.com/tr?id=210485784445970&ev=PageView&noscript=1"/></noscript> -->
<!-- End Meta Pixel Code -->
</head>
<body class="appear-animate">
<!-- Page Loader -->
<div class="page-loader dark">
<div class="loader">
Inapakia...
</div>
</div>
<!-- End Page Loader -->
<!-- Ruka hadi Yaliyomo -->
<a href="#main" class="btn skip-to-content">
Ruka hadi Yaliyomo
</a>
<!-- End Ruka hadi Yaliyomo -->
<!-- Page Wrap -->
<div class="page bg-dark light-content" id="top">
<!-- Navigation panel -->
<nav class="main-nav dark transparent stick-fixed wow-menubar">
<div class="full-wrapper relative clearfix">
<!-- Logo ( * your text or image into link tag *) -->
<div class="nav-logo-wrap local-scroll">
<a href="index.html" class="logo">
<img src="images/logo-white.svg" alt="Conference Captioning company logo" width="188" height="37" />
</a>
</div>
<!-- Mobile Menyu Button -->
<div class="mobile-nav" role="button" tabindex="0">
<i class="fa fa-bars">
</i>
<span class="sr-only">
Menyu
</span>
</div>
<!-- Main Menyu -->
<div class="inner-nav desktop-nav">
<ul class="clearlist scroll-nav local-scroll">
<li class="active">
<a href="#home">
Nyumbani
</a>
</li>
<li>
<a href="#about">
Kuhusu
</a>
</li>
<li>
<a href="#features">
Vipengele
</a>
</li>
<li>
<a href="#pricing">
Kuweka bei
</a>
</li>
<li>
<a href="#contact">
Wasiliana
</a>
</li>
<!-- Languages -->
<li>
<a href="#" class="mn-has-sub"><i class="fa-solid fa-earth-americas"></i>Swahili <i class="fa fa-angle-down"></i></a>
<ul class="mn-sub">
<li><a href="index.html">English</a></li>
<li><a href="index-es.html">Español</a></li>
<li><a href="index-fr.html">Français</a></li>
<li><a href="index-pt.html">Português</a></li>
<li><a href="index-ar.html">العربية</a></li>
<li><a href="index-ru.html">Русский</a></li>
<li><a href="index-de.html">Deutsch</a></li>
<li><a href="index-uk.html">Українська</a></li>
<li><a href="index-hi.html">हिन्दी</a></li>
<li><a href="index-ur.html">اردو</a></li>
<li><a href="index-yo.html">Yorùbá</a></li>
<li><a href="index-id.html">Bahasa Indonesia</a></li>
<li><a href="index-it.html">Italiano</a></li>
<li><a href="index-ja.html">日本語</a></li>
<li><a href="index-sw.html">Kiswahili</a></li>
<li><a href="index-pl.html">Polski</a></li>
<li><a href="index-vi.html">Tiếng Việt</a></li>
<li><a href="index-ro.html">Română</a></li>
<li><a href="index-zh-hant.html">繁體中文</a></li>
<li><a href="index-zh.html">简体中文</a></li>
<li><a href="index-hr.html">Hrvatski</a></li>
<li><a href="index-fa.html">فارسی</a></li>
<li><a href="index-nl.html">Nederlands</a></li>
<li><a href="index-ko.html">한국어</a></li>
<li><a href="index-sv.html">Svenska</a></li>
<li><a href="index-hu.html">Magyar</a></li>
<li><a href="index-sq.html">Shqip</a></li>
</ul>
</li>
<li>
<a href="https://app.conferencecaptioning.com?lang=sw">
<span class="btn btn-mod btn-w btn-circle">
<i class="fa fa-download">
</i>
Jaribu Sasa
</span>
</a>
</li>
</ul>
</div>
<!-- End Main Menyu -->
</div>
</nav>
<!-- End Navigation panel -->
<main id="main">
<!-- Nyumbani Section -->
<div class="home-section relative bg-dark light-content" id="home">
<!-- Fullwidth Slider -->
<div class="fullwidth-gallery-wrapper">
<div class="fullwidth-gallery">
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-22.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-18.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-15.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
</div>
</div>
<!-- End Fullwidth Slider -->
<div class="fullwidth-galley-content">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100">
<!-- Hero Content -->
<div class="home-content text-start">
<div class="row">
<div class="col-md-9 col-lg-7">
<h1 class="hs-line-3 mb-30 mb-xs-20 wow fadeInUpShort" data-wow-delay=".1s">
UFIKIKAJI USIO NA MFUO KWA WOTE
</h1>
<h2 class="hs-line-5 mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Wezesha maisha yako ya kibinafsi
<span class="sr-only">
matukio, mikutano, mahubiri
</span>
<span data-period="2800" data-type='[ "matukio", "mikutano", "mahubiri"]' class="typewrite" aria-hidden="true">
<span class="wrap">
</span>
</span>
</h2>
<h3 class="hs-line-6 mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Rahisisha mawasiliano ukitumia huduma za unukuzi na tafsiri katika wakati halisi, ukitimiza kwa bei nafuu bila maunzi ya ziada.
</h3>
<div class="local-scroll wow fadeInUpShort" data-wow-delay=".3s">
<a href="https://conferencecaptioning.com/portal" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Pata onyesho
</a>
<a href="https://app.conferencecaptioning.com?lang=sw" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Anza bila malipo
</a>
</div>
<br />
<h3 class="section-more white mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Pata onyesho la programu yetu inayolipishwa, au anza na zana zisizolipishwa
</h3>
</div>
</div>
</div>
<!-- End Hero Content -->
<!-- Hero Content -->
<!-- <div class="home-content">
<h1 class="hs-line-3 mb-40 mb-xs-20 wow fadeInUpShort" data-wow-delay=".1s">Rhythm Template</h1>
<h2 class="hs-line-2 mb-70 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">Branding, Design and Engineering</h2>
<div class="local-scroll mb-20 wow fadeInUpShort" data-wow-delay=".3s">
<a href="#about" class="btn btn-mod btn-border-w btn-large btn-round mx-md-1">Learn More</a>
<a href="pages-services-1-dark.html" class="btn btn-mod btn-w btn-large btn-round mx-md-1">Anza Project</a>
</div>
</div> -->
<!-- End Hero Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap wow fadeInUpShort" data-wow-offset="0">
<a href="#about" class="scroll-down">
<i class="scroll-down-icon">
</i>
<span class="sr-only">
Tembeza hadi sehemu inayofuata
</span>
</a>
</div>
<!-- End Scroll Down -->
</div>
</div>
</div>
<!-- End Nyumbani Section -->
<!-- Process Section -->
<section class="page-section bg-dark light-content">
<div class="container relative">
<!-- Grid -->
<div class="row">
<!-- Text Item -->
<div class="col-md-12 col-lg-3">
<div class="align-left">
<h2 class="work-process-heading mt-0">
Maadili
</h2>
<p class="work-process-description">
BAADAYE YA UPATIKANAJI WA VIZIWI
</p>
</div>
</div>
<!-- End Text Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M15.551 14.703c.474 1.372 2.049 2.459 3.801 1.868l.021-.007c1.565-.544 2.391-2.242 1.854-3.807-.187-.546-.425-1.137-.695-1.757h-5.967c.299 1.366.625 2.647.986 3.703m2.264-9.232l-4.051 1.388c.183 1.037.379 2.103.59 3.141h5.726c-.655-1.404-1.445-2.94-2.265-4.529m.492-1.226c1.524 2.958 3.086 5.915 3.866 8.187.598 1.744-.045 3.895-2.028 4.874l1.211 3.529c.291.812 1.322.926 2.392.808l.252.735-4.728 1.622-.272-.788c.903-.479 1.688-1.215 1.41-2.054l-1.208-3.52c-2.162.439-3.994-.861-4.596-2.61-.791-2.304-1.405-5.566-1.976-8.837l5.677-1.946zm-8.872 6.755h-5.967c-.27.62-.508 1.211-.695 1.757-.536 1.565.289 3.263 1.854 3.807l.021.007c1.753.591 3.328-.496 3.801-1.868.362-1.056.688-2.337.986-3.703m-5.515-1h5.726c.211-1.038.407-2.104.591-3.141l-4.051-1.388c-.821 1.589-1.611 3.125-2.266 4.529m7.45-3.809c-.571 3.271-1.185 6.533-1.976 8.837-.602 1.749-2.434 3.049-4.596 2.61l-1.208 3.52c-.278.839.507 1.575 1.41 2.054l-.271.788-4.729-1.622.252-.735c1.07.118 2.102.004 2.392-.808l1.211-3.529c-1.983-.979-2.625-3.13-2.028-4.874.78-2.272 2.342-5.229 3.867-8.187l5.676 1.946zm7.13 7.811c.414 0 .75.336.75.75 0 .413-.336.75-.75.75s-.75-.337-.75-.75c0-.414.336-.75.75-.75m-14.5.248c0 .414.336.75.75.75s.75-.336.75-.75c0-.413-.336-.75-.75-.75s-.75.337-.75.75m3.25-2.25c.414 0 .75.337.75.75 0 .414-.336.75-.75.75s-.75-.336-.75-.75c0-.413.336-.75.75-.75m10.5-.499c.414 0 .75.336.75.751 0 .413-.336.75-.75.75s-.75-.337-.75-.75c0-.415.336-.751.75-.751m-5.249-7.977v-3.023c0-.277-.223-.5-.5-.5-.275 0-.499.223-.499.5v3.023c0 .276.224.5.499.5.277 0 .5-.224.5-.5m1.932.462l1.641-2.79c.142-.238.062-.545-.176-.685-.239-.139-.544-.062-.684.177l-1.643 2.79c-.14.238-.06.545.176.685.08.047.167.069.254.069.172 0 .339-.088.432-.246m-4.552.246c-.171 0-.337-.088-.432-.246l-1.642-2.79c-.14-.238-.061-.545.177-.685.237-.14.544-.061.685.177l1.643 2.79c.139.238.061.545-.178.685-.08.047-.166.069-.253.069">
</path>
</svg>
</div>
<h3 class="work-process-title">
Kuhakikisha hakuna anayeachwa nyuma
</h3>
</div>
</div>
<!-- End Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M6 3.447h-1v-1.447h19v16h-7.731l2.731 4h-1.311l-2.736-4h-1.953l-2.736 4h-1.264l2.732-4h-2.732v-1h8v-1h3v1h3v-14h-17v.447zm2.242 17.343c-.025.679-.576 1.21-1.256 1.21-.64 0-1.179-.497-1.254-1.156l-.406-4.034-.317 4.019c-.051.656-.604 1.171-1.257 1.171-.681 0-1.235-.531-1.262-1.21l-.262-6.456-.308.555c-.241.437-.8.638-1.265.459-.404-.156-.655-.538-.655-.951 0-.093.012-.188.039-.283l1.134-4.098c.17-.601.725-1.021 1.351-1.021h4.096c.511 0 1.012-.178 1.285-.33.723-.403 2.439-1.369 3.136-1.793.394-.243.949-.147 1.24.217.32.396.286.95-.074 1.297l-3.048 2.906c-.375.359-.595.849-.617 1.381-.061 1.397-.3 8.117-.3 8.117zm-5.718-10.795c-.18 0-.34.121-.389.294-.295 1.04-1.011 3.666-1.134 4.098l1.511-2.593c.172-.295.623-.18.636.158l.341 8.797c.01.278.5.287.523.002 0 0 .269-3.35.308-3.944.041-.599.449-1.017.992-1.017.547.002.968.415 1.029 1.004.036.349.327 3.419.385 3.938.043.378.505.326.517.022 0 0 .239-6.725.3-8.124.033-.791.362-1.523.925-2.061l3.045-2.904c-.661.492-2.393 1.468-3.121 1.873-.396.221-1.07.457-1.772.457h-4.096zm16.476 1.005h-5v-1h5v1zm2-2h-7v-1h7v1zm-15.727-4.994c-1.278 0-2.315 1.038-2.315 2.316 0 1.278 1.037 2.316 2.315 2.316s2.316-1.038 2.316-2.316c0-1.278-1.038-2.316-2.316-2.316zm0 1c.726 0 1.316.59 1.316 1.316 0 .726-.59 1.316-1.316 1.316-.725 0-1.315-.59-1.315-1.316 0-.726.59-1.316 1.315-1.316zm15.727 1.994h-7v-1h7v1z">
</path>
</svg>
</div>
<h3 class="work-process-title">
Kukuza Ujumuishi
</h3>
</div>
</div>
<!-- End Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M20 15c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m-3 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m-3 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m5.415 4.946c-1 .256-1.989.482-3.324.482-3.465 0-7.091-2.065-7.091-5.423 0-3.128 3.14-5.672 7-5.672 3.844 0 7 2.542 7 5.672 0 1.591-.646 2.527-1.481 3.527l.839 2.686-2.943-1.272zm-13.373-3.375l-4.389 1.896 1.256-4.012c-1.121-1.341-1.909-2.665-1.909-4.699 0-4.277 4.262-7.756 9.5-7.756 5.018 0 9.128 3.194 9.467 7.222-1.19-.566-2.551-.889-3.967-.889-4.199 0-8 2.797-8 6.672 0 .712.147 1.4.411 2.049-.953-.126-1.546-.272-2.369-.483m17.958-1.566c0-2.172-1.199-4.015-3.002-5.21l.002-.039c0-5.086-4.988-8.756-10.5-8.756-5.546 0-10.5 3.698-10.5 8.756 0 1.794.646 3.556 1.791 4.922l-1.744 5.572 6.078-2.625c.982.253 1.932.407 2.85.489 1.317 1.953 3.876 3.314 7.116 3.314 1.019 0 2.105-.135 3.242-.428l4.631 2-1.328-4.245c.871-1.042 1.364-2.384 1.364-3.75">
</path>
</svg>
</div>
<h3 class="work-process-title">
Kuvunja vikwazo vya mawasiliano
</h3>
</div>
</div>
<!-- End Item -->
</div>
<!-- End Grid -->
</div>
</section>
<!-- End Process Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Kuhusu Section -->
<section class="page-section bg-dark light-content" id="about">
<div class="container relative">
<div class="mb-140 mb-sm-70">
<div class="row section-text">
<div class="col-md-12 col-lg-4 mb-md-50 mb-xs-30">
<div class="lead-alt wow linesAnimIn" data-splitting="lines">
Matukio ya ana kwa ana yanahitaji ufikivu
</div>
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
Asilimia 10 ya watu ni Viziwi au Wagumu wa Kusikia. Kwa sababu tu wanaweza wasilalamike kuhusu ukosefu wa ufikiaji haimaanishi kuwa hawapo. Kutengwa kunaweza kusababisha hisia za kufadhaika na kukatwa kutoka kwa mazungumzo.
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
Manukuu ya Mkutano yanalenga kupunguza ukosefu wa usawa kwa kufanya ujumuishi na ushirikiano kuwa rahisi kutekeleza na kufikia. Fanya ufikivu kuwa jambo lisilofikiriwa, si wazo la baadaye
</div>
</div>
</div>
<!-- <div class="row"> -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".1s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-1.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-1.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Hello & Welcome!
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">Wasifu wa Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Wasifu wa Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Tomas Maller
</div>
<div class="team-item-role">
Art director
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".2s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-2.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-2.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Nice to meet!
</p>
<p>
Curabitur augue, nec finibus mauris pretium eu. Duis placerat ex gravida nibh tristique porta.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">Wasifu wa Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Wasifu wa Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Steeve Anders
</div>
<div class="team-item-role">
Product designer
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".3s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-3.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-3.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Whats Up!
</p>
<p>
Adipiscing elit curabitur eu adipiscing lacus eu adipiscing lacus, a iaculis diam.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">Wasifu wa Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Wasifu wa Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Adam Johnson
</div>
<div class="team-item-role">
Developer
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- </div> -->
</div>
</section>
<!-- End Kuhusu Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Vipengele Section -->
<section class="page-section bg-dark light-content" id="features">
<div class="container relative">
<div class="text-center mb-80 mb-sm-50">
<h2 class="section-title">
Vipengele
</h2>
<p class="section-title-descr">
Tunatoa suluhu bora za ufikivu wa matukio.
</p>
</div>
<!-- Services Grid -->
<div class="row services-grid">
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay="0" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M13.5 20c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-10.551 4c-.598 0-2.429-1.754-2.747-4.304-.424-3.414 2.124-5.593 4.413-5.87.587-1.895 2.475-4.684 6.434-4.77.758-1.982 3.409-4.507 6.84-3.186 1.647.634 3.101 2.101 3.705 3.737.231.624-.71.965-.937.347-.51-1.378-1.737-2.615-3.127-3.151-2.577-.99-4.695.731-5.422 2.298 1.107.12 2.092.455 2.755.889.909.594 1.473 1.558 1.508 2.577.031.889-.33 1.687-.991 2.187-.654.496-1.492.643-2.298.404-.966-.286-1.748-1.076-2.143-2.169-.287-.793-.384-1.847-.178-2.921-3.064.185-4.537 2.306-5.075 3.742 1.18.102 2.211.574 2.831 1.012.959.676 1.497 1.6 1.513 2.599.015.859-.363 1.664-1.011 2.155-.608.46-1.535.599-2.363.348-.961-.289-1.7-1.041-2.079-2.118-.255-.723-.375-1.776-.204-2.919-1.631.361-3.512 1.995-3.178 4.685.18 1.448 1.008 2.888 2.015 3.502.43.261.242.926-.261.926zm10.551-1c-.552 0-1-.448-1-1s.448-1 1-1 1 .448 1 1-.448 1-1 1zm8.011-6.801l2.489.459-1.744 1.833.333 2.509-2.283-1.092-2.283 1.092.333-2.509-1.744-1.833 2.489-.459 1.205-2.225 1.205 2.225zm-1.759.897l-1.143.21.801.843-.153 1.152 1.049-.501 1.049.501-.153-1.152.801-.843-1.143-.21-.554-1.022-.554 1.022zm-14.345-2.3c-.202 1.024-.128 1.993.113 2.678.347.984.966 1.355 1.424 1.492.604.183 1.175.036 1.472-.187.388-.294.624-.808.614-1.34-.011-.673-.398-1.313-1.09-1.801-.545-.385-1.479-.803-2.533-.842zm6.373-4.716c-.226 1.018-.11 1.99.099 2.569.287.79.828 1.356 1.486 1.55.501.148 1.014.06 1.411-.242.398-.301.615-.795.596-1.355-.025-.705-.409-1.353-1.056-1.775-.511-.334-1.448-.657-2.536-.747zm-5.812-7.369l3.032.558-2.124 2.234.405 3.057-2.781-1.331-2.781 1.331.405-3.057-2.124-2.234 3.032-.558 1.468-2.711 1.468 2.711zm-2.285.897l-1.686.31 1.182 1.243-.226 1.7 1.547-.74 1.547.74-.226-1.7 1.182-1.243-1.686-.31-.817-1.508-.817 1.508zm17.817-3.608c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5zm0 4c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5 1.5.672 1.5 1.5-.672 1.5-1.5 1.5z"/> -->
<path d="M5 22h4v-3h-9v-18h24v18h-10v3h4v1h-13v-1zm5-3v3h3v-3h-3zm13-17h-22v16h22v-16z">
</path>
</svg>
</div>
<h3 class="services-title">
Manukuu
</h3>
<div class="services-descr">
Njia ya haraka zaidi ya kuongeza manukuu ya moja kwa moja kwa tukio lolote. Baada ya sekunde 15, tengeneza mtiririko wako na uwaruhusu waliohudhuria wajiunge na utiririshaji wa manukuu ya tukio lako
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".1s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M5 22h4v-3h-9v-18h24v18h-10v3h4v1h-13v-1zm5-3v3h3v-3h-3zm13-17h-22v16h22v-16z"/> -->
<path d="M15 7h4v5h5v6h-5v5h-19v-21h15v5zm-5 11h-9v4h9v-4zm8 0h-7v4h7v-4zm-11-5h-6v4h6v-4zm9 0h-8v4h8v-4zm7 0h-6v4h6v-4zm-12-5v4h7v-4h-7zm-1 0h-9v4h9v-4zm-3-5h-6v4h6v-4zm7 0h-6v4h6v-4z">
</path>
</svg>
</div>
<h3 class="services-title">
Ubinafsishaji
</h3>
<div class="services-descr">
Unda ukurasa maalum wa kutiririsha ambao waliohudhuria wanaweza kujiunga bila kupakua programu zozote kwa kutumia msimbo wako wa QR pekee
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".2s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M24 23h-20c-2.208 0-4-1.792-4-4v-15.694c.313-1.071 1.285-2.306 3-2.306 1.855 0 2.769 1.342 2.995 2.312l.005 1.688h18v18zm-1-17h-17v13s-.665-1-2-1c-1.104 0-2 .896-2 2s.896 2 2 2h19v-16zm-18-2.68c-.427-.971-1.327-1.325-2-1.32-.661.005-1.568.3-2 1.32v16.178c.394-1.993 2.245-2.881 4-2.401v-13.777zm15 15.68h-12v-10h12v10zm-8-9h-3v8h10v-4h-2v3h-1v-3h-3v3h-1v-7zm7 0h-6v3h6v-3z"/> -->
<path d="M9.484 15.696l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm10.516 11.304h-8v1h8v-1zm0-5h-8v1h8v-1zm0-5h-8v1h8v-1zm4-5h-24v20h24v-20zm-1 19h-22v-18h22v18z">
</path>
</svg>
</div>
<h3 class="services-title">
Tafsiri
</h3>
<div class="services-descr">
Tafsiri kwa usahihi katika muda halisi hadi zaidi ya lugha 25, pamoja na ukuzaji wa sauti mahususi kwa Wagumu wa Kusikia.
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".0s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M9.484 15.696l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm10.516 11.304h-8v1h8v-1zm0-5h-8v1h8v-1zm0-5h-8v1h8v-1zm4-5h-24v20h24v-20zm-1 19h-22v-18h22v18z"/>
</svg>
</div>
<h3 class="services-title">Research</h3>
<div class="services-descr">
Maecenas volutpat, diam enime volutpa. Cras luctus interdum sodales. Quisque quis odio dui. Sedes amet neque malesuada, lobortis commodo magna tese.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".1s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M15 7h4v5h5v6h-5v5h-19v-21h15v5zm-5 11h-9v4h9v-4zm8 0h-7v4h7v-4zm-11-5h-6v4h6v-4zm9 0h-8v4h8v-4zm7 0h-6v4h6v-4zm-12-5v4h7v-4h-7zm-1 0h-9v4h9v-4zm-3-5h-6v4h6v-4zm7 0h-6v4h6v-4z"/>
</svg>
</div>
<h3 class="services-title">Development</h3>
<div class="services-descr">
Fusce aliquet quam eget neque ultrices elementm. Nullarec posuere felis id arcu blandit sagittis sit amet lorem nectus ultricies ullamcorper vulputate.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".2s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M14.889 23.652c-.923.227-1.888.348-2.881.348-6.627 0-12.008-5.377-12.008-12s5.381-12 12.008-12c6.628 0 12.009 5.377 12.009 12 0 1.027-.13 2.023-.373 2.975l-.965-.34c.21-.847.321-1.732.321-2.643 0-6.066-4.929-10.992-11-10.992s-11 4.926-11 10.992c0 6.067 4.929 10.993 11 10.993.887 0 1.751-.106 2.577-.304l.312.971zm-2.889-13.652c-1.104 0-2 .896-2 2s.896 2 2 2c.28 0 .546-.057.788-.162l3.06 9.525 2.174-3.622 4.116 4.259 1.879-1.828-4.087-4.216 3.671-1.926-9.694-3.426c.06-.19.093-.393.093-.604 0-1.104-.896-2-2-2zm1.768 3.615l7.333 2.597-2.823 1.481 4.324 4.461-.445.431-4.324-4.473-1.716 2.86-2.349-7.357zm.049 6.692c-.583.126-1.188.193-1.809.193-4.691 0-8.5-3.809-8.5-8.5s3.809-8.5 8.5-8.5c4.692 0 8.5 3.809 8.5 8.5 0 .619-.066 1.222-.192 1.803l-.959-.337c.094-.474.143-.964.143-1.466 0-4.139-3.361-7.5-7.5-7.5-4.139 0-7.5 3.361-7.5 7.5 0 4.139 3.361 7.5 7.5 7.5.517 0 1.022-.052 1.51-.152l.307.959zm-1.076-3.36c-.239.035-.484.053-.733.053-2.759 0-5-2.24-5-5s2.241-5 5-5c2.76 0 5 2.24 5 5 0 .212-.013.421-.039.626l-.979-.345.01-.281c0-2.208-1.792-4-4-4s-4 1.792-4 4 1.792 4 4 4l.43-.023.311.97zm-.741-5.947c.552 0 1 .448 1 1s-.448 1-1 1-1-.448-1-1 .448-1 1-1z"/>
</svg>
</div>
<h3 class="services-title">Production</h3>
<div class="services-descr">
Verge maximus ligula semper metusere pellentesque mattis. Integer non dapibus diam, eleifend. Praesent sed nisi eleifend, fermentum orci sit lorem amet.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
</div>
<!-- End Services Grid -->
</div>
</section>
<!-- End Vipengele Section -->
<!-- Ushuhuda Section -->
<section class="page-section bg-dark bg-dark-alfa-50 bg-scroll light-content" data-background="images/full-width-images/section-bg-2.jpg" id="testimonials">
<div class="container relative">
<div class="row">
<div class=" col-lg-8 offset-lg-2 wow fadeInUpShort">
<div class="text-center mb-50 mb-sm-20">
<h2 class="section-title">
Nini Wateja Wanasema
</h2>
</div>
<div class="text-slider">
<!-- Slide Item -->
<div>
<blockquote class="testimonial">
<p>
Rahisi kutumia na rahisi kujumuisha katika usanidi wetu uliopo.
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
— Michael Goggins, Meneja wa IT. Chuo Kikuu cha Jimbo la Michigan
</footer>
</blockquote>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div>
<blockquote class="testimonial">
<p>
Inaonekana kama jambo lisilofaa kwa kila mkutano kutumia teknolojia hii kufanya maudhui ya kusikilizwa yafikiwe na wahudhuriaji wote.
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
- Tom Phillips, Mshauri wa Programu. Apple Developer Academy Detroit
</footer>
</blockquote>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<!-- <div>
<blockquote class="testimonial">
<p>
Phasellus luctus commodo ullamcorper a posuere rhoncus commodo elit aenean congue, risus utaliquam dapibus lorem ipsum dolor. Thanks!
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
— John Doe, doodle inc.
</footer>
</blockquote>
</div> -->
<!-- End Slide Item -->
</div>
</div>
</div>
</div>
</section>
<!-- End Ushuhuda Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Call Action Section -->
<section class="page-section bg-dark light-content" id="demo">
<div class="container relative">
<div class="row">
<!-- Images -->
<div class="col-lg-7 mb-md-60 mb-xs-30">
<div class="call-action-2-images">
<div class="call-action-2-image-1">
<img src="images/promo-3.png" alt="Screenshot of the app on the speaker or organizer's device, containing the event QR code and transcript" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="255" />
</div>
<div class="call-action-2-image-2">
<img src="images/promo-4.jpg" alt="Picture of a venue sharing the QR code of the transcript stream, telling Deaf attendees to scan it" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="134" />
</div>
<div class="call-action-2-image-3">
<img src="images/promo-5.jpg" alt="Picture of an attendee's phone contianing the webpage after they scanned the QR code" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="0" />
</div>
</div>
</div>
<!-- End Images -->
<!-- Text -->
<div class="col-lg-5 wow fadeInUpShort" data-wow-duration="1.2s" data-wow-offset="255">
<h2 class="section-title mb-50 mb-sm-20">
Hivi ndivyo ilivyo rahisi
</h2>
<dl class="call-action-2-text mb-60 mb-sm-30">
<dt>
Hatua ya 1
</dt>
<dd>
Waandaaji hutumia programu kunasa sauti na kutengeneza msimbo wa QR
</dd>
<dt>
Hatua ya 2
</dt>
<dd>
Waliohudhuria watachanganua msimbo wa QR na uguse Pata Manukuu Papo Hapo kwenye ukurasa wa wavuti unaoweza kufikiwa
</dd>
<dt>
Hatua ya 3
</dt>
<dd>
Kunywa Piña Colada. Hakuna mkazo. Hakuna wasiwasi
</dd>
</dl>
<div class="local-scroll">
<a href="https://vimeo.com/1012452626" class="btn btn-mod btn-w btn-large btn-round">
Hakiki Video
</a>
<a href="https://www.youtube.com/watch?v=CJyUyJIDnF0" target="_blank" class="btn btn-mod btn-w btn-large btn-round" style="margin:1px;">
Mfano wa Usanidi wa Sauti-Visual
</a>
<a href="https://www.youtube.com/shorts/enZeIaVthEQ" target="_blank" class="btn btn-mod btn-w btn-large btn-round" style="margin:1px;">
Onyesho la Usahihi na Kasi
</a>
</div>
</div>
<!-- End Text -->
</div>
</div>
</section>
<!-- End Call Action Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Call Action Section -->
<section class="small-section bg-dark light-content">
<div class="container relative">
<div class="row wow fadeInUpShort">
<div class="col-md-8 offset-md-2 text-center">
<h3 class="call-action-1-heading">
Kusaidia Viziwi Ulimwenguni Pote
</h3>
<div class="call-action-1-decription mb-60 mb-sm-30">
Manukuu ya Moja kwa Moja ya Mkutano hutengenezwa na watu wale wale waliounda ushindi wa tuzo
<a href="https://deafassistant.com">
Programu ya Msaidizi wa Viziwi wa BeAware
</a>
. ConfCap inahakikisha kwamba mikutano inafikiwa zaidi na jumuiya ya viziwi.
Kwa usaidizi wako, tunaweza kuongeza ufahamu kwa pamoja kuhusu umuhimu wa viziwi walio na uwezo wa kupata ufikiaji, na kuifanya ifanyike. Kwa pamoja, tufanye makongamano yetu ya jumuiya kuwa ya pamoja, yenye uwezo na kufikiwa kwa kweli na washiriki wote.
</div>
<div class="local-scroll">
<a href="https://app.conferencecaptioning.com?lang=sw" class="btn btn-mod btn-w btn-large btn-round">
Jaribu Sasa
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Call Action Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<br />
<br />
<!-- End Divider -->
<!-- Kuweka bei Section -->
<section class="page-section bg-dark light-content" id="pricing">
<div class="container">
<!-- Nav Tabs -->
<div class="align-center mb-70 mb-xxs-50 wow fadeInUpShort animated" style="visibility: visible; animation-name: fadeInUpShort;">
<ul class="nav nav-tabs tpl-minimal-tabs animate" id="myTab-3" role="tablist">
<li class="nav-item" role="presentation">
<a href="#monthly" class="nav-link" id="monthly-tab" data-bs-toggle="tab" role="tab" aria-controls="monthly" aria-selected="false">
Kila siku
</a>
</li>
<li class="nav-item" role="presentation">
<a href="#yearly" class="nav-link active" id="yearly-tab" data-bs-toggle="tab" role="tab" aria-controls="yearly" aria-selected="true">
Kila mwezi
</a>
</li>
</ul>
</div>
<!-- End Nav Tabs -->
<!-- Tab panes -->
<div class="tab-content tpl-minimal-tabs-cont section-text align-center wow fadeInUpShort animated" id="myTabContent-1" style="visibility: visible; animation-name: fadeInUpShort;">
<div class="tab-pane fade" id="monthly" role="tabpanel" aria-labelledby="monthly-tab">
<!-- Kuweka bei row -->
<div class="row">
<!-- Kuweka bei Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-paper-plane" aria-hidden="true">
</i>
</div>
<!-- Kuweka bei Title -->
<div class="pricing-title">
Anza
</div>
<!-- Kuweka bei Vipengele -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Unukuzi wa moja kwa moja wa matukio
</li>
<li>
Ufikiaji wa Mhudhuriaji na Mratibu
</li>
<li>
Mitiririko 16 inayopatikana bila malipo
</li>
<li>
Kikomo cha dakika 15 kwa kila mtiririko
</li>
<li>
Inaauni lugha 20+
</li>
<li>
Sekunde 15 usanidi na utumie kugonga-3
</li>
</ul>
</div>
<div class="pricing-num">
BILA MALIPO
</div>
<div class="pr-per">
</div>
<!-- Button -->
<!-- <div class="pr-button">
<a href="app/index.html" class="btn btn-mod btn-small round">Jaribu Sasa</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- End Kuweka bei Item -->
<!-- Kuweka bei Item -->
<div class="col-md-4">
<div class="pricing-item main">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-gift" aria-hidden="true">
</i>
</div>
<!-- Kuweka bei Title -->
<div class="pricing-title">
Kawaida
</div>
<!-- Kuweka bei Vipengele -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Seva za utiririshaji za hali ya juu
</li>
<li>
Toa jina la kipekee la tukio
</li>
<li>
Waliohudhuria hawahitaji programu
</li>
<li>
Chapa iliyogeuzwa kukufaa
</li>
<li>
Hakuna kikomo cha muda cha kutiririsha
</li>
<li>
Uchujaji wa Maandishi Machafu
</li>
<li>
Punguzo linapatikana kwa Mashirika Yasiyo ya Faida
</li>
<li>
Jaribio la siku 3 na Usaidizi wa Kiufundi
</li>
</ul>
</div>
<div class="pricing-num">
<sup>
$
</sup>
100
</div>
<div class="pr-per">
kwa siku
</div>
<!-- Button -->
<div class="pr-button">
<a href="https://app.conferencecaptioning.com?lang=sw" class="btn btn-mod btn-w btn-small round">
Jaribu Sasa
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Kuweka bei Item -->
<!-- Kuweka bei Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-suitcase" aria-hidden="true">
</i>
</div>
<!-- Kuweka bei Title -->
<div class="pricing-title">
Biashara
</div>
<!-- Kuweka bei Vipengele -->
<div class="pricing-features">
<ul class="pr-list">
<li>
Fanya matukio kuwa siri na salama
</li>
<li>
Ripoti za matumizi mwishoni mwa matukio
</li>
<li>
Pata tafsiri za Moja kwa Moja
</li>
<li>
Ufikiaji wa API
</li>
<li>
Mapendeleo ya ziada na bei nyingi
</li>
<li>
Usaidizi wa mteja ana kwa ana
</li>
</ul>
</div>
<div class="pricing-num">
Wasiliana
</div>
<div class="pr-per">
timu yetu ya Uuzaji kwa makadirio
</div>
<!-- Button -->
<div class="pr-button">
<a href="mailto:hi@deafassistant.com" class="btn btn-mod btn-w btn-small round">
Wasiliana nasi
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Kuweka bei Item -->
</div>
<!-- End Kuweka bei row -->
</div>
<div class="tab-pane fade show active" id="yearly" role="tabpanel" aria-labelledby="yearly-tab">
<!-- Kuweka bei row -->
<div class="row">
<!-- Kuweka bei Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-paper-plane" aria-hidden="true">
</i>
</div>
<!-- Kuweka bei Title -->
<div class="pricing-title">
Anza
</div>
<!-- Kuweka bei Vipengele -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Unukuzi wa moja kwa moja wa matukio
</li>
<li>
Ufikiaji wa Mhudhuriaji na Mratibu
</li>
<li>