-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-yo.html
1302 lines (1286 loc) · 87.2 KB
/
index-yo.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
<!-- 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='yo'>
<head>
<title>Khutbah Live ifori App, nipasẹ BeAware</title>
<meta name="description" content="Khutbah Live Captioning fun Adití nipasẹ 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">
<link rel="alternate" hreflang="x-default" href="https://khutbahcaptioning.com/index.html" />
<link rel="alternate" hreflang="en" href="https://khutbahcaptioning.com/index.html" />
<link rel="alternate" hreflang="es" href="https://khutbahcaptioning.com/index-es.html" />
<link rel="alternate" hreflang="fr" href="https://khutbahcaptioning.com/index-fr.html" />
<link rel="alternate" hreflang="pt" href="https://khutbahcaptioning.com/index-pt.html" />
<link rel="alternate" hreflang="ar" href="https://khutbahcaptioning.com/index-ar.html" />
<link rel="alternate" hreflang="ru" href="https://khutbahcaptioning.com/index-ru.html" />
<link rel="alternate" hreflang="de" href="https://khutbahcaptioning.com/index-de.html" />
<link rel="alternate" hreflang="uk" href="https://khutbahcaptioning.com/index-uk.html" />
<link rel="alternate" hreflang="hi" href="https://khutbahcaptioning.com/index-hi.html" />
<link rel="alternate" hreflang="ur" href="https://khutbahcaptioning.com/index-ur.html" />
<link rel="alternate" hreflang="yo" href="https://khutbahcaptioning.com/index-yo.html" />
<link rel="alternate" hreflang="id" href="https://khutbahcaptioning.com/index-id.html" />
<link rel="alternate" hreflang="it" href="https://khutbahcaptioning.com/index-it.html" />
<link rel="alternate" hreflang="ja" href="https://khutbahcaptioning.com/index-ja.html" />
<link rel="alternate" hreflang="sw" href="https://khutbahcaptioning.com/index-sw.html" />
<link rel="alternate" hreflang="pl" href="https://khutbahcaptioning.com/index-pl.html" />
<link rel="alternate" hreflang="vi" href="https://khutbahcaptioning.com/index-vi.html" />
<link rel="alternate" hreflang="ro" href="https://khutbahcaptioning.com/index-ro.html" />
<link rel="alternate" hreflang="zh-Hant" href="https://khutbahcaptioning.com/index-zh-hant.html" />
<link rel="alternate" hreflang="zh" href="https://khutbahcaptioning.com/index-zh.html" />
<link rel="alternate" hreflang="hr" href="https://khutbahcaptioning.com/index-hr.html" />
<link rel="alternate" hreflang="fa" href="https://khutbahcaptioning.com/index-fa.html" />
<link rel="alternate" hreflang="nl" href="https://khutbahcaptioning.com/index-nl.html" />
<link rel="alternate" hreflang="ko" href="https://khutbahcaptioning.com/index-ko.html" />
<link rel="alternate" hreflang="sv" href="https://khutbahcaptioning.com/index-sv.html" />
<link rel="alternate" hreflang="hu" href="https://khutbahcaptioning.com/index-hu.html" />
<link rel="alternate" hreflang="sq" href="https://khutbahcaptioning.com/index-sq.html" />
<meta name="keywords" content="Adití, HoH, Gbigbọ Hardof, Lile, Gbigbọ, Iranlọwọ, Android, iPhone, iOS, App, Oju opo wẹẹbu" />
<link rel="canonical" href="https://khutbahcaptioning.com/index-yo.html">
<meta property="og:site_name" content="Khutbah Live Captioning fun Adití nipasẹ BeAware">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Khutbah Live ifori Nipa BeAware">
<meta name="twitter:description" content="Abinibi Khutbah Live Captioning apps fun sìn Adití & Lile ti igbọran awọn olukopa">
<meta name="twitter:image" content="https://khutbahcaptioning.com/images/author.png">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Khutbah Live ifori Nipa BeAware">
<meta itemprop="description" content="Abinibi Khutbah Live Captioning apps fun sìn Adití & Lile ti igbọran awọn olukopa">
<meta itemprop="image" content="https://khutbahcaptioning.com/images/author.png">
<!-- Facebook Open Graph -->
<meta property="og:url" content='https://khutbahcaptioning.com/index-yo.html'>
<meta property="og:type" content="website">
<meta property="og:title" content="Khutbah Live Captioning fun Adití nipasẹ BeAware">
<meta property="og:description" content="Abinibi Khutbah Live Captioning apps fun sìn Adití & Lile ti igbọran awọn olukopa">
<meta property="og:image" content="https://khutbahcaptioning.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.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.png"> Need 180x180 icon medium-->
<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-0LVRKJGVDT">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0LVRKJGVDT');
</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">
<div class="page-loader dark">
<div class="loader">
Nkojọpọ...
</div>
</div>
<!-- End Page Loader -->
<!-- Rekọja si Akoonu -->
<a href="#main" class="btn skip-to-content">
Rekọja si Akoonu
</a>
<!-- End Rekọja si Akoonu -->
<!-- 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="BeAware Cofnerence Captioning company logo" width="188" height="37" />
</a>
</div>
<!-- Mobile Akojọ aṣyn Button -->
<div class="mobile-nav" role="button" tabindex="0">
<i class="fa fa-bars">
</i>
<span class="sr-only">
Akojọ aṣyn
</span>
</div>
<!-- Main Akojọ aṣyn -->
<div class="inner-nav desktop-nav">
<ul class="clearlist scroll-nav local-scroll">
<li class="active">
<a href="#home">
Ile
</a>
</li>
<li>
<a href="#about">
Nipa
</a>
</li>
<li>
<a href="#features">
Awọn ẹya ara ẹrọ
</a>
</li>
<li>
<a href="#testimonials">
Awọn ijẹrisi
</a>
</li>
<li>
<a href="#demo">
Awotẹlẹ
</a>
</li>
<li>
<a href="#pricing">
Ifowoleri
</a>
</li>
<li>
<a href="#contact">
Olubasọrọ
</a>
</li>
<!-- Languages -->
<li>
<a href="#" class="mn-has-sub"><i class="fa-solid fa-earth-americas"></i>Yoruba <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?s=khutbah">
<span class="btn btn-mod btn-w btn-circle">
<i class="fa fa-download">
</i>
Gbiyanju Bayi
</span>
</a>
</li>
</ul>
</div>
<!-- End Main Akojọ aṣyn -->
</div>
</nav>
<!-- End Navigation panel -->
<main id="main">
<!-- Ile 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">
IWỌWỌWỌRỌ AWỌN NIPA FUN GBOGBO
</h1>
<h2 class="hs-line-5 mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Fi agbara rẹ laaye ni eniyan
<span class="sr-only">
khutbahs, khatiras, iṣẹlẹ
</span>
<span data-period="2800" data-type='[ "Khutbahs", "Khatiras", "Awọn iṣẹlẹ"]' 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">
Mu ibaraẹnisọrọ pọ pẹlu awọn iṣẹ igbasilẹ akoko gidi ati awọn iṣẹ itumọ, ṣiṣe aṣeyọri diẹ sii laisi ohun elo afikun.
</h3>
<div class="local-scroll wow fadeInUpShort" data-wow-delay=".3s">
<a href="https://khutbahcaptioning.com/portal" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Gba demo kan
</a>
<a href="https://app.conferencecaptioning.com?s=khutbah" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Bẹrẹ ọfẹ
</a>
</div>
<br />
<h3 class="section-more white mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Gba demo ti sọfitiwia Ere wa, tabi bẹrẹ pẹlu awọn irinṣẹ ọfẹ
</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">Bẹrẹ 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">
Yi lọ si apakan atẹle
</span>
</a>
</div>
<!-- End Scroll Down -->
</div>
</div>
</div>
<!-- End Ile 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">
Awọn iye
</h2>
<p class="work-process-description">
ỌJỌ́Ọ́ ỌJỌ́ ÌRÁNTÍ adití & IFỌRỌWỌRỌ EDE
</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="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="work-process-title">
Ni idaniloju pe ko si ẹnikan ti o fi silẹ
</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">
Ikolu imudara
</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">
Kikan awọn idena ibaraẹnisọrọ
</h3>
</div>
</div>
<!-- End Item -->
</div>
<!-- End Grid -->
</div>
</section>
<!-- End Process Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Nipa 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">
Awọn iṣẹlẹ inu eniyan nilo iraye si
</div>
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
10% eniyan jẹ Adití tabi Lile ti igbọran. Nitoripe wọn le ma kerora nipa aini iraye si ko tumọ si pe wọn ko wa. Awọn iyọkuro le ja si awọn ikunsinu ti ibanujẹ ati sisọ kuro ninu ibaraẹnisọrọ naa.
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
Ọrọ ifori Khutbah ṣe ifọkansi lati dinku awọn aidogba nipasẹ ṣiṣe isọpọ ati adehun igbeyawo ni irọrun lati ṣe ati iraye si. Ṣe iraye si ohun ti ko si-brainer, ko ohun afterthought
</div>
</div>
</div>
</div>
</section>
<!-- End Nipa Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Awọn ẹya ara ẹrọ 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">
Awọn ẹya ara ẹrọ
</h2>
<p class="section-title-descr">
A pese awọn ojutu iṣẹlẹ ti o dara julọ fun awọn mọṣalaṣi.
</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">
Awọn atunkọ
</h3>
<div class="services-descr">
Ọna ti o yara ju lati ṣafikun awọn atunkọ-ifiweranṣẹ si eyikeyi iṣẹlẹ. Ni iṣẹju-aaya 15, ṣẹda ṣiṣan rẹ ki o jẹ ki awọn olukopa darapọ mọ ṣiṣan akọle iṣẹlẹ rẹ
</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">
Awọn isọdi
</h3>
<div class="services-descr">
Ṣẹda oju-iwe ṣiṣan ti adani ti awọn olukopa le darapọ mọ laisi igbasilẹ eyikeyi awọn ohun elo nipa lilo koodu QR rẹ nikan
</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">
Awọn itumọ
</h3>
<div class="services-descr">
Tumọ ni deede ni akoko gidi si awọn ede to ju 25 lọ, pẹlu imudara ohun kọọkan fun Lile ti igbọran
</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 Awọn ẹya ara ẹrọ Section -->
<!-- Awọn ijẹrisi 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">
Ohun ti Onibara Sọ
</h2>
</div>
<div class="text-slider">
<!-- Slide Item -->
<div>
<blockquote class="testimonial">
<p>
Rọrun lati lo ati rọrun lati ṣepọ sinu iṣeto ti o wa tẹlẹ.
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
- Michael Goggins, IT Manager. Michigan State University
</footer>
</blockquote>
</div>
<div>
<blockquote class="testimonial">
<p>
O dabi ẹnipe aisi-ọpọlọ fun gbogbo apejọ lati lo imọ-ẹrọ yii lati jẹ ki akoonu igbọran wa fun gbogbo awọn olukopa
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
- Tom Phillips, Alakoso siseto. Apple Developer Academy Detroit
</footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Awọn ijẹrisi 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">
Eyi ni bi o ṣe rọrun
</h2>
<dl class="call-action-2-text mb-60 mb-sm-30">
<dt>
Igbesẹ 1
</dt>
<dd>
Masjids/Khateebs lo ohun elo naa lati ya ohun afetigbọ ati ṣe agbekalẹ koodu QR kan
</dd>
<dt>
Igbesẹ 2
</dt>
<dd>
Awọn olukopa ṣe ayẹwo koodu QR ki o tẹ Gba Awọn akọle Live ni oju-iwe wẹẹbu ti o le wọle
</dd>
<dt>
Igbesẹ 3
</dt>
<dd>
Ni diẹ ninu wara & ọjọ. Ko si wahala. Ko si wahala
</dd>
</dl>
<div class="local-scroll">
<a href="https://vimeo.com/950909503" class="btn btn-mod btn-w btn-large btn-round">
30 Second Awotẹlẹ
</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">
Atilẹyin Adití Ni Agbaye
</h3>
<div class="call-action-1-decription mb-60 mb-sm-30">
Khutbah Live Captioning jẹ itumọ nipasẹ awọn eniyan kanna ti o kọ ẹbun-gba
<a href="https://deafassistant.com">
BeAware Adití Iranlọwọ app
</a>
.
Ọrọ ifori Khutbah ṣe idaniloju pe awọn mọṣalaṣi wa diẹ sii si agbegbe aditi.
Pẹlu atilẹyin rẹ, a le ṣe agbega imo papọ nipa pataki ti iraye si aditi, ati nitootọ jẹ ki o ṣẹlẹ. Papọ, jẹ ki a jẹ ki awọn mọṣalaṣi agbegbe wa ni akojọpọ, ni agbara, ati wiwọle ni otitọ fun gbogbo awọn olukopa
</div>
<div class="local-scroll">
<a href="https://app.conferencecaptioning.com?s=khutbah" class="btn btn-mod btn-w btn-large btn-round">
Gbiyanju Bayi
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Call Action Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<br />
<br />
<!-- End Divider -->
<!-- Ifowoleri Section -->
<section class="page-section pt-0" 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">
Ojoojumọ
</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">
Oṣooṣu
</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">
<!-- Ifowoleri row -->
<div class="row">
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Bẹrẹ
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Live transcription fun awọn iṣẹlẹ
</li>
<li>
Wiwọle Oluṣeto & Ọganaisa
</li>
<li>
16 larọwọto wa ṣiṣan
</li>
<li>
15 iseju iye to fun san
</li>
<li>
Ṣe atilẹyin awọn ede 20+
</li>
<li>
15-aaya 3-tẹ ni kia kia iṣeto ni & lilo
</li>
</ul>
</div>
<div class="pricing-num">
ỌFẸ
</div>
<div class="pr-per">
</div>
<!-- Button -->
<!-- <div class="pr-button">
<a href="app/index.html" class="btn btn-mod btn-small round">Gbiyanju Bayi</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Standard
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Ere sisanwọle apèsè
</li>
<li>
Pese orukọ iṣẹlẹ alailẹgbẹ kan
</li>
<li>
Awọn olukopa ko nilo ohun elo kan
</li>
<li>
Aṣa iyasọtọ fun ọ
</li>
<li>
Ko si akoko-sisanwọle
</li>
<li>
Isọ ọrọ irira
</li>
<li>
Eni fun Mini Mossalassi
</li>
<li>
Idanwo ọjọ 3 & Atilẹyin Imọ-ẹrọ
</li>
</ul>
</div>
<div class="pricing-num">
<sup>
$
</sup>
50
</div>
<div class="pr-per">
fun ọjọ kan
</div>
<!-- Button -->
<div class="pr-button">
<a href="https://app.conferencecaptioning.com?s=khutbah" class="btn btn-mod btn-w btn-small round">
Gbiyanju Bayi
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Idawọlẹ
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="pr-list">
<li>
Ṣe awọn iṣẹlẹ ni ikọkọ & ni aabo
</li>
<li>
Awọn ijabọ lilo ni opin awọn iṣẹlẹ
</li>
<li>
Gba awọn itumọ Live
</li>
<li>
Wiwọle API
</li>
<li>
Awọn isọdi afikun & idiyele olopobobo
</li>
<li>
Ni-eniyan atilẹyin alabara
</li>
</ul>
</div>
<div class="pricing-num">
Olubasọrọ
</div>
<div class="pr-per">
Ẹgbẹ Titaja wa fun iṣiro kan
</div>
<!-- Button -->
<div class="pr-button">
<a href="mailto:hi@deafassistant.com" class="btn btn-mod btn-w btn-small round">
Pe wa
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
</div>
<!-- End Ifowoleri row -->
</div>
<div class="tab-pane fade show active" id="yearly" role="tabpanel" aria-labelledby="yearly-tab">
<!-- Ifowoleri row -->
<div class="row">
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Bẹrẹ
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Live transcription fun awọn iṣẹlẹ
</li>
<li>
Wiwọle Oluṣeto & Ọganaisa
</li>
<li>
16 larọwọto wa ṣiṣan
</li>
<li>
15 iseju iye to fun san
</li>
<li>
Ṣe atilẹyin awọn ede 20+
</li>
<li>
15-aaya 3-tẹ ni kia kia iṣeto ni & lilo
</li>
</ul>
</div>
<div class="pricing-num">
ỌFẸ
</div>
<div class="pr-per">
</div>
<!-- Button -->
<!-- <div class="pr-button">
<a href="app/index.html" class="btn btn-mod btn-small round">Gbiyanju Bayi</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Standard
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Ere sisanwọle apèsè
</li>
<li>
Pese orukọ iṣẹlẹ alailẹgbẹ kan
</li>
<li>
Awọn olukopa lo oju opo wẹẹbu kan
</li>
<li>
Aṣa iyasọtọ fun ọ
</li>
<li>
Ko si akoko-sisanwọle
</li>
<li>
Eni wa fun ti kii-ere
</li>
<li>
Idanwo ọjọ 7 & Atilẹyin Imọ-ẹrọ
</li>
</ul>
</div>
<div class="pricing-num">
<sup>
$
</sup>
200
</div>
<div class="pr-per">
fun osu
</div>
<!-- Button -->
<div class="pr-button">
<a href="https://app.conferencecaptioning.com?s=khutbah" class="btn btn-mod btn-w btn-small round">
Gbiyanju Bayi
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
<!-- Ifowoleri 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>
<!-- Ifowoleri Title -->
<div class="pricing-title">
Idawọlẹ
</div>
<!-- Ifowoleri Awọn ẹya ara ẹrọ -->
<div class="pricing-features">
<ul class="pr-list">
<li>
Agbara lati ṣe awọn iṣẹlẹ ni aṣiri & aabo
</li>
<li>
Gba awọn ijabọ lilo ni opin awọn iṣẹlẹ
</li>
<li>
Gba awọn itumọ Live
</li>
<li>
Wiwọle API
</li>
<li>
Awọn isọdi afikun tabi idiyele olopobobo
</li>
<li>
Ni-eniyan atilẹyin alabara
</li>
</ul>
</div>
<div class="pricing-num">
Olubasọrọ
</div>
<div class="pr-per">
Ẹgbẹ Titaja wa fun iṣiro kan
</div>
<!-- Button -->
<div class="pr-button">
<a href="mailto:hi@deafassistant.com" class="btn btn-mod btn-w btn-small round">
Pe wa
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Ifowoleri Item -->
</div>
<!-- End Ifowoleri row -->
</div>
</div>
</div>
</section>
<!-- End Ifowoleri Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Newsletter Section -->
<!-- <section class="small-section bg-dark bg-dark-alfa-70 bg-scroll bg-position-top light-content" data-background="images/full-width-images/section-bg-3.jpg">
<div class="container relative">
<form id="mailchimp" class="form wow fadeInUpShort">
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="newsletter-label d-flex mb-50 mb-sm-20">
<div class="newsletter-label-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="M1.999 1v7.269l-2 1.456v13.275h24.001v-13.275l-2.001-1.453v-7.272h-20zm1 11.234v-10.234h18v10.233l-9 5.766-9-5.765zm19 .54v-3.17l1.001.764v11.632h-22.001v-11.641l1-.707.063 3.134 9.937 6.413 10-6.425zm-14.305-6.752l-2.694.496 1.888 1.986-.361 2.716 2.472-1.182 2.473 1.182-.361-2.716 1.888-1.986-2.695-.496-1.305-2.41-1.305 2.41zm.248 2.139l-.945-.994 1.349-.249.653-1.206.654 1.206 1.349.249-.945.994.18 1.36-1.238-.591-1.238.591.181-1.36zm6.058-3.078h4.999v-1h-4.999v1zm0 2h4.999v-1h-4.999v1zm0 2h4.999v-1h-4.999v1zm0 2h3v-1h-3v1z"/></svg>
</div>
<h2 class="newsletter-label-text">
Stay informed with our newsletter
</h2>