-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
1150 lines (1147 loc) · 74.7 KB
/
blog.html
File metadata and controls
1150 lines (1147 loc) · 74.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="author" content="" />
<title>Gainioz - Charity & Donation HTML Template - Standard Blog </title>
<link rel="icon" href="image/favicon.png" type="image/png">
<link rel="stylesheet" href="assets/animation/animate.min.css">
<link rel="stylesheet" href="assets/animation/custom-animation.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/swiper/swiper.min.css">
<link rel="stylesheet" href="assets/fontawesome/css/all.min.css">
<link rel="stylesheet" href="assets/nice-select/nice-select.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="ctn-preloader" id="ctn-preloader">
<div class="round_spinner">
<div class="spinner"></div>
<div class="text">
<img src="image/logos/logo_1.svg" alt="Gainioz">
</div>
</div>
<h2 class="head">DO GOOD FOR OTHERS</h2>
<p></p>
</div>
</div>
<!-- Preloader End -->
<!-- Main -->
<main class="main">
<!-- Header Style One -->
<!-- header -->
<header class="header header--styleFour sticky-on">
<div>
<div class="container container--custom">
<div class="row">
<div class="col-12">
<div class="header__wrapper">
<!-- logo start -->
<div class="header__logo">
<a href="index.html" class="header__logo__link">
<img src="image/logos/logo_1.svg" alt="Gainioz" class="header__logo__image">
</a>
</div>
<!-- logo end -->
<!-- Main Menu Start -->
<div class="header__menu">
<nav class="mainMenu">
<ul>
<li class="dropdown"><a href="index.html">Home</a>
<ul class="dropdown_menu dropdown_menu-2">
<li class="dropdown_item-1"><a href="index.html">Home 1</a></li>
<li class="dropdown_item-2"><a href="index-2.html">Home 2</a></li>
<li class="dropdown_item-3"><a href="index-3.html">Home 3</a></li>
<li class="dropdown_item-4"><a href="index-4.html">Home 4</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="donation-listing.html">Donations</a></li>
<li><a href="blog.html">Blog</a></li>
<li class="dropdown"><a href="index.html">Pages</a>
<ul class="dropdown_menu dropdown_menu-2">
<li class="dropdown_item-1"><a href="events.html">Events</a></li>
<li class="dropdown_item-2"><a href="faq.html">FAQ`s</a></li>
<li class="dropdown_item-3"><a href="products.html">Shop</a></li>
<li class="dropdown_item-4"><a href="service.html">Services</a></li>
<li class="dropdown_item-5"><a href="volunteers.html">Volunteers</a></li>
</ul>
</li>
<li><a href="contact.html">Contacts</a></li>
</ul>
</nav>
</div>
<!-- Main Menu End -->
<!-- Header Right Buttons Search Cart -->
<div class="header__right">
<div class="header__actions header__actions--style2">
<ul>
<li>
<a href="#template-search">
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.8281 21.4609L16.2852 15.918C16.1992 15.832 16.0703 15.7891 15.9414 15.7891H15.4688C16.9727 14.1562 17.875 12.0508 17.875 9.6875C17.875 4.78906 13.8359 0.75 8.9375 0.75C3.99609 0.75 0 4.78906 0 9.6875C0 14.6289 3.99609 18.625 8.9375 18.625C11.2578 18.625 13.4062 17.7227 14.9961 16.2617V16.6914C14.9961 16.8633 15.0391 16.9922 15.125 17.0781L20.668 22.6211C20.8828 22.8359 21.1836 22.8359 21.3984 22.6211L21.8281 22.1914C22.043 21.9766 22.043 21.6758 21.8281 21.4609ZM8.9375 17.25C4.72656 17.25 1.375 13.8984 1.375 9.6875C1.375 5.51953 4.72656 2.125 8.9375 2.125C13.1055 2.125 16.5 5.51953 16.5 9.6875C16.5 13.8984 13.1055 17.25 8.9375 17.25Z" fill="#7FB432" />
</svg>
</a>
</li>
<li>
<a href="products.html">
<span>2</span>
<svg width="25" height="20" viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24.2344 7H20.9258L14.9102 0.382812C14.6523 0.0820312 14.2227 0.0820312 13.9648 0.339844C13.6641 0.597656 13.6641 1.02734 13.9219 1.28516L19.0781 7H5.62891L10.7852 1.28516C11.043 1.02734 11.043 0.597656 10.7422 0.339844C10.4844 0.0820312 10.0547 0.0820312 9.79688 0.382812L3.78125 7H0.515625C0.214844 7 0 7.25781 0 7.51562V7.85938C0 8.16016 0.214844 8.375 0.515625 8.375H1.20312L2.49219 17.6133C2.62109 18.6445 3.48047 19.375 4.51172 19.375H20.1953C21.2266 19.375 22.0859 18.6445 22.2148 17.6133L23.5039 8.375H24.2344C24.4922 8.375 24.75 8.16016 24.75 7.85938V7.51562C24.75 7.25781 24.4922 7 24.2344 7ZM20.8828 17.4414C20.7969 17.7852 20.5391 18 20.1953 18H4.51172C4.16797 18 3.91016 17.7852 3.82422 17.4414L2.57812 8.375H22.1289L20.8828 17.4414ZM13.0625 10.7812C13.0625 10.4375 12.7188 10.0938 12.375 10.0938C11.9883 10.0938 11.6875 10.4375 11.6875 10.7812V15.5938C11.6875 15.9805 11.9883 16.2812 12.375 16.2812C12.7188 16.2812 13.0625 15.9805 13.0625 15.5938V10.7812ZM17.875 10.7812C17.875 10.4375 17.5312 10.0938 17.1875 10.0938C16.8008 10.0938 16.5 10.4375 16.5 10.7812V15.5938C16.5 15.9805 16.8008 16.2812 17.1875 16.2812C17.5312 16.2812 17.875 15.9805 17.875 15.5938V10.7812ZM8.25 10.7812C8.25 10.4375 7.90625 10.0938 7.5625 10.0938C7.17578 10.0938 6.875 10.4375 6.875 10.7812V15.5938C6.875 15.9805 7.17578 16.2812 7.5625 16.2812C7.90625 16.2812 8.25 15.9805 8.25 15.5938V10.7812Z" fill="#7FB432" />
</svg>
</a>
</li>
</ul>
</div>
<div class="header__button">
<a class="btn btn--styleOne btn--secondary it-btn" href="donation-listing.html">
<span class="btn__text">donate now</span>
<i class="fa-solid fa-heart btn__icon"></i>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10">
</feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
</div>
<!-- Header Right Buttons Search Cart -->
</div>
</div>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- Mobile Menu Button Start -->
<div class="header header--mobile cc-header-menu mean-container position-relative" id="meanmenu">
<div class="mean-bar headerBurgerMenu">
<a href="index.html">
<img class="mean-bar__logo" alt="Techkit" src="image/logos/logo_1.svg" />
</a>
<!-- Header Right Buttons Search Cart -->
<div class="header__right">
<div class="header__actions">
<ul>
<li>
<a href="products.html">
<svg width="25" height="20" viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24.2344 7H20.9258L14.9102 0.382812C14.6523 0.0820312 14.2227 0.0820312 13.9648 0.339844C13.6641 0.597656 13.6641 1.02734 13.9219 1.28516L19.0781 7H5.62891L10.7852 1.28516C11.043 1.02734 11.043 0.597656 10.7422 0.339844C10.4844 0.0820312 10.0547 0.0820312 9.79688 0.382812L3.78125 7H0.515625C0.214844 7 0 7.25781 0 7.51562V7.85938C0 8.16016 0.214844 8.375 0.515625 8.375H1.20312L2.49219 17.6133C2.62109 18.6445 3.48047 19.375 4.51172 19.375H20.1953C21.2266 19.375 22.0859 18.6445 22.2148 17.6133L23.5039 8.375H24.2344C24.4922 8.375 24.75 8.16016 24.75 7.85938V7.51562C24.75 7.25781 24.4922 7 24.2344 7ZM20.8828 17.4414C20.7969 17.7852 20.5391 18 20.1953 18H4.51172C4.16797 18 3.91016 17.7852 3.82422 17.4414L2.57812 8.375H22.1289L20.8828 17.4414ZM13.0625 10.7812C13.0625 10.4375 12.7188 10.0938 12.375 10.0938C11.9883 10.0938 11.6875 10.4375 11.6875 10.7812V15.5938C11.6875 15.9805 11.9883 16.2812 12.375 16.2812C12.7188 16.2812 13.0625 15.9805 13.0625 15.5938V10.7812ZM17.875 10.7812C17.875 10.4375 17.5312 10.0938 17.1875 10.0938C16.8008 10.0938 16.5 10.4375 16.5 10.7812V15.5938C16.5 15.9805 16.8008 16.2812 17.1875 16.2812C17.5312 16.2812 17.875 15.9805 17.875 15.5938V10.7812ZM8.25 10.7812C8.25 10.4375 7.90625 10.0938 7.5625 10.0938C7.17578 10.0938 6.875 10.4375 6.875 10.7812V15.5938C6.875 15.9805 7.17578 16.2812 7.5625 16.2812C7.90625 16.2812 8.25 15.9805 8.25 15.5938V10.7812Z" fill="#7FB432" />
</svg>
</a>
</li>
<li>
<a href="#">
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.8281 21.4609L16.2852 15.918C16.1992 15.832 16.0703 15.7891 15.9414 15.7891H15.4688C16.9727 14.1562 17.875 12.0508 17.875 9.6875C17.875 4.78906 13.8359 0.75 8.9375 0.75C3.99609 0.75 0 4.78906 0 9.6875C0 14.6289 3.99609 18.625 8.9375 18.625C11.2578 18.625 13.4062 17.7227 14.9961 16.2617V16.6914C14.9961 16.8633 15.0391 16.9922 15.125 17.0781L20.668 22.6211C20.8828 22.8359 21.1836 22.8359 21.3984 22.6211L21.8281 22.1914C22.043 21.9766 22.043 21.6758 21.8281 21.4609ZM8.9375 17.25C4.72656 17.25 1.375 13.8984 1.375 9.6875C1.375 5.51953 4.72656 2.125 8.9375 2.125C13.1055 2.125 16.5 5.51953 16.5 9.6875C16.5 13.8984 13.1055 17.25 8.9375 17.25Z" fill="#7FB432" />
</svg>
</a>
</li>
<li>
<button class="headerBurgerMenu__button sidebarBtn" onclick="this.classList.toggle('opened');this.setAttribute('aria-expanded', this.classList.contains('opened'))" aria-label="Main Menu">
<svg width="50" height="50" viewBox="0 0 100 100">
<path class="line line1" d="M 20,29.000046 H 80.000231 C 80.000231,29.000046 94.498839,28.817352 94.532987,66.711331 94.543142,77.980673 90.966081,81.670246 85.259173,81.668997 79.552261,81.667751 75.000211,74.999942 75.000211,74.999942 L 25.000021,25.000058" />
<path class="line line2" d="M 20,50 H 80" />
<path class="line line3" d="M 20,70.999954 H 80.000231 C 80.000231,70.999954 94.498839,71.182648 94.532987,33.288669 94.543142,22.019327 90.966081,18.329754 85.259173,18.331003 79.552261,18.332249 75.000211,25.000058 75.000211,25.000058 L 25.000021,74.999942" />
</svg>
</button>
</li>
</ul>
</div>
</div>
<!-- Header Right Buttons Search Cart -->
</div>
</div>
<!-- Mobile Menu Button End -->
<!-- Mobile Menu Navbar -->
<div class="cc cc--slideNav">
<div class="cc__logo mb-40">
<a href="index.html">
<img class="mean-bar__logo" alt="Techkit" src="image/logos/logo_1.svg" />
</a>
</div>
<div class="offscreen-navigation mb-40">
<nav class="menu-main-primary-container">
<ul class="menu">
<li class="list menu-item-parent menu-item-has-children">
<a class="animation" href="index.html">Home</a>
<ul class="main-menu__dropdown sub-menu">
<li><a href="index.html">Home One</a></li>
<li>
<a href="index-2.html">Home Two</a>
</li>
<li><a href="index-3.html">Home Three</a></li>
<li>
<a href="index-4.html">Home Four</a>
</li>
<!-- <li class="list menu-item-has-children">
<a href="vertical-slider.html">Home Dummy</a>
<ul class="main-menu__dropdown sub-menu">
<li><a href="single-post1.html">Home Demo 1</a></li>
<li><a href="single-post2.html">Home Demo 2</a></li>
<li><a href="single-post3.html">Home Demo 3</a></li>
</ul>
</li> -->
</ul>
</li>
<li class="list menu-item-parent">
<a class="animation" href="about.html">About</a>
</li>
<li class="list menu-item-parent">
<a class="animation" href="donation-listing.html">Donations</a>
</li>
<li class="list menu-item-parent">
<a class="animation" href="blog.html">Blog</a>
</li>
<li class="list menu-item-parent menu-item-has-children">
<a class="animation" href="index.html">Pages</a>
<ul class="main-menu__dropdown sub-menu">
<li><a href="events.html">Events</a></li>
<li>
<a href="faq.html">Faq</a>
</li>
<li><a href="products.html">Shop</a></li>
<li>
<a href="service.html">Service</a>
</li>
<li>
<a href="volunteers.html">Volunteers</a>
</li>
</ul>
</li>
<li class="list menu-item-parent">
<a class="animation" href="contact.html">Contacts</a>
</li>
</ul>
</nav>
</div>
<div class="itSocial itSocial--sidebar mb-40">
<ul>
<li>
<a class="facebook" href="https://codercredit.com/" rel="nofollow">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a class="twitter" href="https://codercredit.com/" rel="nofollow">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a class="instagram" href="https://codercredit.com/" rel="nofollow">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a class="linkedin" href="https://codercredit.com/" rel="nofollow">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
<div class="cc__button">
<div class="header__button">
<a class="btn btn--styleOne btn--secondary it-btn" href="donation-listing.html">
<span class="btn__text">Contact Us</span>
<i class="fa-solid fa-heart btn__icon"></i>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10">
</feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
</div>
</div>
<!-- Mobile Menu Navbar End -->
<!-- Header Style One End -->
<!-- Page Breadcumb -->
<section class="pageBreadcumb pageBreadcumb--style1 position-relative" data-bg-image="image/bg/pageBreadcumbBg1.jpg">
<div class="pageBreadcumbTopDown">
<a class="btn btn--styleOne btn--icon btn--icon2 it-btn" href="donation-listing.html">
<svg class="btn__icon" width="10" height="14" viewBox="0 0 10 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.869141 8.70508L1.45508 8.11914C1.60156 8.00195 1.80664 8.00195 1.95312 8.14844L4.23828 10.4922V0.414062C4.23828 0.208984 4.38477 0.0625 4.58984 0.0625H5.41016C5.58594 0.0625 5.76172 0.208984 5.76172 0.414062V10.4922L8.01758 8.14844C8.16406 8.00195 8.36914 8.00195 8.51562 8.11914L9.10156 8.70508C9.21875 8.85156 9.21875 9.05664 9.10156 9.20312L5.23438 13.0703C5.08789 13.1875 4.88281 13.1875 4.73633 13.0703L0.869141 9.20312C0.751953 9.05664 0.751953 8.85156 0.869141 8.70508Z" fill="#60646B" />
</svg>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
<div class="sectionShape sectionShape--top">
<img src="image/shapes/pagebreadcumbShapeTop.svg" alt="Gainioz">
</div>
<div class="sectionShape sectionShape--bottom">
<img src="image/shapes/pagebreadcumbShapeBottom.svg" alt="Gainioz">
</div>
<div class="container">
<div class="row">
<div class="col-12">
<div class="pageTitle text-center">
<h2 class="pageTitle__heading text-white text-uppercase mb-25">Recent Blog</h2>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Blog</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
</section>
<!-- Page Breadcumb End -->
<!-- Donation Details -->
<section class="donation pt-130 pb-100">
<div class="container">
<div class="row">
<div class="col-lg-8 mb-30">
<div class="innerWrapper">
<div class="row">
<div class="col-lg-12 mb-55">
<div class="blogBlock blogBlock--style4 hoverStyle">
<figure class="blogBlock__figure overflow-hidden">
<a href="blog-details.html" class="blogBlock__figure__link">
<img src="image/blog/blogBig1.jpg" alt="Gainioz Blog" class="blogBlock__figure__image image-saturation">
</a>
</figure>
<div class="blogBlock__content">
<div class="blogBlock__button">
<a class="btn btn--styleOne btn--icon btn--icon2 it-btn" href="blog-details.html">
<svg class="btn__icon" width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9336 0.890625L10.6523 1.13672C10.5117 1.3125 10.5117 1.55859 10.6523 1.73438L13.6055 4.65234H0.421875C0.175781 4.65234 0 4.86328 0 5.07422V5.42578C0 5.67188 0.175781 5.84766 0.421875 5.84766H13.6055L10.6523 8.80078C10.5117 8.97656 10.5117 9.22266 10.6523 9.39844L10.9336 9.64453C11.0742 9.82031 11.3555 9.82031 11.5312 9.64453L15.6094 5.56641C15.7852 5.39062 15.7852 5.14453 15.6094 4.96875L11.5312 0.890625C11.3555 0.714844 11.0742 0.714844 10.9336 0.890625Z" fill="#0B0B0B" />
</svg>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
<div class="blogBlock__header">
<div class="blogBlock__meta mb-15">
<ul class="blogBlock__meta__list">
<li>
<a class="blogBlock__metaUser" href="contact.html">
<img class="blogBlock__metaUser__thumb" src="image/users/user2.jpg" alt="Gainioz User">
<span class="blogBlock__metaUser__name">Savannah Nguyen</span>
</a>
</li>
</ul>
</div>
<h2 class="blogBlock__heading heading text-uppercase mb-20">
<a class="blogBlock__heading__link" href="blog-details.html">
Great bulk recipes to help use all your organic vegetables
</a>
</h2>
</div>
<div class="blogBlock__body mb-25">
<p class="blogBlock__text text">
There are many variations of passages of Lorem Ipsum available, but the majority have alteration
in some form, by injected humour, or randomised words which don't look even slightly.
</p>
</div>
<div class="blogBlock__meta blogBlock__meta--style2">
<ul>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2H11V0.375C11 0.1875 10.8125 0 10.625 0H10.375C10.1562 0 10 0.1875 10 0.375V2H4V0.375C4 0.1875 3.8125 0 3.625 0H3.375C3.15625 0 3 0.1875 3 0.375V2H1.5C0.65625 2 0 2.6875 0 3.5V14.5C0 15.3438 0.65625 16 1.5 16H12.5C13.3125 16 14 15.3438 14 14.5V3.5C14 2.6875 13.3125 2 12.5 2ZM1.5 3H12.5C12.75 3 13 3.25 13 3.5V5H1V3.5C1 3.25 1.21875 3 1.5 3ZM12.5 15H1.5C1.21875 15 1 14.7812 1 14.5V6H13V14.5C13 14.7812 12.75 15 12.5 15ZM4.625 10C4.8125 10 5 9.84375 5 9.625V8.375C5 8.1875 4.8125 8 4.625 8H3.375C3.15625 8 3 8.1875 3 8.375V9.625C3 9.84375 3.15625 10 3.375 10H4.625ZM7.625 10C7.8125 10 8 9.84375 8 9.625V8.375C8 8.1875 7.8125 8 7.625 8H6.375C6.15625 8 6 8.1875 6 8.375V9.625C6 9.84375 6.15625 10 6.375 10H7.625ZM10.625 10C10.8125 10 11 9.84375 11 9.625V8.375C11 8.1875 10.8125 8 10.625 8H9.375C9.15625 8 9 8.1875 9 8.375V9.625C9 9.84375 9.15625 10 9.375 10H10.625ZM7.625 13C7.8125 13 8 12.8438 8 12.625V11.375C8 11.1875 7.8125 11 7.625 11H6.375C6.15625 11 6 11.1875 6 11.375V12.625C6 12.8438 6.15625 13 6.375 13H7.625ZM4.625 13C4.8125 13 5 12.8438 5 12.625V11.375C5 11.1875 4.8125 11 4.625 11H3.375C3.15625 11 3 11.1875 3 11.375V12.625C3 12.8438 3.15625 13 3.375 13H4.625ZM10.625 13C10.8125 13 11 12.8438 11 12.625V11.375C11 11.1875 10.8125 11 10.625 11H9.375C9.15625 11 9 11.1875 9 11.375V12.625C9 12.8438 9.15625 13 9.375 13H10.625Z" fill="#666666" />
</svg>
<span>25 january 2021</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 5H13V2C13 0.90625 12.0938 0 11 0H2C0.875 0 0 0.90625 0 2V7C0 8.125 0.875 9 2 9H3V10.625C3 10.875 3.15625 11 3.375 11C3.4375 11 3.5 11 3.59375 10.9375L6 9.59375V12C6 13.125 6.875 14 8 14H11L14.375 15.9375C14.4688 16 14.5312 16 14.625 16C14.8125 16 15 15.875 15 15.625V14H16C17.0938 14 18 13.125 18 12V7C18 5.90625 17.0938 5 16 5ZM2 8C1.4375 8 1 7.5625 1 7V2C1 1.46875 1.4375 1 2 1H11C11.5312 1 12 1.46875 12 2V7C12 7.5625 11.5312 8 11 8H6.71875L6.5 8.15625L4 9.5625V8H2ZM17 12C17 12.5625 16.5312 13 16 13H14V14.5625L11.4688 13.1562L11.25 13H8C7.4375 13 7 12.5625 7 12V9H11C12.0938 9 13 8.125 13 7V6H16C16.5312 6 17 6.46875 17 7V12Z" fill="#666666" />
</svg>
<span>Comment (08)</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.6875 5.31246L9.6875 0.312461C9.0625 -0.312539 8 0.124961 8 1.03121V3.28121C4.375 3.40621 0 4.15621 0 8.93746C0 10.9687 1.03125 12.6562 2.65625 13.8125C3.40625 14.375 4.46875 13.6562 4.1875 12.75C3.34375 9.68746 4.1875 8.93746 8 8.78121V11C8 11.9062 9.0625 12.3437 9.6875 11.7187L14.6875 6.71871C15.0938 6.34371 15.0938 5.68746 14.6875 5.31246ZM9 11.0312V7.78121C4.4375 7.81246 1.96875 8.46871 3.25 13.0312C2.25 12.2812 1 10.9687 1 8.93746C1 4.84371 4.90625 4.31246 9 4.28121V1.03121L14 6.03121L9 11.0312ZM17.6875 6.71871C18.0938 6.34371 18.0938 5.68746 17.6875 5.31246L12.6875 0.312461C12.2812 -0.125039 11.6562 -0.0625389 11.2812 0.312461L17 6.03121L11.2812 11.7187C11.6562 12.0937 12.2812 12.1562 12.6875 11.7187L17.6875 6.71871Z" fill="#666666" />
</svg>
<span>08</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-12 mb-55">
<div class="blogBlock blogBlock--style4 hoverStyle">
<figure class="blogBlock__figure overflow-hidden">
<a href="blog-details.html" class="blogBlock__figure__link">
<img src="image/blog/blogBig2.jpg" alt="Gainioz Blog" class="blogBlock__figure__image image-saturation">
</a>
</figure>
<div class="blogBlock__content">
<div class="blogBlock__button">
<a class="btn btn--styleOne btn--icon btn--icon2 it-btn" href="blog-details.html">
<svg class="btn__icon" width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9336 0.890625L10.6523 1.13672C10.5117 1.3125 10.5117 1.55859 10.6523 1.73438L13.6055 4.65234H0.421875C0.175781 4.65234 0 4.86328 0 5.07422V5.42578C0 5.67188 0.175781 5.84766 0.421875 5.84766H13.6055L10.6523 8.80078C10.5117 8.97656 10.5117 9.22266 10.6523 9.39844L10.9336 9.64453C11.0742 9.82031 11.3555 9.82031 11.5312 9.64453L15.6094 5.56641C15.7852 5.39062 15.7852 5.14453 15.6094 4.96875L11.5312 0.890625C11.3555 0.714844 11.0742 0.714844 10.9336 0.890625Z" fill="#0B0B0B" />
</svg>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
<div class="blogBlock__header">
<div class="blogBlock__meta mb-15">
<ul class="blogBlock__meta__list">
<li>
<a class="blogBlock__metaUser" href="contact.html">
<img class="blogBlock__metaUser__thumb" src="image/users/user2.jpg" alt="Gainioz User">
<span class="blogBlock__metaUser__name">Savannah Nguyen</span>
</a>
</li>
</ul>
</div>
<h2 class="blogBlock__heading heading text-uppercase mb-20">
<a class="blogBlock__heading__link" href="blog-details.html">
Raise donations for amazing charities whenever you shop online!
</a>
</h2>
</div>
<div class="blogBlock__body mb-25">
<p class="blogBlock__text text">
There are many variations of passages of Lorem Ipsum available, but the majority have alteration
in some form, by injected humour, or randomised words which don't look even slightly.
</p>
</div>
<div class="blogBlock__meta blogBlock__meta--style2">
<ul>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2H11V0.375C11 0.1875 10.8125 0 10.625 0H10.375C10.1562 0 10 0.1875 10 0.375V2H4V0.375C4 0.1875 3.8125 0 3.625 0H3.375C3.15625 0 3 0.1875 3 0.375V2H1.5C0.65625 2 0 2.6875 0 3.5V14.5C0 15.3438 0.65625 16 1.5 16H12.5C13.3125 16 14 15.3438 14 14.5V3.5C14 2.6875 13.3125 2 12.5 2ZM1.5 3H12.5C12.75 3 13 3.25 13 3.5V5H1V3.5C1 3.25 1.21875 3 1.5 3ZM12.5 15H1.5C1.21875 15 1 14.7812 1 14.5V6H13V14.5C13 14.7812 12.75 15 12.5 15ZM4.625 10C4.8125 10 5 9.84375 5 9.625V8.375C5 8.1875 4.8125 8 4.625 8H3.375C3.15625 8 3 8.1875 3 8.375V9.625C3 9.84375 3.15625 10 3.375 10H4.625ZM7.625 10C7.8125 10 8 9.84375 8 9.625V8.375C8 8.1875 7.8125 8 7.625 8H6.375C6.15625 8 6 8.1875 6 8.375V9.625C6 9.84375 6.15625 10 6.375 10H7.625ZM10.625 10C10.8125 10 11 9.84375 11 9.625V8.375C11 8.1875 10.8125 8 10.625 8H9.375C9.15625 8 9 8.1875 9 8.375V9.625C9 9.84375 9.15625 10 9.375 10H10.625ZM7.625 13C7.8125 13 8 12.8438 8 12.625V11.375C8 11.1875 7.8125 11 7.625 11H6.375C6.15625 11 6 11.1875 6 11.375V12.625C6 12.8438 6.15625 13 6.375 13H7.625ZM4.625 13C4.8125 13 5 12.8438 5 12.625V11.375C5 11.1875 4.8125 11 4.625 11H3.375C3.15625 11 3 11.1875 3 11.375V12.625C3 12.8438 3.15625 13 3.375 13H4.625ZM10.625 13C10.8125 13 11 12.8438 11 12.625V11.375C11 11.1875 10.8125 11 10.625 11H9.375C9.15625 11 9 11.1875 9 11.375V12.625C9 12.8438 9.15625 13 9.375 13H10.625Z" fill="#666666" />
</svg>
<span>25 january 2021</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 5H13V2C13 0.90625 12.0938 0 11 0H2C0.875 0 0 0.90625 0 2V7C0 8.125 0.875 9 2 9H3V10.625C3 10.875 3.15625 11 3.375 11C3.4375 11 3.5 11 3.59375 10.9375L6 9.59375V12C6 13.125 6.875 14 8 14H11L14.375 15.9375C14.4688 16 14.5312 16 14.625 16C14.8125 16 15 15.875 15 15.625V14H16C17.0938 14 18 13.125 18 12V7C18 5.90625 17.0938 5 16 5ZM2 8C1.4375 8 1 7.5625 1 7V2C1 1.46875 1.4375 1 2 1H11C11.5312 1 12 1.46875 12 2V7C12 7.5625 11.5312 8 11 8H6.71875L6.5 8.15625L4 9.5625V8H2ZM17 12C17 12.5625 16.5312 13 16 13H14V14.5625L11.4688 13.1562L11.25 13H8C7.4375 13 7 12.5625 7 12V9H11C12.0938 9 13 8.125 13 7V6H16C16.5312 6 17 6.46875 17 7V12Z" fill="#666666" />
</svg>
<span>Comment (08)</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.6875 5.31246L9.6875 0.312461C9.0625 -0.312539 8 0.124961 8 1.03121V3.28121C4.375 3.40621 0 4.15621 0 8.93746C0 10.9687 1.03125 12.6562 2.65625 13.8125C3.40625 14.375 4.46875 13.6562 4.1875 12.75C3.34375 9.68746 4.1875 8.93746 8 8.78121V11C8 11.9062 9.0625 12.3437 9.6875 11.7187L14.6875 6.71871C15.0938 6.34371 15.0938 5.68746 14.6875 5.31246ZM9 11.0312V7.78121C4.4375 7.81246 1.96875 8.46871 3.25 13.0312C2.25 12.2812 1 10.9687 1 8.93746C1 4.84371 4.90625 4.31246 9 4.28121V1.03121L14 6.03121L9 11.0312ZM17.6875 6.71871C18.0938 6.34371 18.0938 5.68746 17.6875 5.31246L12.6875 0.312461C12.2812 -0.125039 11.6562 -0.0625389 11.2812 0.312461L17 6.03121L11.2812 11.7187C11.6562 12.0937 12.2812 12.1562 12.6875 11.7187L17.6875 6.71871Z" fill="#666666" />
</svg>
<span>08</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-12 mb-55">
<div class="blogBlock blogBlock--style4">
<div class="blogBlock__content">
<div class="blogBlock__header">
<h2 class="blogBlock__heading heading text-uppercase mb-20">
<a class="blogBlock__heading__link" href="blog-details.html">
Quite post
</a>
</h2>
</div>
<div class="blogBlock__meta blogBlock__meta--style2 mb-40">
<ul>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2H11V0.375C11 0.1875 10.8125 0 10.625 0H10.375C10.1562 0 10 0.1875 10 0.375V2H4V0.375C4 0.1875 3.8125 0 3.625 0H3.375C3.15625 0 3 0.1875 3 0.375V2H1.5C0.65625 2 0 2.6875 0 3.5V14.5C0 15.3438 0.65625 16 1.5 16H12.5C13.3125 16 14 15.3438 14 14.5V3.5C14 2.6875 13.3125 2 12.5 2ZM1.5 3H12.5C12.75 3 13 3.25 13 3.5V5H1V3.5C1 3.25 1.21875 3 1.5 3ZM12.5 15H1.5C1.21875 15 1 14.7812 1 14.5V6H13V14.5C13 14.7812 12.75 15 12.5 15ZM4.625 10C4.8125 10 5 9.84375 5 9.625V8.375C5 8.1875 4.8125 8 4.625 8H3.375C3.15625 8 3 8.1875 3 8.375V9.625C3 9.84375 3.15625 10 3.375 10H4.625ZM7.625 10C7.8125 10 8 9.84375 8 9.625V8.375C8 8.1875 7.8125 8 7.625 8H6.375C6.15625 8 6 8.1875 6 8.375V9.625C6 9.84375 6.15625 10 6.375 10H7.625ZM10.625 10C10.8125 10 11 9.84375 11 9.625V8.375C11 8.1875 10.8125 8 10.625 8H9.375C9.15625 8 9 8.1875 9 8.375V9.625C9 9.84375 9.15625 10 9.375 10H10.625ZM7.625 13C7.8125 13 8 12.8438 8 12.625V11.375C8 11.1875 7.8125 11 7.625 11H6.375C6.15625 11 6 11.1875 6 11.375V12.625C6 12.8438 6.15625 13 6.375 13H7.625ZM4.625 13C4.8125 13 5 12.8438 5 12.625V11.375C5 11.1875 4.8125 11 4.625 11H3.375C3.15625 11 3 11.1875 3 11.375V12.625C3 12.8438 3.15625 13 3.375 13H4.625ZM10.625 13C10.8125 13 11 12.8438 11 12.625V11.375C11 11.1875 10.8125 11 10.625 11H9.375C9.15625 11 9 11.1875 9 11.375V12.625C9 12.8438 9.15625 13 9.375 13H10.625Z" fill="#666666" />
</svg>
<span>25 january 2021</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 5H13V2C13 0.90625 12.0938 0 11 0H2C0.875 0 0 0.90625 0 2V7C0 8.125 0.875 9 2 9H3V10.625C3 10.875 3.15625 11 3.375 11C3.4375 11 3.5 11 3.59375 10.9375L6 9.59375V12C6 13.125 6.875 14 8 14H11L14.375 15.9375C14.4688 16 14.5312 16 14.625 16C14.8125 16 15 15.875 15 15.625V14H16C17.0938 14 18 13.125 18 12V7C18 5.90625 17.0938 5 16 5ZM2 8C1.4375 8 1 7.5625 1 7V2C1 1.46875 1.4375 1 2 1H11C11.5312 1 12 1.46875 12 2V7C12 7.5625 11.5312 8 11 8H6.71875L6.5 8.15625L4 9.5625V8H2ZM17 12C17 12.5625 16.5312 13 16 13H14V14.5625L11.4688 13.1562L11.25 13H8C7.4375 13 7 12.5625 7 12V9H11C12.0938 9 13 8.125 13 7V6H16C16.5312 6 17 6.46875 17 7V12Z" fill="#666666" />
</svg>
<span>Comment (08)</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.6875 5.31246L9.6875 0.312461C9.0625 -0.312539 8 0.124961 8 1.03121V3.28121C4.375 3.40621 0 4.15621 0 8.93746C0 10.9687 1.03125 12.6562 2.65625 13.8125C3.40625 14.375 4.46875 13.6562 4.1875 12.75C3.34375 9.68746 4.1875 8.93746 8 8.78121V11C8 11.9062 9.0625 12.3437 9.6875 11.7187L14.6875 6.71871C15.0938 6.34371 15.0938 5.68746 14.6875 5.31246ZM9 11.0312V7.78121C4.4375 7.81246 1.96875 8.46871 3.25 13.0312C2.25 12.2812 1 10.9687 1 8.93746C1 4.84371 4.90625 4.31246 9 4.28121V1.03121L14 6.03121L9 11.0312ZM17.6875 6.71871C18.0938 6.34371 18.0938 5.68746 17.6875 5.31246L12.6875 0.312461C12.2812 -0.125039 11.6562 -0.0625389 11.2812 0.312461L17 6.03121L11.2812 11.7187C11.6562 12.0937 12.2812 12.1562 12.6875 11.7187L17.6875 6.71871Z" fill="#666666" />
</svg>
<span>08</span>
</a>
</li>
</ul>
</div>
<p class="blogBlock__quotes">
Charity is a very helpful for poor people & we should help this people who don,t have any thing
</p>
</div>
</div>
</div>
<div class="col-lg-12 mb-55">
<div class="blogBlock blogBlock--style4 hoverStyle">
<figure class="blogBlock__figure overflow-hidden">
<a href="blog-details.html" class="blogBlock__figure__link">
<img src="image/blog/blogBig3.jpg" alt="Gainioz Blog" class="blogBlock__figure__image image-saturation">
</a>
</figure>
<div class="blogBlock__content">
<div class="blogBlock__button">
<a class="btn btn--styleOne btn--icon btn--icon2 it-btn" href="blog-details.html">
<svg class="btn__icon" width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9336 0.890625L10.6523 1.13672C10.5117 1.3125 10.5117 1.55859 10.6523 1.73438L13.6055 4.65234H0.421875C0.175781 4.65234 0 4.86328 0 5.07422V5.42578C0 5.67188 0.175781 5.84766 0.421875 5.84766H13.6055L10.6523 8.80078C10.5117 8.97656 10.5117 9.22266 10.6523 9.39844L10.9336 9.64453C11.0742 9.82031 11.3555 9.82031 11.5312 9.64453L15.6094 5.56641C15.7852 5.39062 15.7852 5.14453 15.6094 4.96875L11.5312 0.890625C11.3555 0.714844 11.0742 0.714844 10.9336 0.890625Z" fill="#0B0B0B" />
</svg>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
<div class="blogBlock__header">
<div class="blogBlock__meta mb-15">
<ul class="blogBlock__meta__list">
<li>
<a class="blogBlock__metaUser" href="contact.html">
<img class="blogBlock__metaUser__thumb" src="image/users/user2.jpg" alt="Gainioz User">
<span class="blogBlock__metaUser__name">Savannah Nguyen</span>
</a>
</li>
</ul>
</div>
<h2 class="blogBlock__heading heading text-uppercase mb-20">
<a class="blogBlock__heading__link" href="blog-details.html">
Start raising donations today when you create your cause
</a>
</h2>
</div>
<div class="blogBlock__body mb-25">
<p class="blogBlock__text text">
There are many variations of passages of Lorem Ipsum available, but the majority have alteration
in some form, by injected humour, or randomised words which don't look even slightly.
</p>
</div>
<div class="blogBlock__meta blogBlock__meta--style2">
<ul>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2H11V0.375C11 0.1875 10.8125 0 10.625 0H10.375C10.1562 0 10 0.1875 10 0.375V2H4V0.375C4 0.1875 3.8125 0 3.625 0H3.375C3.15625 0 3 0.1875 3 0.375V2H1.5C0.65625 2 0 2.6875 0 3.5V14.5C0 15.3438 0.65625 16 1.5 16H12.5C13.3125 16 14 15.3438 14 14.5V3.5C14 2.6875 13.3125 2 12.5 2ZM1.5 3H12.5C12.75 3 13 3.25 13 3.5V5H1V3.5C1 3.25 1.21875 3 1.5 3ZM12.5 15H1.5C1.21875 15 1 14.7812 1 14.5V6H13V14.5C13 14.7812 12.75 15 12.5 15ZM4.625 10C4.8125 10 5 9.84375 5 9.625V8.375C5 8.1875 4.8125 8 4.625 8H3.375C3.15625 8 3 8.1875 3 8.375V9.625C3 9.84375 3.15625 10 3.375 10H4.625ZM7.625 10C7.8125 10 8 9.84375 8 9.625V8.375C8 8.1875 7.8125 8 7.625 8H6.375C6.15625 8 6 8.1875 6 8.375V9.625C6 9.84375 6.15625 10 6.375 10H7.625ZM10.625 10C10.8125 10 11 9.84375 11 9.625V8.375C11 8.1875 10.8125 8 10.625 8H9.375C9.15625 8 9 8.1875 9 8.375V9.625C9 9.84375 9.15625 10 9.375 10H10.625ZM7.625 13C7.8125 13 8 12.8438 8 12.625V11.375C8 11.1875 7.8125 11 7.625 11H6.375C6.15625 11 6 11.1875 6 11.375V12.625C6 12.8438 6.15625 13 6.375 13H7.625ZM4.625 13C4.8125 13 5 12.8438 5 12.625V11.375C5 11.1875 4.8125 11 4.625 11H3.375C3.15625 11 3 11.1875 3 11.375V12.625C3 12.8438 3.15625 13 3.375 13H4.625ZM10.625 13C10.8125 13 11 12.8438 11 12.625V11.375C11 11.1875 10.8125 11 10.625 11H9.375C9.15625 11 9 11.1875 9 11.375V12.625C9 12.8438 9.15625 13 9.375 13H10.625Z" fill="#666666" />
</svg>
<span>25 january 2021</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 5H13V2C13 0.90625 12.0938 0 11 0H2C0.875 0 0 0.90625 0 2V7C0 8.125 0.875 9 2 9H3V10.625C3 10.875 3.15625 11 3.375 11C3.4375 11 3.5 11 3.59375 10.9375L6 9.59375V12C6 13.125 6.875 14 8 14H11L14.375 15.9375C14.4688 16 14.5312 16 14.625 16C14.8125 16 15 15.875 15 15.625V14H16C17.0938 14 18 13.125 18 12V7C18 5.90625 17.0938 5 16 5ZM2 8C1.4375 8 1 7.5625 1 7V2C1 1.46875 1.4375 1 2 1H11C11.5312 1 12 1.46875 12 2V7C12 7.5625 11.5312 8 11 8H6.71875L6.5 8.15625L4 9.5625V8H2ZM17 12C17 12.5625 16.5312 13 16 13H14V14.5625L11.4688 13.1562L11.25 13H8C7.4375 13 7 12.5625 7 12V9H11C12.0938 9 13 8.125 13 7V6H16C16.5312 6 17 6.46875 17 7V12Z" fill="#666666" />
</svg>
<span>Comment (08)</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.6875 5.31246L9.6875 0.312461C9.0625 -0.312539 8 0.124961 8 1.03121V3.28121C4.375 3.40621 0 4.15621 0 8.93746C0 10.9687 1.03125 12.6562 2.65625 13.8125C3.40625 14.375 4.46875 13.6562 4.1875 12.75C3.34375 9.68746 4.1875 8.93746 8 8.78121V11C8 11.9062 9.0625 12.3437 9.6875 11.7187L14.6875 6.71871C15.0938 6.34371 15.0938 5.68746 14.6875 5.31246ZM9 11.0312V7.78121C4.4375 7.81246 1.96875 8.46871 3.25 13.0312C2.25 12.2812 1 10.9687 1 8.93746C1 4.84371 4.90625 4.31246 9 4.28121V1.03121L14 6.03121L9 11.0312ZM17.6875 6.71871C18.0938 6.34371 18.0938 5.68746 17.6875 5.31246L12.6875 0.312461C12.2812 -0.125039 11.6562 -0.0625389 11.2812 0.312461L17 6.03121L11.2812 11.7187C11.6562 12.0937 12.2812 12.1562 12.6875 11.7187L17.6875 6.71871Z" fill="#666666" />
</svg>
<span>08</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-12 mb-55">
<div class="blogBlock blogBlock--style4 hoverStyle">
<figure class="blogBlock__figure overflow-hidden">
<a href="blog-details.html" class="blogBlock__figure__link">
<img src="image/blog/blogBig4.jpg" alt="Gainioz Blog" class="blogBlock__figure__image image-saturation">
</a>
</figure>
<div class="blogBlock__content">
<div class="blogBlock__button">
<a class="btn btn--styleOne btn--icon btn--icon2 it-btn" href="blog-details.html">
<svg class="btn__icon" width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9336 0.890625L10.6523 1.13672C10.5117 1.3125 10.5117 1.55859 10.6523 1.73438L13.6055 4.65234H0.421875C0.175781 4.65234 0 4.86328 0 5.07422V5.42578C0 5.67188 0.175781 5.84766 0.421875 5.84766H13.6055L10.6523 8.80078C10.5117 8.97656 10.5117 9.22266 10.6523 9.39844L10.9336 9.64453C11.0742 9.82031 11.3555 9.82031 11.5312 9.64453L15.6094 5.56641C15.7852 5.39062 15.7852 5.14453 15.6094 4.96875L11.5312 0.890625C11.3555 0.714844 11.0742 0.714844 10.9336 0.890625Z" fill="#0B0B0B" />
</svg>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
<div class="blogBlock__header">
<div class="blogBlock__meta mb-15">
<ul class="blogBlock__meta__list">
<li>
<a class="blogBlock__metaUser" href="contact.html">
<img class="blogBlock__metaUser__thumb" src="image/users/user2.jpg" alt="Gainioz User">
<span class="blogBlock__metaUser__name">Savannah Nguyen</span>
</a>
</li>
</ul>
</div>
<h2 class="blogBlock__heading heading text-uppercase mb-20">
<a class="blogBlock__heading__link" href="blog-details.html">
Join 2.1m people raising donations for charities when you shop online
</a>
</h2>
</div>
<div class="blogBlock__body mb-25">
<p class="blogBlock__text text">
There are many variations of passages of Lorem Ipsum available, but the majority have alteration
in some form, by injected humour, or randomised words which don't look even slightly.
</p>
</div>
<div class="blogBlock__meta blogBlock__meta--style2">
<ul>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2H11V0.375C11 0.1875 10.8125 0 10.625 0H10.375C10.1562 0 10 0.1875 10 0.375V2H4V0.375C4 0.1875 3.8125 0 3.625 0H3.375C3.15625 0 3 0.1875 3 0.375V2H1.5C0.65625 2 0 2.6875 0 3.5V14.5C0 15.3438 0.65625 16 1.5 16H12.5C13.3125 16 14 15.3438 14 14.5V3.5C14 2.6875 13.3125 2 12.5 2ZM1.5 3H12.5C12.75 3 13 3.25 13 3.5V5H1V3.5C1 3.25 1.21875 3 1.5 3ZM12.5 15H1.5C1.21875 15 1 14.7812 1 14.5V6H13V14.5C13 14.7812 12.75 15 12.5 15ZM4.625 10C4.8125 10 5 9.84375 5 9.625V8.375C5 8.1875 4.8125 8 4.625 8H3.375C3.15625 8 3 8.1875 3 8.375V9.625C3 9.84375 3.15625 10 3.375 10H4.625ZM7.625 10C7.8125 10 8 9.84375 8 9.625V8.375C8 8.1875 7.8125 8 7.625 8H6.375C6.15625 8 6 8.1875 6 8.375V9.625C6 9.84375 6.15625 10 6.375 10H7.625ZM10.625 10C10.8125 10 11 9.84375 11 9.625V8.375C11 8.1875 10.8125 8 10.625 8H9.375C9.15625 8 9 8.1875 9 8.375V9.625C9 9.84375 9.15625 10 9.375 10H10.625ZM7.625 13C7.8125 13 8 12.8438 8 12.625V11.375C8 11.1875 7.8125 11 7.625 11H6.375C6.15625 11 6 11.1875 6 11.375V12.625C6 12.8438 6.15625 13 6.375 13H7.625ZM4.625 13C4.8125 13 5 12.8438 5 12.625V11.375C5 11.1875 4.8125 11 4.625 11H3.375C3.15625 11 3 11.1875 3 11.375V12.625C3 12.8438 3.15625 13 3.375 13H4.625ZM10.625 13C10.8125 13 11 12.8438 11 12.625V11.375C11 11.1875 10.8125 11 10.625 11H9.375C9.15625 11 9 11.1875 9 11.375V12.625C9 12.8438 9.15625 13 9.375 13H10.625Z" fill="#666666" />
</svg>
<span>25 january 2021</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 5H13V2C13 0.90625 12.0938 0 11 0H2C0.875 0 0 0.90625 0 2V7C0 8.125 0.875 9 2 9H3V10.625C3 10.875 3.15625 11 3.375 11C3.4375 11 3.5 11 3.59375 10.9375L6 9.59375V12C6 13.125 6.875 14 8 14H11L14.375 15.9375C14.4688 16 14.5312 16 14.625 16C14.8125 16 15 15.875 15 15.625V14H16C17.0938 14 18 13.125 18 12V7C18 5.90625 17.0938 5 16 5ZM2 8C1.4375 8 1 7.5625 1 7V2C1 1.46875 1.4375 1 2 1H11C11.5312 1 12 1.46875 12 2V7C12 7.5625 11.5312 8 11 8H6.71875L6.5 8.15625L4 9.5625V8H2ZM17 12C17 12.5625 16.5312 13 16 13H14V14.5625L11.4688 13.1562L11.25 13H8C7.4375 13 7 12.5625 7 12V9H11C12.0938 9 13 8.125 13 7V6H16C16.5312 6 17 6.46875 17 7V12Z" fill="#666666" />
</svg>
<span>Comment (08)</span>
</a>
</li>
<li>
<a class="blogBlock__meta__text" href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.6875 5.31246L9.6875 0.312461C9.0625 -0.312539 8 0.124961 8 1.03121V3.28121C4.375 3.40621 0 4.15621 0 8.93746C0 10.9687 1.03125 12.6562 2.65625 13.8125C3.40625 14.375 4.46875 13.6562 4.1875 12.75C3.34375 9.68746 4.1875 8.93746 8 8.78121V11C8 11.9062 9.0625 12.3437 9.6875 11.7187L14.6875 6.71871C15.0938 6.34371 15.0938 5.68746 14.6875 5.31246ZM9 11.0312V7.78121C4.4375 7.81246 1.96875 8.46871 3.25 13.0312C2.25 12.2812 1 10.9687 1 8.93746C1 4.84371 4.90625 4.31246 9 4.28121V1.03121L14 6.03121L9 11.0312ZM17.6875 6.71871C18.0938 6.34371 18.0938 5.68746 17.6875 5.31246L12.6875 0.312461C12.2812 -0.125039 11.6562 -0.0625389 11.2812 0.312461L17 6.03121L11.2812 11.7187C11.6562 12.0937 12.2812 12.1562 12.6875 11.7187L17.6875 6.71871Z" fill="#666666" />
</svg>
<span>08</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-30">
<div class="sidebarLayout">
<form class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">search here</h5>
</div>
<div class="searchInput">
<input class="searchInput__box" type="text" placeholder="Search product">
<button class="searchInput__button">
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.8906 13.5742L10.582 10.2656C10.5 10.2109 10.418 10.1562 10.3359 10.1562H9.98047C10.8281 9.17188 11.375 7.85938 11.375 6.4375C11.375 3.32031 8.80469 0.75 5.6875 0.75C2.54297 0.75 0 3.32031 0 6.4375C0 9.58203 2.54297 12.125 5.6875 12.125C7.10938 12.125 8.39453 11.6055 9.40625 10.7578V11.1133C9.40625 11.1953 9.43359 11.2773 9.48828 11.3594L12.7969 14.668C12.9336 14.8047 13.1523 14.8047 13.2617 14.668L13.8906 14.0391C14.0273 13.9297 14.0273 13.7109 13.8906 13.5742ZM5.6875 10.8125C3.25391 10.8125 1.3125 8.87109 1.3125 6.4375C1.3125 4.03125 3.25391 2.0625 5.6875 2.0625C8.09375 2.0625 10.0625 4.03125 10.0625 6.4375C10.0625 8.87109 8.09375 10.8125 5.6875 10.8125Z" fill="#666666" />
</svg>
</button>
</div>
</div>
</form>
<div class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">categories</h5>
</div>
<div class="sidebarCategories">
<ul>
<li>
<a href="#">
<span>Charity</span>
<span>03</span>
</a>
</li>
<li>
<a href="#">
<span>Donation</span>
<span>03</span>
</a>
</li>
<li>
<a href="#">
<span>Medical & Aid Kit</span>
<span>03</span>
</a>
</li>
<li>
<a href="#">
<span>Volenteer Team</span>
<span>03</span>
</a>
</li>
<li>
<a href="#">
<span>Food and Water</span>
<span>03</span>
</a>
</li>
<li>
<a href="#">
<span>Help Hoomeless People</span>
<span>03</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">Recent POst</h5>
</div>
<div class="sidebarBlogs">
<ul>
<li>
<div class="blogBlockSmall">
<figure class="blogBlockSmall__thumb">
<a class="blogBlockSmall__thumb__link" href="blog-details.html">
<img src="image/blog/blogSmallThumb1.jpg" alt="Gainioz Blog">
</a>
</figure>
<div class="blogBlockSmall__content">
<span class="blogBlockSmall__meta">23 December 2021</span>
<h3 class="blogBlockSmall__heading"><a href="blog-details.html">Show at the University</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blogBlockSmall">
<figure class="blogBlockSmall__thumb">
<a class="blogBlockSmall__thumb__link" href="blog-details.html">
<img src="image/blog/blogSmallThumb2.jpg" alt="Gainioz Blog">
</a>
</figure>
<div class="blogBlockSmall__content">
<span class="blogBlockSmall__meta">23 December 2021</span>
<h3 class="blogBlockSmall__heading"><a href="blog-details.html">Show at the University</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blogBlockSmall">
<figure class="blogBlockSmall__thumb">
<a class="blogBlockSmall__thumb__link" href="blog-details.html">
<img src="image/blog/blogSmallThumb3.jpg" alt="Gainioz Blog">
</a>
</figure>
<div class="blogBlockSmall__content">
<span class="blogBlockSmall__meta">23 December 2021</span>
<h3 class="blogBlockSmall__heading"><a href="blog-details.html">Show at the University</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blogBlockSmall">
<figure class="blogBlockSmall__thumb">
<a class="blogBlockSmall__thumb__link" href="blog-details.html">
<img src="image/blog/blogSmallThumb4.jpg" alt="Gainioz Blog">
</a>
</figure>
<div class="blogBlockSmall__content">
<span class="blogBlockSmall__meta">23 December 2021</span>
<h3 class="blogBlockSmall__heading"><a href="blog-details.html">Show at the University</a>
</h3>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">Direct Contact us</h5>
</div>
<div class="sidebarContacts">
<input type="text" class="sidebarContacts__input" placeholder="Enter name*">
<input type="email" class="sidebarContacts__input" placeholder="Enter your mail*">
<textarea class="sidebarContacts__input textarea" name="message" id="message" placeholder="Massage*"></textarea>
<a class="btn btn--styleOne btn--primary it-btn" href="donation-listing.html">
<span class="btn__text">send massage</span>
<span class="it-btn__inner">
<span class="it-btn__blobs">
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
<span class="it-btn__blob"></span>
</span>
</span>
<svg class="it-btn__animation" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter>
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10"></feGaussianBlur>
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7" result="goo">
</feColorMatrix>
<feBlend in2="goo" in="SourceGraphic" result="mix"></feBlend>
</filter>
</defs>
</svg>
</a>
</div>
</div>
</div>
<div class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">Contact Info..</h5>
</div>
<div class="sidebarContact">
<ul>
<li>
<span>Adress :</span>
8638 Amarica Stranfod, Mailbon Star
</li>
<li>
<span>Mail :</span>
gainioz@info.com
</li>
<li>
<span>Phone :</span>
+7464 0187 3535 645
</li>
<li>
<span>Fax id :</span>
+9 659459 49594
</li>
</ul>
</div>
</div>
</div>
<div class="innerWrapperSidebar mb-30">
<div class="sidebarWidget">
<div class="sidebarTitle">
<h5 class="sidebarTitle__heading text-uppercase mb-30">Popular Tag</h5>
</div>
<div class="sidebarTags">
<ul>
<li>
<a href="blog-details.html">Education</a>
</li>
<li>
<a href="blog-details.html">Charity</a>
</li>
<li>
<a href="blog-details.html">apps</a>
</li>
<li>
<a href="blog-details.html">Education build</a>
</li>
<li>
<a href="blog-details.html">data</a>
</li>
<li>
<a href="blog-details.html">book</a>
</li>
<li>
<a href="blog-details.html">Design</a>
</li>
<li>
<a href="blog-details.html">website</a>
</li>
<li>
<a href="blog-details.html">landing page</a>
</li>
<li>
<a href="blog-details.html">data</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Donation Details End -->
</main>
<!-- Main End -->
<!-- footer -->
<footer class="footer footer--bg footer--styleOne pt-70 pb-40">
<img src="image/shapes/footerShape2.png" alt="Gainioz Shape" class="footer__shape">
<div class="container">
<div class="row align-items-center">
<div class="col">
<div class="footer__logo">
<img src="image/logos/logo_2.svg" alt="Gainioz Logo" class="footer__logo__image">
</div>
</div>
<div class="col">
<div class="footer__social itSocial">
<ul>
<li>