-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2250 lines (2235 loc) · 139 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Saylani Mass IT Training</title>
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/6e7d33c7c3.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="root">
<div class="top_bar ltr">
<div class="container top_bar">
<ul>
<li class="remove_margin_sm_ltr">
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 512 512"
class="topbar_icon topbar_icon_ltr"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"
></path></svg>
info@SaylaniMAssITTraining.com
</li>
<li class="remove_margin_sm_ltr">
<a href="tel:021-111-729-526"
><svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 1024 1024"
class="topbar_icon topbar_icon_ltr"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M877.1 238.7L770.6 132.3c-13-13-30.4-20.3-48.8-20.3s-35.8 7.2-48.8 20.3L558.3 246.8c-13 13-20.3 30.5-20.3 48.9 0 18.5 7.2 35.8 20.3 48.9l89.6 89.7a405.46 405.46 0 0 1-86.4 127.3c-36.7 36.9-79.6 66-127.2 86.6l-89.6-89.7c-13-13-30.4-20.3-48.8-20.3a68.2 68.2 0 0 0-48.8 20.3L132.3 673c-13 13-20.3 30.5-20.3 48.9 0 18.5 7.2 35.8 20.3 48.9l106.4 106.4c22.2 22.2 52.8 34.9 84.2 34.9 6.5 0 12.8-.5 19.2-1.6 132.4-21.8 263.8-92.3 369.9-198.3C818 606 888.4 474.6 910.4 342.1c6.3-37.6-6.3-76.3-33.3-103.4zm-37.6 91.5c-19.5 117.9-82.9 235.5-178.4 331s-213 158.9-330.9 178.4c-14.8 2.5-30-2.5-40.8-13.2L184.9 721.9 295.7 611l119.8 120 .9.9 21.6-8a481.29 481.29 0 0 0 285.7-285.8l8-21.6-120.8-120.7 110.8-110.9 104.5 104.5c10.8 10.8 15.8 26 13.3 40.8z"
></path></svg>
021-111-729-526</a>
</li>
</ul>
<ul class="topbar_menu_right">
<li class="remove_margin">
<div class="ant-space ant-space-vertical" style="gap: 8px">
<div class="ant-space-item">
<div
class="ant-space ant-space-horizontal ant-space-align-center"
style="flex-wrap: wrap; gap: 8px"
>
<div class="ant-space-item">
<button
type="button"
class="ant-btn ant-btn-default ant-dropdown-trigger"
>
<span class="ant-typography text_english normal_text"
>English</span
>
</button>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<nav
class="navbar_theme ltr navbar navbar-expand-xl navbar-light sticky-top" id="navbar"
>
<div class="container">
<a href="#" class="navbar-brand"
><img
width="100"
src="smit_logo.png"
alt="logo" /></a
><button
aria-controls="navbarScroll"
type="button"
aria-label="Toggle navigation"
class="navbar-toggler collapsed"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="justify-content-end navbar-collapse collapse"
id="navbarScroll"
>
<div class="my-2 my-lg-auto navbar-nav navbar-nav-scroll">
<div class="theme_link theme_link_ltr navbar-nav" href="/">
<a class="nav-link" href="#"
><span class="ant-typography text_english active_link"
>Home</span
></a
>
</div>
<a
href="#"
role="button"
data-rr-ui-event-key="#"
class="theme_link theme_link_ltr nav-link active"
tabindex="0"
><span class="ant-typography text_english in_active_link false"
>About</span
></a
>
<div class="szh-menu-container">
<ul
role="menu"
aria-label="Menu"
tabindex="-1"
class="szh-menu szh-menu--state-closed szh-menu--dir-bottom"
style="left: -65.3542px; top: 62px"
>
<a href="#about/saylani-introduction"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Introduction</span
>
</li></a
><a href="#"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Chairman Message</span
>
</li></a
><a href="#"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Audit Reports</span
>
</li></a
><a href="#"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Tax Exemption Certificate</span
>
</li></a
>
</ul>
</div>
<script>
function navClick() {
var navbar = document.getElementById("navbar");
var navbarList = document.getElementById("navbarScroll");
var listdiv = document.getElementById("listDiv");
var listItem = document.getElementsByClassName("link");
navbarList.classList.toggle("ulOnHamClick");
listdiv.classList.toggle("toggleWidth");
for (let item of listItem) {
item.classList.toggle("liOnHamClick");
}
}
window.addEventListener('resize', e => {
if (window.matchMedia(`(min-width: 1200px)`).matches) {
var navbarList = document.getElementById("navbarScroll");
var listdiv = document.getElementById("listDiv");
var listItem = document.getElementsByClassName("link");
navbarList.classList.remove("ulOnHamClick");
listdiv.classList.remove("toggleWidth");
for (let item of listItem) {
item.classList.remove("liOnHamClick");
}
}
});
</script>
<a
href="#"
role="button"
data-rr-ui-event-key="#"
class="theme_link theme_link_ltr nav-link active"
tabindex="0"
><span class="ant-typography text_english in_active_link false"
>Services</span
></a
>
<div class="szh-menu-container">
<ul
role="menu"
aria-label="Menu"
tabindex="-1"
class="szh-menu szh-menu--state-closed szh-menu--dir-bottom"
style="left: -78.4479px; top: 62px"
>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Health</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Education</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Food</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Sadiqah Jariah</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Social Welfare</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Disaster Aid</span
>
</div>
</li>
<li class="szh-menu__submenu sub_menu" role="presentation">
<div
role="menuitem"
aria-haspopup="true"
aria-expanded="false"
tabindex="-1"
class="szh-menu__item szh-menu__item--submenu"
>
<span class="ant-typography text_english normal_text"
>Saylani Ehsaas</span
>
</div>
</li>
</ul>
</div>
<a
href="#"
role="button"
data-rr-ui-event-key="#"
class="theme_link theme_link_ltr nav-link active"
tabindex="0"
><span class="ant-typography text_english in_active_link false"
>Media</span
></a
>
<div class="szh-menu-container">
<ul
role="menu"
aria-label="Menu"
tabindex="-1"
class="szh-menu szh-menu--state-closed szh-menu--dir-bottom"
style="left: -66.3333px; top: 62px"
>
<a href="#media/videos"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Videos</span
>
</li></a
><a href="#media/books"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Books</span
>
</li></a
>
</ul>
</div>
<div class="theme_link theme_link_ltr navbar-nav" href="">
<a class="nav-link" href="#news"
><span class="ant-typography text_english in_active_link"
>News</span
></a
>
</div>
<a
href="#"
role="button"
data-rr-ui-event-key="#"
class="theme_link theme_link_ltr nav-link active"
tabindex="0"
><span class="ant-typography text_english in_active_link false"
>Contact Us</span
></a
>
<div class="szh-menu-container">
<ul
role="menu"
aria-label="Menu"
tabindex="-1"
class="szh-menu szh-menu--state-closed szh-menu--dir-bottom"
style="left: -94.4167px; top: 62px"
>
<a href="#contact-us"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Contact Us</span
>
</li></a
><a href="#contact-us/branches"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Branches</span
>
</li></a
>
</ul>
</div>
<div
class="theme_link theme_link_ltr navbar-nav"
href="/bank-details"
>
<a class="nav-link" href="#bank-details"
><span class="ant-typography text_english in_active_link"
>Bank Details</span
></a
>
</div>
<a
href="#"
role="button"
data-rr-ui-event-key="#"
class="theme_link theme_link_ltr nav-link active"
tabindex="0"
><span
class="ant-typography text_english in_active_link important_link"
>Overseas Donors</span
></a
>
<div class="szh-menu-container">
<ul
role="menu"
aria-label="Menu"
tabindex="-1"
class="szh-menu szh-menu--state-closed szh-menu--dir-bottom"
style="left: -128.167px; top: 62px"
>
<a
rel="noreferrer"
href="https://www.saylaniwelfareuk.com/donate-now/"
target="_blank"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Saylani UK</span
>
</li></a
><a
rel="noreferrer"
href="https://www.saylaniwelfareusa.com#donate/"
target="_blank"
><li
role="menuitem"
tabindex="-1"
class="szh-menu__item my-menuitem"
>
<span class="ant-typography text_english normal_text"
>Saylani USA</span
>
</li></a
>
</ul>
</div>
</div>
<div class="m-1">
<a href="#donate"
><div>
<button class="donate_btn w-100 theme_btn btn btn-primary">
<span
class="ant-typography text_english nav_bar_btn nav_bar_btn_ltr"
>DONATE NOW</span
>
</button>
</div></a
>
</div>
<div class="m-1">
<a href="#sponsor"
><div style="transform: none">
<button
class="be_a_sponsor_btn w-100 theme_btn btn btn-primary"
>
<span
class="ant-typography text_english nav_bar_btn nav_bar_btn_ltr"
>BE A SPONSOR</span
>
</button>
</div></a
>
</div>
<div class="close-btn">
<span
><span class="ant-typography text_english normal_text"
>Close</span
></span
>
</div>
</div>
</div>
</nav>
<div>
<div class="theme_container container">
<div class="ant-carousel">
<div class="slick-slider slick-initialized">
<div class="slick-list">
<div
class="slick-track"
style="
width: 1116px;
opacity: 1;
transform: translate3d(0px, 0px, 0px);
transition: -webkit-transform 500ms ease 0s;
"
>
<div
data-index="0"
class="slick-slide slick-active slick-current"
tabindex="-1"
aria-hidden="false"
style="outline: none; width: 1116px"
>
<div>
<div
class="slide ltr"
tabindex="-1"
style="width: 100%; display: inline-block"
>
<div class="row">
<div class="col-12 col-sm-6 col-md-6 col-lg-6 d-flex">
<div class="slide_content">
<div class="slide_text">
<h1
class="ant-typography heading_english animate__animated animate__fadeInLeft"
>
<span
>Welcome to the<span class="color_theme_green">
Saylani</span
> Mass IT Training</span
>
</h1>
<h3
class="ant-typography heading_english animate__animated animate__fadeInLeft"
>
The largest NGO offering free
<span class="animated_services"><span id="typed-text"></span><span class="typed-cursor">|</span></span>
</h3>
<script>
const words = ["IT and vocational trainings", "information about technology", "guidance to AI"];
const textElement = document.getElementById("typed-text");
const cursorElement = document.querySelector(".typed-cursor");
let wordIndex = 0;
let charIndex = 0;
function typeText() {
if (wordIndex < words.length) {
if (charIndex < words[wordIndex].length) {
textElement.innerText += words[wordIndex].charAt(charIndex);
charIndex++;
setTimeout(typeText, 100);
} else {
setTimeout(eraseText, 1000); // Delay before erasing the word
}
} else {
// Typing animation is done
cursorElement.style.display = "none"; // Hide the cursor
}
}
function eraseText() {
if (charIndex > 0) {
textElement.innerText = words[wordIndex].substring(0, charIndex - 1);
charIndex--;
setTimeout(eraseText, 50);
} else {
wordIndex++;
setTimeout(typeText, 500); // Delay before typing the next word
}
}
typeText();
</script>
<p class="animate__animated animate__fadeInUp">
<span
class="ant-typography text_english normal_text"
>Today is the age of information technology and we aim to equip our youth with computer programming skills and prepare them for the development of the country. In this regard, our Saylani Mass IT Training Program providing vocational training to more than 75,000 students in Web and Mobile Application Development, CCNA, Graphics Designing, Computer Based Accounting in Karachi, Hyderabad, Faisalabad, Islamabad. Our goal is to develop more than 1 million software developers across the country, which will add about $100 billion annually to Pakistan's economy.</span
>
</p>
</div>
<div>
<a href="#about"
><div>
<button
class="slide_btn slide_btn_ltr theme_btn btn btn-primary"
>
<span
class="ant-typography text_english normal_text"
>Explorer More</span
>
<svg
stroke="currentColor"
fill="none"
stroke-width="0"
viewBox="0 0 24 24"
height="18"
width="18"
xmlns="http://www.w3.org/2000/svg"
style="margin-left: 10px"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 8l4 4m0 0l-4 4m4-4H3"
></path>
</svg>
</button></div
></a>
</div>
</div>
</div>
<div class="col hide_on_small">
<div class="slide_image">
<div
style="
transform: translateX(10px) translateZ(0px);
"
>
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646926708/website-images/static/38.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="donation_box ltr">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-3">
<div class="donation_box_content donation_box_content_ltr">
<div class="theme_input quick_donation_box_amount">
<span
class="ant-input-group-wrapper theme_input_ltr undefined"
><span class="ant-input-wrapper ant-input-group"
><span class="ant-input-group-addon">General</span
><input
min="0"
type="text"
maxlength="8"
class="ant-input"
value="0"
/><span class="ant-input-group-addon">Rs.</span></span
></span
>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-9">
<div class="donation_amounts">
<div style="transform: none">
<div
class="amount_box animate__bounceInRight animate__animated false"
>
<span class="ant-typography text_english ltr"
>Web & App Development</span
>
</div>
</div>
<div style="transform: none">
<div
class="amount_box animate__bounceInRight animate__animated false"
>
<span class="ant-typography text_english ltr"
>Generative AI</span
>
</div>
</div>
<div style="transform: none">
<div
class="amount_box animate__bounceInRight animate__animated false"
>
<span class="ant-typography text_english ltr"
>Graphic Designing</span
>
</div>
</div>
<div style="transform: none">
<div
class="amount_box animate__bounceInRight animate__animated amount_box_selected"
>
<span class="ant-typography text_english ltr">CRM</span>
</div>
</div>
<div style="justify-content: flex-end; transform: none">
<button class="donation_box_btn theme_btn btn btn-primary">
<span class="ant-typography text_english normal_text"
>Quick Donate</span
>
</button>
</div>
</div>
</div>
</div>
</div>
<span class="carousel-main"
><div class="ant-carousel">
<div class="slick-slider slick-initialized">
<div class="slick-list">
<div class="slick-track" style="width: 1114px; opacity: 1">
<div
data-index="0"
class="slick-slide slick-active slick-current"
tabindex="-1"
aria-hidden="false"
style="
outline: none;
width: 1114px;
position: relative;
left: 0px;
opacity: 1;
transition: opacity 500ms ease 0s,
visibility 500ms ease 0s;
"
>
<div>
<div
class="carousel-box"
tabindex="-1"
style="width: 100%; display: inline-block"
>
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1690779592/website-images/dynamic/7f09ba9c-06e3-4744-af67-74175abc04e6.jpg"
alt="Blood Bank"
class="carousel-image"
/>
</div>
</div>
</div>
</div>
</div>
</div></div
></span>
<div class="home_services ltr">
<div class="row justify-content-lg-center">
<div class="col">
<div class="home_services_heading">
<h2 class="ant-typography heading_english undefined">
What We Are Doing
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="#1070b8" height="5em" viewBox="0 0 640 512"><path d="M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z"/></svg>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
Generative Ai
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="#1070b8" height="5em" viewBox="0 0 640 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
Web Dev
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927849/website-images/static/39.png"
alt=""
/>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
Online Sadqah
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927853/website-images/static/40.png"
alt=""
/>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
RO Plant
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927923/website-images/static/48.png"
alt=""
/>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
Education
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-4 col-lg-2">
<div>
<div class="service_box">
<div class="service_icon">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927876/website-images/static/43.png"
alt=""
/>
</div>
<div class="service_text">
<h5 class="ant-typography heading_english undefined">
Food
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="home_funding ltr">
<div class="row">
<div class="col-12 col-sm-12 col-md-6 col-lg-4">
<div>
<div class="funding_box" style="animation-delay: 0.1s">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1653391090/website-images/dynamic/ffcdeed8-6cc9-47c2-80dd-9630145c0ace.jpg"
alt=""
/>
<div class="fund_box">
<h5 class="ant-typography heading_english undefined">
R O Water Filter Plant
</h5>
<button class="undefined theme_btn btn btn-primary">
<span class="ant-typography text_english text-white"
>Donate</span
>
</button>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-4">
<div>
<div class="funding_box" style="animation-delay: 0.2s">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1654923364/website-images/dynamic/c6fdf6af-51d5-4388-97ef-6cf10eb73aca.jpg"
alt=""
/>
<div class="fund_box">
<h5 class="ant-typography heading_english undefined">
IT Entrepreneurship Courses
</h5>
<button class="undefined theme_btn btn btn-primary">
<span class="ant-typography text_english text-white"
>Donate</span
>
</button>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-4">
<div>
<div class="funding_box" style="animation-delay: 0.3s">
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1678691645/website-images/dynamic/8517e89c-e41d-4868-8c92-3bbc0d1f9339.jpg"
alt=""
/>
<div class="fund_box">
<h5 class="ant-typography heading_english undefined">
Zakat
</h5>
<button class="undefined theme_btn btn btn-primary">
<span class="ant-typography text_english text-white"
>Donate</span
>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="upcoming_projects ltr">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-6">
<div>
<div class="upcoming_picture_box upcoming_picture_box_ltr">
<img
src="https://i.tribune.com.pk/media/images/2178912-image-1584559620/2178912-image-1584559620.jpg"
alt=""
/>
<div class="upcoming_text_box">
<h3 class="ant-typography heading_english undefined">
Saylani serve almost 300,000 underprivileged on daily
basis
</h3>
</div>
<div
class="upcoming_text_box_transparent_1 upcoming_text_box_transparent_1_ltr"
></div>
<div class="upcoming_text_box_transparent_2"></div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-6">
<div
class="upcoming_projects_heading upcoming_projects_heading_ltr"
style="white-space: pre-line"
>
<h2 class="ant-typography heading_english undefined">
Other Projects
</h2>
</div>
<div
class="d-flex upcoming_projects_items upcoming_projects_items_ltr"
>
<div>
<div>
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927917/website-images/static/47.png"
alt=""
/>
</div>
</div>
<div class="other_projects_head">
<h5 class="ant-typography heading_english undefined">
Hepatitis
</h5>
<span class="ant-typography text_english normal_text"
>Saylani Welfare has also set up a clinic for the best
treatment of hepatitis patients where hepatitis patients
are being treated</span
>
</div>
</div>
<div
class="d-flex upcoming_projects_items upcoming_projects_items_ltr"
>
<div>
<div>
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927914/website-images/static/46.png"
alt=""
/>
</div>
</div>
<div class="other_projects_head">
<h5 class="ant-typography heading_english undefined">
Housing Society
</h5>
<span class="ant-typography text_english normal_text"
>Saylani Welfare is also providing its own home facility
for the homeless people. So far, thousands of houses and
flats have been constructed and given in easy
installments</span
>
</div>
</div>
<div
class="d-flex upcoming_projects_items upcoming_projects_items_ltr"
>
<div>
<div>
<img
src="https://res.cloudinary.com/saylani-welfare/image/upload/v1646927868/website-images/static/42.png"
alt=""
/>
</div>