-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1571 lines (1337 loc) · 95.6 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
<<<<<<< HEAD
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.vl {
border-left: 6px solid green;
height: 500px;
}
</style>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>دانه</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link rel="stylesheet" href="css/styleTest.css">
<!-- Favicons -->
<link href="capture.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Lato:400,300,700,900" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Amoeba - v2.3.1
* Template URL: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container">
<div class="logo float-right">
<!-- <h1 class="text-light"><a href="index.html"><span>دانه</span></a></h1>-->
<a href="index.html"> <img src="logo2-removebg-preview (1).png" alt="دانه" ></a>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu d-none d-lg-block flex-column-reverse flex-md-row" dir=rtl>
<ul >
<li><button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" class="btn btn-success"> ثبت نام </button></li>
<li><button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-primary margin-left"> ورود </button></li>
<span class="form-inline my-2 my-lg-0" >
<li><a class="font-weight-bolder" href="#portfolio" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">گلریزان</a></li>
<li><a class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" href="#faq">سوالات متداول</a></li>
<li ><a class="font-weight-bolder" href="#about" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">درباره ما</a></li>
<li><a class="font-weight-bolder" href="#team" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">اعضای تیم</a></li>
<li ><a class="font-weight-bolder" href="#contact" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">ارتباط با ما </a></li>
<!-- <li><a href="#services">Services</a></li>-->
</span>
</ul>
</nav><!-- .nav-menu -->
</header><!-- End #header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<!-- <a href="#signup" class="btn-get-started scrollto font-weight-bolder">ثبت نام</a>
<br>
<a href="#login" class="btn-get-started scrollto font-weight-bolder">ورود</a>
-->
<!-- <h2 s">ره نیک مردان آزاده گیر </h2>
<h2 class="header__title bold">چو ایستادهای دست افتاده گیر </h2>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>-->
</section><!-- #hero -->
<main id="main">
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services section-bg">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-computer"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-chart-bar-graph"></i></div>
<h4 class="title"><a href="">Dolor Sitema</a></h4>
<p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat tarad limino ata</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-earth"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-settings"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-tasks-alt"></i></div>
<h4 class="title"><a href="">Eiusmod Tempor</a></h4>
<p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi</p>
</div>
</div>
</div>
</section>--><!-- End Services Section -->
<!-- ======= Call To Action Section ======= -->
<!--<section class="call-to-action">
<div class="container">
<div class="text-center">
<h3>Call To Action</h3>
<p> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<a class="cta-btn" href="#">Call To Action</a>
</div>
</div>
</section>--><!-- End Call To Action Section -->
<!-- ======= Our Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2 class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">گلریزان ها</h2>
</div>
<div class="row " >
<div class="col-lg-12" dir="RTL">
<ul id="portfolio-flters" >
<li data-filter="*" class="filter-active font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">همه</li>
<li data-filter=".filter-darman" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">درمان</li>
<li data-filter=".filter-tahsil" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">تحصیل کودکان کار</li>
<li data-filter=".filter-jahiziye" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">جهیزیه</li>
<li data-filter=".filter-eshteghal"class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">اشتغال</li>
</ulpull-right>
</div>
</div>
<div class="container">
<div class="row portfolio-container">
<div class="col-12 col-md-6 col-lg-3 filter-darman float-right">
<div class="card">
<img class="card-img-top" src="download.png" alt="Unsplash">
<div class="card-header px-4 pt-4">
<div class="card-actions">
<!-- <div class="dropdown show">
<a href="#" data-toggle="dropdown" data-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal align-middle"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>
</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>-->
</div>
<h5 class="card-title mb-0 text-right" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> خیریه ابولفضل</h5>
<div class="badge bg-danger my-2 text-right float-right " style="color:white; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ">متوقف</div>
</div>
<div class="card-body px-4 pt-2 text-right" >
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">مددجو جز یارانه هیچ منبع درآمدی ندارن این مددجوبرای شغل بافندگی (بافندگی لباس گرم زمستانه)نیاز به مواد اولیه (نیاز ب نخ و میل و دکمه و زیپ و کاموا) دارد تا بتواند شغل خانگی خود را براه بندازد</p>
<!-- <img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28"> -->
<h5 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> مبلغ مورد نیاز: 5 میلیون تومان</h5>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item px-4 pb-4">
<p class="mb-2 font-weight-bold">0%<span class="float-right text-right">0 rial </span></p>
<div class="progress progress-sm">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
</div>
</div>
</li>
</ul>
<div class="d-flex justify-content-center">
<ul class="list-group list-group-flush ">
<li class="list-group-item px-4 pb-4">
<button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-success"> پرداخت </button>
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 filter-tahsil">
<div class="card">
<img class="card-img-top" src="download.png" alt="Unsplash">
<div class="card-header px-4 pt-4">
<div class="card-actions float-left">
<!-- <div class="dropdown show">
<a href="#" data-toggle="dropdown" data-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal align-middle"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>
</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>-->
</div>
<h5 class="card-title mb-0 text-right" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> خیریه ابولفضل</h5>
<div class="badge bg-danger my-2 text-right float-right " style="color:white; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ">متوقف</div>
</div>
<div class="card-body px-4 pt-2 text-right" >
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">مددجو جز یارانه هیچ منبع درآمدی ندارن این مددجوبرای شغل بافندگی (بافندگی لباس گرم زمستانه)نیاز به مواد اولیه (نیاز ب نخ و میل و دکمه و زیپ و کاموا) دارد تا بتواند شغل خانگی خود را براه بندازد</p>
<!-- <img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28"> -->
<h5 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> مبلغ مورد نیاز: 5 میلیون تومان</h5>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item px-4 pb-4">
<p class="mb-2 font-weight-bold">0%<span class="float-right text-right">0 rial </span></p>
<div class="progress progress-sm">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
</div>
</div>
</li>
</ul>
<div class="d-flex justify-content-center">
<ul class="list-group list-group-flush ">
<li class="list-group-item px-4 pb-4">
<button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-success"> پرداخت </button>
</li>
</ul>
</div>
</div> </div>
<div class="col-12 col-md-6 col-lg-3 filter-jahiziye">
<div class="card">
<img class="card-img-top" src="download.png" alt="Unsplash">
<div class="card-header px-4 pt-4">
<div class="card-actions float-left">
<!-- <div class="dropdown show">
<a href="#" data-toggle="dropdown" data-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal align-middle"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>
</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>-->
</div>
<h5 class="card-title mb-0 text-right" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> خیریه ابولفضل</h5>
<div class="badge bg-danger my-2 text-right float-right " style="color:white; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ">متوقف</div>
</div>
<div class="card-body px-4 pt-2 text-right" >
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">مددجو جز یارانه هیچ منبع درآمدی ندارن این مددجوبرای شغل بافندگی (بافندگی لباس گرم زمستانه)نیاز به مواد اولیه (نیاز ب نخ و میل و دکمه و زیپ و کاموا) دارد تا بتواند شغل خانگی خود را براه بندازد</p>
<!-- <img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28"> -->
<h5 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> مبلغ مورد نیاز: 5 میلیون تومان</h5>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item px-4 pb-4">
<p class="mb-2 font-weight-bold">0%<span class="float-right text-right">0 rial </span></p>
<div class="progress progress-sm">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
</div>
</div>
</li>
</ul>
<div class="d-flex justify-content-center">
<ul class="list-group list-group-flush ">
<li class="list-group-item px-4 pb-4">
<button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-success"> پرداخت </button>
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 filter-eshteghal">
<div class="card">
<img class="card-img-top" src="download.png" alt="Unsplash">
<div class="card-header px-4 pt-4">
<div class="card-actions float-left">
<!-- <div class="dropdown show">
<a href="#" data-toggle="dropdown" data-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal align-middle"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>
</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>-->
</div>
<h5 class="card-title mb-0 text-right" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> خیریه ابولفضل</h5>
<div class="badge bg-danger my-2 text-right float-right " style="color:white; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ">متوقف</div>
</div>
<div class="card-body px-4 pt-2 text-right" >
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">مددجو جز یارانه هیچ منبع درآمدی ندارن این مددجوبرای شغل بافندگی (بافندگی لباس گرم زمستانه)نیاز به مواد اولیه (نیاز ب نخ و میل و دکمه و زیپ و کاموا) دارد تا بتواند شغل خانگی خود را براه بندازد</p>
<!-- <img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="rounded-circle mr-1" alt="Avatar" width="28" height="28"> -->
<h5 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;"> مبلغ مورد نیاز: 5 میلیون تومان</h5>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item px-4 pb-4">
<p class="mb-2 font-weight-bold">0%<span class="float-right text-right">0 rial </span></p>
<div class="progress progress-sm">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
</div>
</div>
</li>
</ul>
<div class="d-flex justify-content-center">
<ul class="list-group list-group-flush ">
<li class="list-group-item px-4 pb-4">
<button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-success"> پرداخت </button>
</li>
</ul>
</div>
</div>
</div>
<!--<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 filter-app">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-1.jpg" data-gall="portfolioGallery" class="venobox" title="App 1">App 1</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-1.jpg" data-gall="portfolioGallery" class="venobox" title="App 1"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-web">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-2.jpg" data-gall="portfolioGallery" class="venobox" title="Web 3">Web 3</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-2.jpg" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-app">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-3.jpg" data-gall="portfolioGallery" class="venobox" title="App 2">App 2</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-3.jpg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-card">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-4.jpg" data-gall="portfolioGallery" class="venobox" title="Card 2">Card 2</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-4.jpg" data-gall="portfolioGallery" class="venobox" title="Card 2"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-web">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-5.jpg" data-gall="portfolioGallery" class="venobox" title="Web 2">Web 2</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-5.jpg" data-gall="portfolioGallery" class="venobox" title="Web 2"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-app">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-6.jpg" data-gall="portfolioGallery" class="venobox" title="App 3">App 3</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-6.jpg" data-gall="portfolioGallery" class="venobox" title="App 3"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-card">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-7.jpg" data-gall="portfolioGallery" class="venobox" title="Card 1">Card 1</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-7.jpg" data-gall="portfolioGallery" class="venobox" title="Card 1"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-card">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-8.jpg" data-gall="portfolioGallery" class="venobox" title="Card 3">Card 3</a></h3>
<a href="assets/img/portfolio/portfolio-8.jpg" data-gall="portfolioGallery" class="venobox" title="Card 3"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 filter-web">
<div class="portfolio-item">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h3><a href="assets/img/portfolio/portfolio-9.jpg" data-gall="portfolioGallery" class="venobox" title="Web 1">Web 1</a></h3>
<div>
<a href="assets/img/portfolio/portfolio-9.jpg" data-gall="portfolioGallery" class="venobox" title="Web 1"><i class="icofont-eye"></i></a>
<a href="portfolio-details.html" title="Details"><i class="icofont-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>-->
</section><!-- End Our Portfolio Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title">
<h2 class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">سوالات متداول</h2>
</div>
<ul class="faq-list">
<li>
<a data-toggle="collapse" class="text-right" href="#faq1" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">دانه وابسته به کجاست؟ <i class="icofont-simple-up"></i></a>
<div id="faq1" class="collapse show text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
دانه دقیقا به هیچ جایی وابسته نیست، ما فکر می کنیم این جور کارها رو باید همه مردم خودشون انجام بدن، و منتظر هیچ جایی مثل دولت یا شهرداری یا حتی کمیته امداد و بهزیستی نمونن. یعنی دانه رو درحقیقت انجیاوها و خیریه ها اداره میکنن </p>
</div>
</li>
<li>
<a data-toggle="collapse" class="text-right" href="#faq2" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">دانه اصلا چیه و خلاصه چکار میکنه؟ <i class="icofont-simple-up"></i></a>
<div id="faq2" class="collapse text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
سامانه دانه قابل استفاده توسط همه مراکز خدمترسان مثل خیریهها، مساجد، گروههای جهادی، انجیاوها و ... است. این نرمافزار داره بستری فراهم میکنه تا این مراکز بهصورت کاملا رایگان و تضمینشده از قابلیتها و امکاناتی که داره برای یاری رسوندن موثرتر و سریعتر به نیازمندا بهرهمند بشن. </div>
</li>
<li>
<a data-toggle="collapse" class="text-right" href="#faq3" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"> فرآیند شناسایی نیازمندها توی این سامانه چطوریه؟ <i class="icofont-simple-up"></i></a>
<div id="faq3" class="collapse text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
ما همه دقتمون و چککردنهای تصادفی و دوره ای مون رو روی مراکز انجام میدیم و مرکزهامون که همون خیریهها و انجیاوها هستن کمکم توی سیستم دانه معتبر میشن. برای همین وظیفه شناسایی نیازمندها هم با اونهاست و ما همچنان مرتب چک میکنیم، البته هر کدوم برای خودشون روشی دارن که ما از جزئیات روش اونا لزوماً لازم هم نیست اطلاع داشتهباشیم ولی نتایج رو همیشه چک میکنیم. </div>
</li>
<li>
<a data-toggle="collapse" class="text-right" href="#faq4" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"> چطور میفهمین که نیازمندهایی که توی سامانه ثبت شدن واقعاً نیازمندن؟ <i class="icofont-simple-up"></i></a>
<div id="faq4" class="collapse text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
ما توی سامانه یه مفهومی داریم به نام مرکز، همهی خیریهها و انجیاوها و جاهایی مثل اینا، میتونن خودشون رو به عنوان مرکز توی این سامانه ثبت کنن. بعدش نیازمندها با مراجعه به این مراکز میتونن نیازشون رو اطلاع بدن و خودشون رو به عنوان نیازمند ثبت کنن. پس مراکز ارتباط مستقیم با نیازمندها دارن، و ادامهی این ارتباط میتونه سنجش خوبی باشه برای واقعیت نیازها و نیازمندهای ثبت شده. خودمون هم به طور تصادفی از این خانواده ها بازدید میکنیم.
</div>
</li>
<li>
<a data-toggle="collapse" class="text-right" href="#faq5" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">میتونیم بهتون نیازمند معرفی کنیم؟ راهکار دانه برای نیازمندها چیه؟ <i class="icofont-simple-up"></i></a>
<div id="faq5" class="collapse text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
ما چون خودمون خیریه نیستیم نمیتونیم این کار رو انجام بدیم. اما راهکاری که برای این کار در نظر گرفتیم اینه که در آینده نیازمندان از دانه مراکز نزدیک به محدوده جغرافیاییشون رو پیدا کنن و بهش مراجعه کنند و بعد از بررسی مرکز خیریه و احراز نیازمندی، از طریق دانه بشه بهش کمک کرد
</div>
</li>
<li>
<a data-toggle="collapse" class="text-right" href="#faq6" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">چطوری دانه جلوی موازیکاری مراکز خیریه رو میگیره؟ <i class="icofont-simple-up"></i></a>
<div id="faq6" class="collapse text-right" data-parent=".faq-list" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<p>
به محض اینکه یک مرکز خیریه بخواد نیازمند جدیدی ثبت کنه، دانه بهش نشون میده که این نیازمند از قبل در خیریههای دیگهای عضو هست و به این شکل همه این مراکز، نیازهای ثبت شده و کمکهای اهدا شده به اون نیازمند رو مشاهده میکنند البته هر خیریه فقط اطلاعات ثبت شده مرکز خودش رو میبینه مگر اینکه نیازمندی مشترک بین چند خیریه باشه.
</div>
</li>
</ul>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= About Us Section ======= -->
<section id="about" class="about ">
<div class="container ">
<div class="section-title">
<h2 class="font-weight-bolder" style="font-family: 'Vazir-Light', Fallback, sans-serif;">درباره ما</h2>
</div>
<div class="row">
<div class="col-lg-12 pt-4 pt-lg-1 order-2 order-lg-1">
<h2 style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">کمک رسانی هدفمند به خیریه ها</h3>
<p style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">
دانه پلتفرمی است که در ان لیست جامع خیریه های اصفهان که دارای مجوز هستند جمع شدند و کاربران به راحتی میتونند با خیریهها و گلریزون های آن آشنا بشند و به راحتی در آن شرکت کنند
</p>
<br>
<br>
</div>
<div class="col-lg-12 pt-4 pt-lg-1 order-2 order-lg-1">
<h2 style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">راه حلی امروزی تر برای رفع نیاز نیازمندان
</h3>
<p style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">
همه می دونیم که خیلی از هموطنامون تو وضعیت خوبی به سر نمی برن، و همه مون باید هر کاری از دستمون بر میاد براشون انجام بدیم، دانه هم حاصل کار چند تا جوون ه که با این فکر اومدن و دست به کار شدند. با خیریه ها و ان جی او های دیگه هم قرار نیست رقابت کنن، اتفاقاً همه ی تلاش در جهت اینه که خود اونها موثرتر بیان وسط گود و بتونن بهتر کارشون رو انجام بدن، و فرآیند کمک رسانی به هموطنانمون تو فضای شفاف تری انجام بشه.
</p>
<br>
<br>
</div>
<div class="col-lg-12 pt-4 pt-lg-1 order-2 order-lg-1">
<h2 style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">پلت فرم هوشمند دانه
</h3>
<p style="font-size:larger; font-weight: bold; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; align:right">
دانه پلت فرم هست یعنی که هم موسسات خیریه از امکانات اون استفاده میکنند و هم از سوی دیگه توانمندان هستند که گزینههای مورد نظرشون رو توی دانه پیدا میکنند و بهشون کمک میکنند. حالا یا کمک به وسیله اهدای کامل، یا پرداخت نقدی همه یا بخشی از مبلغ معادل برای تامین اون نیاز، و یا استفاده از گلریزون و جمع کردن مبلغ معادل از طریق شبکه دوستان و آشنایان. گروههای مختلف از نیازها توسط خیریه های عضو دانه بررسی و ثبت می شن تا توانمندان به بهترین نحو و در سریع ترین زمان بتونن نیاز مرتبط با توانشون رو شناسایی کنن، که از طرف خیریه مربوطه ارتباط با فرد توانمند برقرار میشه و توان ارائه شده به دست نیازمند می رسه.
</p>
<br>
<br>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Our Team Section ======= -->
<section id="team" class="team section-bg">
<div class="container">
<div class="section-title">
<h2 class="font-weight-bolder" style=" font-family: 'Vazir-Light', Fallback, sans-serif;">تیم ما</h2>
<!-- <p style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"> تیم ما گروهی از افراد با انگیزه و خیر هست که دور هم جمع شدند</p>-->
</div>
<div class="row">
<!--<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="member">
<img src="assets/img/team/team-1.jpg" alt="">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
<p>
Magni qui quod omnis unde et eos fuga et exercitationem. Odio veritatis perspiciatis quaerat qui aut aut aut
</p>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
-->
<div class="col-lg-6 col-md-6 d-flex align-items-stretch">
<div class="member">
<img src="photo_2021-03-17_09-12-44.jpg" alt="">
<h4 style="font-family: 'Vazir-Light', Fallback, sans-serif;">به افرین امام</h4>
<span style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">توسعه دهنده بک اند
</span>
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
دانشجوی مهندسی نرم افزار دانشگاه اصفهان
<br>
data science متخصص در
</p>
<div class="social">
<a href="https://twitter.com/behafarin" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://www.linkedin.com/in/behafarinemam/" target="_blank" ><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 d-flex align-items-stretch">
<div class="member">
<img src="photo_2021-03-17_09-14-11.jpg" alt="">
<h4 style="font-family: 'Vazir-Light', Fallback, sans-serif;">علی ماهوش</h4>
<span style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">توسعه دهنده فرانت اند</span>
<p style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
دانشجوی نرم افزار مهندسی کامپیوتر دانشگاه اصفهان
<br>
ENFP فردی علاقه مند به کار گروهی و هیجان با تیپ شخصیتی
<br>
front-end, software engineer, project management علاقه مند
</p>
<div class="social">
<a href="https://twitter.com/ali_mahvash" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://www.facebook.com/ali.mahvash.9/" target="_blank"><i class="icofont-facebook"></i></a>
<a href="https://www.instagram.com/ali_mahvash.m/" target="_blank"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/ali-mahvash-745b1b194/" target="_blank"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Our Team Section -->
<!-- ======= Contact Us Section ======= -->
<section id="contact" class="contact ">
<div class="container">
<div class="section-title">
<h2 class="font-weight-bolder" style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">ارتباط با ما</h2>
<p style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"></p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="info">
</div>
</div>
<div class="col-lg-6 col-md-4">
<h4 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: right; font-weight: lighter;">پیامتون را برای ما ارسال کنید</h4>
<br>
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="form-group">
<input style="text-align: right; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: right; font-weight: lighter;" type="text" name="name" class="form-control" id="name" placeholder="نام" data-rule="minlen:4" data-msg="حداقل 4 حرف باید وارد شود" />
<div class="validate"></div>
</div>
<div class="form-group">
<input style="text-align: right; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: right; font-weight: lighter;" type="email" class="form-control" name="email" id="email" placeholder="فامیل" data-rule="email" data-msg="لطفا ایمیل معتبر وارد کنید" />
<div class="validate"></div>
</div>
<div class="form-group">
<input style="text-align: right; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: right; font-weight: lighter;" type="text" class="form-control" name="subject" id="subject" placeholder="موضوع" data-rule="minlen:4" data-msg="حداقل 8 حرف باید وارد شود" />
<div class="validate"></div>
</div>
<div class="form-group ">
<textarea style="text-align: right; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: right; font-weight: lighter;" class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="لطفا پیام خود را وارد کنید"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">منتظر بمانید</div>
<div class="error-message"></div>
<div class="sent-message">پیام شما با موفقیت ارسال شد</div>
</div>
<div class="text-center"><button type="submit">ارسال پیام</button></div>
</form>
</div>
<div class="col-lg-3 col-md-6">
<br>
<br>
<br>
<br>
<br>
<div class="contact-about float-right">
<div>
<i class="icofont-google-map float-right"></i>
<p class="float-right" style="text-align: right; font-weight: 500; font-size: light; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"> اصفهان <br> دانشگاه اصفهان </p>
</div>
<br>
<br>
<br>
<div class="float-right">
<i class="icofont-envelope float-right "></i>
<p class="float-right"style="font-size: light; font-weight: 700; "> dane@support.com </p>
</div>
<br>
<br>
<div >
<i class="icofont-phone float-right "></i>
<p class="float-right"style="font-size: light; font-weight: 700; "> 0313-111-0000 </p>
</div>
<br>
<br>
</div>
<div class="social-links float-right">
<a href="#" class="twitter"><i class="icofont-twitter"></i></a>
<a href="#" class="facebook"><i class="icofont-facebook"></i></a>
<a href="#" class="instagram"><i class="icofont-instagram"></i></a>
<a href="#" class="linkedin"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</section><!-- End Contact Us Section -->
<!-- ======= Map Section ======= -->
<!--
<section class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3024.2219901290355!2d-74.00369368400567!3d40.71312937933185!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c25a23e28c1191%3A0x49f75d3281df052a!2s150%20Park%20Row%2C%20New%20York%2C%20NY%2010007%2C%20USA!5e0!3m2!1sen!2sbg!4v1579767901424!5m2!1sen!2sbg" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</section> --><!-- End Map Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
<!-- © Copyright <strong><span>Amoeba</span></strong>. All Rights Reserved-->
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/ -->
Designed by <a href="#">Behafarin Emam &</a><a href="#"> Ali Mahvash</a>
</div>
</div>
</footer><!-- End #footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
=======
<!DOCTYPE html>
<html lang="en">
<head>
<style>
</style>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Amoeba Bootstrap Template - Home</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link rel="stylesheet" href="css/styleTest.css">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Lato:400,300,700,900" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Amoeba - v2.3.1
* Template URL: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container">
<div class="logo float-right">
<!-- <h1 class="text-light"><a href="index.html"><span>دانه</span></a></h1>-->
<a href="index.html"> <img src="logo2-removebg-preview (1).png" alt="دانه" ></a>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu float-left d-none d-lg-block">
<ul >
<li><button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" class="btn btn-success"> ثبت نام </button></li>
<li><button type="button" style="padding-bottom: 4px; margin:10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; " class="btn btn-primary"> ورود </button></li>
<li ><a class="font-weight-bolder" href="#contact" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">ارتباط با ما </a></li>
<li ><a class="font-weight-bolder" href="#about" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">درباره ما</a></li>
<li><a class="font-weight-bolder" href="#team" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">اعضای تیم</a></li>
<li><a class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" href="#faq">سوالات متداول</a></li>
<!-- <li><a href="#services">Services</a></li>-->
<li><a class="font-weight-bolder" href="#portfolio" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">گلریزان</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End #header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<!-- <a href="#signup" class="btn-get-started scrollto font-weight-bolder">ثبت نام</a>
<br>
<a href="#login" class="btn-get-started scrollto font-weight-bolder">ورود</a>
-->
<!-- <h2 s">ره نیک مردان آزاده گیر </h2>
<h2 class="header__title bold">چو ایستادهای دست افتاده گیر </h2>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>-->
</section><!-- #hero -->
<main id="main">
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services section-bg">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-computer"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-chart-bar-graph"></i></div>
<h4 class="title"><a href="">Dolor Sitema</a></h4>
<p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat tarad limino ata</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-earth"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-settings"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque</p>
</div>
<div class="col-lg-4 col-md-6 icon-box">
<div class="icon"><i class="icofont-tasks-alt"></i></div>
<h4 class="title"><a href="">Eiusmod Tempor</a></h4>
<p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi</p>
</div>
</div>
</div>
</section>--><!-- End Services Section -->
<!-- ======= Call To Action Section ======= -->
<!--<section class="call-to-action">
<div class="container">
<div class="text-center">
<h3>Call To Action</h3>
<p> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<a class="cta-btn" href="#">Call To Action</a>
</div>
</div>
</section>--><!-- End Call To Action Section -->
<!-- ======= Our Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2 class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">گلریزان ها</h2>
</div>
<div class="row">
<div class="col-lg-12" dir="RTL">
<ul id="portfolio-flters" >
<li data-filter="*" class="filter-active font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">همه</li>
<li data-filter=".filter-darman" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">درمان</li>
<li data-filter=".filter-tahsil" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">تحصیل کودکان کار</li>
<li data-filter=".filter-jahiziye" class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">جهیزیه</li>
<li data-filter=".filter-eshteghal"class="font-weight-bolder" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:large;">اشتغال</li>
</ul>
</div>
</div>
<div class="container">
<div class="row portfolio-container">
<div class="col-12 col-md-6 col-lg-3 filter-darman">
<div class="card">
<img class="card-img-top" src="https://kavala.ir/wp-content/uploads/2020/04/e084c349-4783-4969-897d-ddb3e8b40630.jpg" alt="Unsplash">
<div class="card-header px-4 pt-4">
<div class="card-actions float-left">