-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathourgreen.html
More file actions
1739 lines (1629 loc) · 303 KB
/
ourgreen.html
File metadata and controls
1739 lines (1629 loc) · 303 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" prefix="og: http://ogp.me/ns#">
<head>
<!-- Pubgalaxy 29-04-2022 version-->
<script src="https://cmp.uniconsent.com/v2/stub.min.js"></script>
<script async src="https://cmp.uniconsent.com/v2/a8d3aee937/cmp.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Post schema -->
<!-- End -->
<!-- Added meta tags here-->
<meta name="revisit-after" content="1 day" />
<meta property="article:publisher" content="https://www.facebook.com/onegreenplanet" />
<meta property="article:author" content="https://www.facebook.com/onegreenplanet" />
<!-- not yoast og:image, no post thumbnail --><meta property="og:image" content="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/logo.jpg"/><meta property="og:image:width" content="631"/><meta property="og:image:height" content="92"/>
<meta property='fb:app_id' content='130770000322950'>
<meta property="og:site_name" content="One Green Planet"/>
<meta name="google-site-verification" content="g9nDljNRNHfbUE3N_6THSe4irHgAzpPSwMBszzb4ISI" />
<meta property="og:title" content="One Green Planet" />
<meta name="description" content="The privacy of our visitors is very important to us. This privacy policy describes what types of information we receive and collect when you use and visit OneGreenPlanet.org and how we safeguard your information. Information Collected Personally Identifiable Information Personally-identifiable information is information that identifies or can be used to identify a user as […]">
<meta name="twitter:site" content="@onegreenplanet" />
<meta property="og:type" content="article"/>
<meta name="twitter:url" content="http://www.onegreenplanet.org" />
<meta name="twitter:image" content="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/apple-touch-icon-114x114.png" />
<meta name="twitter:card" content="summary" />
<meta name="keywords" content="animal conservation, cruelty free, vegan recipes. vegan food, eco friendly lifestyle, green living, animal rescues, eco friendly pet products, vegan products, ecofriendly shopping, GMO FREE, gluten free recipes, raw lifestyle, raw vegan recipes, conscious consumers, conscious consumerism, go green, green tips, recycling, environmental news, conservation news, green news, veganism, vegetarian food, sustainability, social justice, green fashion, vegan fashion, eco-friendly fashion, vegan diet, vegan products, vegan meals, vegan desserts, vegan supplements, vegan protein powders, vegan health, plant based health, plant based recipes, plant based lifestyle.">
<!-- End-->
<title>
Privacy Policy - One Green Planet </title>
<link href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/style-prod.css?1696623666" rel="stylesheet">
<!-- Custom Fonts -->
<link href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/media-query.css?1696623666" rel="stylesheet" type="text/css">
<link href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/print.css" rel="stylesheet" media="print" type="text/css">
<link href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,300i,400,400i,500,500i,600,600i,700,700i|Merriweather:300,300i,400,400i,700,700i,900,900i|Muli:600|Engagement" rel="stylesheet">
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="https://www.onegreenplanet.org/xmlrpc.php" />
<link rel="favourites icon" href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/favicon.ico" />
<link rel="apple-touch-icon" href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/apple-touch-icon-114x114.png">
<link rel="publisher" href="https://plus.google.com/105020260777471563896/" />
<!-- Scripts start here -->
<script src="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/js/jquery-min.js"></script>
<script src="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/js/bootstrap.min.js"></script>
<script src="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/js/infinite-scroll.pkgd.min.js"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-20207653-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-20207653-1');
</script>
<!-- Global site tag (gtag.js) - close here -->
<meta name='robots' content='max-image-preview:large' />
<script>window._wca = window._wca || [];</script>
<!-- This site is optimized with the Yoast SEO plugin v12.3 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1"/>
<link rel="canonical" href="https://www.onegreenplanet.org/privacy-policy/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Privacy Policy - One Green Planet" />
<meta property="og:description" content="The privacy of our visitors is very important to us. This privacy policy describes what types of information we receive and collect when you use and visit OneGreenPlanet.org and how we safeguard your information. Information Collected Personally Identifiable Information Personally-identifiable information is information that identifies or can be used to identify a user as …" />
<meta property="og:url" content="https://www.onegreenplanet.org/privacy-policy/" />
<meta property="og:site_name" content="One Green Planet" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="The privacy of our visitors is very important to us. This privacy policy describes what types of information we receive and collect when you use and visit OneGreenPlanet.org and how we safeguard your information. Information Collected Personally Identifiable Information Personally-identifiable information is information that identifies or can be used to identify a user as […]" />
<meta name="twitter:title" content="Privacy Policy - One Green Planet" />
<meta name="twitter:creator" content="@adminonegreenplanet" />
<script type='application/ld+json' class='yoast-schema-graph yoast-schema-graph--main'>{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.onegreenplanet.org/#website","url":"https://www.onegreenplanet.org/","name":"One Green Planet","potentialAction":{"@type":"SearchAction","target":"https://www.onegreenplanet.org/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://www.onegreenplanet.org/privacy-policy/#webpage","url":"https://www.onegreenplanet.org/privacy-policy/","inLanguage":"en-US","name":"Privacy Policy - One Green Planet","isPartOf":{"@id":"https://www.onegreenplanet.org/#website"},"datePublished":"2011-02-15T20:43:48-05:00","dateModified":"2023-02-01T00:19:34-05:00"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//www.google.com' />
<link rel='dns-prefetch' href='//cmp.uniconsent.com' />
<link rel='dns-prefetch' href='//maps.googleapis.com' />
<link rel='dns-prefetch' href='//maps.gstatic.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//fonts.gstatic.com' />
<link rel='dns-prefetch' href='//ajax.googleapis.com' />
<link rel='dns-prefetch' href='//apis.google.com' />
<link rel='dns-prefetch' href='//google-analytics.com' />
<link rel='dns-prefetch' href='//www.google-analytics.com' />
<link rel='dns-prefetch' href='//ssl.google-analytics.com' />
<link rel='dns-prefetch' href='//youtube.com' />
<link rel='dns-prefetch' href='//api.pinterest.com' />
<link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
<link rel='dns-prefetch' href='//pixel.wp.com' />
<link rel='dns-prefetch' href='//connect.facebook.net' />
<link rel='dns-prefetch' href='//platform.twitter.com' />
<link rel='dns-prefetch' href='//syndication.twitter.com' />
<link rel='dns-prefetch' href='//platform.instagram.com' />
<link rel='dns-prefetch' href='//disqus.com' />
<link rel='dns-prefetch' href='//sitename.disqus.com' />
<link rel='dns-prefetch' href='//s7.addthis.com' />
<link rel='dns-prefetch' href='//platform.linkedin.com' />
<link rel='dns-prefetch' href='//w.sharethis.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//s.gravatar.com' />
<link rel='dns-prefetch' href='//sharethis.com' />
<link rel='dns-prefetch' href='//resources.infolinks.com' />
<link rel='dns-prefetch' href='//www.onegreenplanet.org' />
<link rel='dns-prefetch' href='//c0.wp.com' />
<link rel='dns-prefetch' href='//i0.wp.com' />
<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<link rel="alternate" type="application/rss+xml" title="One Green Planet » Feed" href="https://www.onegreenplanet.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="One Green Planet » Comments Feed" href="https://www.onegreenplanet.org/comments/feed/" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZW1HE5438E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZW1HE5438E');
</script>
<meta property="fb:admins" content="130770000322950"/><meta property="og:locale" content="en_US" /><meta property="og:title" content="Privacy Policy"/><meta property="og:type" content="article"/><meta property="og:url" content="https://www.onegreenplanet.org/privacy-policy/"/><meta property="og:site_name" content="One Green Planet"/><!-- not showing image, no post thumnail -->
<link rel='stylesheet' id='wp-block-library-css' href='https://c0.wp.com/c/6.3.1/wp-includes/css/dist/block-library/style.min.css' type='text/css' media='all' />
<style id='wp-block-library-inline-css' type='text/css'>
.has-text-align-justify{text-align:justify;}
</style>
<style id='auto-amazon-links-unit-style-inline-css' type='text/css'>
.aal-gutenberg-preview{max-height:400px;overflow:auto}
</style>
<link rel='stylesheet' id='mediaelement-css' href='https://c0.wp.com/c/6.3.1/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='https://c0.wp.com/c/6.3.1/wp-includes/js/mediaelement/wp-mediaelement.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='wc-blocks-vendors-style-css' href='https://c0.wp.com/p/woocommerce/7.8.2/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css' type='text/css' media='all' />
<link rel='stylesheet' id='wc-blocks-style-css' href='https://c0.wp.com/p/woocommerce/7.8.2/packages/woocommerce-blocks/build/wc-blocks-style.css' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='bp-legacy-css-css' href='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/css/buddypress.min.css?ver=4.2.0' type='text/css' media='screen' />
<link rel='stylesheet' id='stripe-handler-ng-style-css' href='https://www.onegreenplanet.org/wp-content/plugins/stripe-payments/public/assets/css/public.css?ver=2.0.78' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-layout-css' href='https://c0.wp.com/p/woocommerce/7.8.2/assets/css/woocommerce-layout.css' type='text/css' media='all' />
<style id='woocommerce-layout-inline-css' type='text/css'>
.infinite-scroll .woocommerce-pagination {
display: none;
}
</style>
<link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://c0.wp.com/p/woocommerce/7.8.2/assets/css/woocommerce-smallscreen.css' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css' href='https://c0.wp.com/p/woocommerce/7.8.2/assets/css/woocommerce.css' type='text/css' media='all' />
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='wsl-widget-css' href='https://www.onegreenplanet.org/wp-content/plugins/wordpress-social-login/assets/css/style.css?ver=6.3.1' type='text/css' media='all' />
<link rel='stylesheet' id='amazon-auto-links-_common-css' href='https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/template/_common/style.min.css?ver=5.3.1' type='text/css' media='all' />
<link rel='stylesheet' id='amazon-auto-links-list-css' href='https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/template/list/style.min.css?ver=1.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='search-filter-plugin-styles-css' href='https://www.onegreenplanet.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.4.2' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://c0.wp.com/c/6.3.1/wp-includes/css/dashicons.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-pointer-css' href='https://c0.wp.com/c/6.3.1/wp-includes/css/wp-pointer.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='social-logos-css' href='https://www.onegreenplanet.org/wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css?ver=12.7-a.7' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='https://www.onegreenplanet.org/wp-content/plugins/jetpack/css/jetpack.css?ver=12.7-a.7' type='text/css' media='all' />
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js' id='wp-polyfill-inert-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/dist/vendor/regenerator-runtime.min.js' id='regenerator-runtime-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/dist/vendor/wp-polyfill.min.js' id='wp-polyfill-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/dist/hooks.min.js' id='wp-hooks-js'></script>
<script type='text/javascript' src='https://stats.wp.com/w.js?ver=202340' id='woo-tracks-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/jquery/jquery.min.js' id='jquery-core-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/jquery/jquery-migrate.min.js' id='jquery-migrate-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/js/commentsloadmorescript.js?ver=6.3.1' id='commentsloadmorescript-js'></script>
<script type='text/javascript' id='bp-confirm-js-extra'>
/* <![CDATA[ */
var BP_Confirm = {"are_you_sure":"Are you sure?"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-core/js/confirm.min.js?ver=4.2.0' id='bp-confirm-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-core/js/widget-members.min.js?ver=4.2.0' id='bp-widget-members-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js?ver=4.2.0' id='bp-jquery-query-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-core/js/vendor/jquery-cookie.min.js?ver=4.2.0' id='bp-jquery-cookie-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-core/js/vendor/jquery-scroll-to.min.js?ver=4.2.0' id='bp-jquery-scroll-to-js'></script>
<script type='text/javascript' id='bp-legacy-js-js-extra'>
/* <![CDATA[ */
var BP_DTheme = {"accepted":"Accepted","close":"Close","comments":"comments","leave_group_confirm":"Are you sure you want to leave this group?","mark_as_fav":"Favorite","my_favs":"My Favorites","rejected":"Rejected","remove_fav":"Remove Favorite","show_all":"Show all","show_all_comments":"Show all comments for this thread","show_x_comments":"Show all comments (%d)","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","view":"View","store_filter_settings":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.min.js?ver=4.2.0' id='bp-legacy-js-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/recaptcha-woo/js/rcfwc.js?ver=1.0' id='rcfwc-js-js'></script>
<script type='text/javascript' src='https://www.google.com/recaptcha/api.js?explicit&hl=en_US&ver=6.3.1' id='recaptcha-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/wordpress-social-login/assets/js/widget.js?ver=6.3.1' id='wsl-widget-js'></script>
<script type='text/javascript' src='https://c0.wp.com/c/6.3.1/wp-includes/js/dist/i18n.min.js' id='wp-i18n-js'></script>
<script id="wp-i18n-js-after" type="text/javascript">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.js?minify=true&ver=e69db286c9c94bd98790' id='wp-jp-i18n-loader-js'></script>
<script id="wp-jp-i18n-loader-js-after" type="text/javascript">
wp.jpI18nLoader.state = {"baseUrl":"https://www.onegreenplanet.org/wp-content/languages/","locale":"en_US","domainMap":{"jetpack-action-bar":"plugins/jetpack","jetpack-admin-ui":"plugins/jetpack","jetpack-assets":"plugins/jetpack","jetpack-backup-pkg":"plugins/jetpack","jetpack-blaze":"plugins/jetpack","jetpack-boost-core":"plugins/jetpack","jetpack-boost-speed-score":"plugins/jetpack","jetpack-compat":"plugins/jetpack","jetpack-config":"plugins/jetpack","jetpack-connection":"plugins/jetpack","jetpack-forms":"plugins/jetpack","jetpack-google-fonts-provider":"plugins/jetpack","jetpack-idc":"plugins/jetpack","jetpack-image-cdn":"plugins/jetpack","jetpack-import":"plugins/jetpack","jetpack-ip":"plugins/jetpack","jetpack-jitm":"plugins/jetpack","jetpack-lazy-images":"plugins/jetpack","jetpack-licensing":"plugins/jetpack","jetpack-my-jetpack":"plugins/jetpack","jetpack-password-checker":"plugins/jetpack","jetpack-plugins-installer":"plugins/jetpack","jetpack-post-list":"plugins/jetpack","jetpack-publicize-pkg":"plugins/jetpack","jetpack-search-pkg":"plugins/jetpack","jetpack-stats":"plugins/jetpack","jetpack-stats-admin":"plugins/jetpack","jetpack-sync":"plugins/jetpack","jetpack-videopress-pkg":"plugins/jetpack","jetpack-waf":"plugins/jetpack","jetpack-wordads":"plugins/jetpack"},"domainPaths":{"jetpack-action-bar":"jetpack_vendor/automattic/jetpack-action-bar/","jetpack-admin-ui":"jetpack_vendor/automattic/jetpack-admin-ui/","jetpack-assets":"jetpack_vendor/automattic/jetpack-assets/","jetpack-backup-pkg":"jetpack_vendor/automattic/jetpack-backup/","jetpack-blaze":"jetpack_vendor/automattic/jetpack-blaze/","jetpack-boost-core":"jetpack_vendor/automattic/jetpack-boost-core/","jetpack-boost-speed-score":"jetpack_vendor/automattic/jetpack-boost-speed-score/","jetpack-compat":"jetpack_vendor/automattic/jetpack-compat/","jetpack-config":"jetpack_vendor/automattic/jetpack-config/","jetpack-connection":"jetpack_vendor/automattic/jetpack-connection/","jetpack-forms":"jetpack_vendor/automattic/jetpack-forms/","jetpack-google-fonts-provider":"jetpack_vendor/automattic/jetpack-google-fonts-provider/","jetpack-idc":"jetpack_vendor/automattic/jetpack-identity-crisis/","jetpack-image-cdn":"jetpack_vendor/automattic/jetpack-image-cdn/","jetpack-import":"jetpack_vendor/automattic/jetpack-import/","jetpack-ip":"jetpack_vendor/automattic/jetpack-ip/","jetpack-jitm":"jetpack_vendor/automattic/jetpack-jitm/","jetpack-lazy-images":"jetpack_vendor/automattic/jetpack-lazy-images/","jetpack-licensing":"jetpack_vendor/automattic/jetpack-licensing/","jetpack-my-jetpack":"jetpack_vendor/automattic/jetpack-my-jetpack/","jetpack-password-checker":"jetpack_vendor/automattic/jetpack-password-checker/","jetpack-plugins-installer":"jetpack_vendor/automattic/jetpack-plugins-installer/","jetpack-post-list":"jetpack_vendor/automattic/jetpack-post-list/","jetpack-publicize-pkg":"jetpack_vendor/automattic/jetpack-publicize/","jetpack-search-pkg":"jetpack_vendor/automattic/jetpack-search/","jetpack-stats":"jetpack_vendor/automattic/jetpack-stats/","jetpack-stats-admin":"jetpack_vendor/automattic/jetpack-stats-admin/","jetpack-sync":"jetpack_vendor/automattic/jetpack-sync/","jetpack-videopress-pkg":"jetpack_vendor/automattic/jetpack-videopress/","jetpack-waf":"jetpack_vendor/automattic/jetpack-waf/","jetpack-wordads":"jetpack_vendor/automattic/jetpack-wordads/"}};
</script>
<script type='text/javascript' id='search-filter-plugin-build-js-extra'>
/* <![CDATA[ */
var SF_LDATA = {"ajax_url":"https:\/\/www.onegreenplanet.org\/wp-admin\/admin-ajax.php","home_url":"https:\/\/www.onegreenplanet.org\/"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.4.2' id='search-filter-plugin-build-js'></script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.4.2' id='search-filter-plugin-chosen-js'></script>
<script defer type='text/javascript' src='https://stats.wp.com/s-202340.js' id='woocommerce-analytics-js'></script>
<script type='text/javascript' src='https://cmp.uniconsent.com/v2/stub.min.js?ver=0.0.551' id='stub-script-js'></script>
<script type='text/javascript' src='https://cmp.uniconsent.com/v2/a8d3aee937/cmp.js?ver=0.0.551' id='cmp-script-js'></script>
<script type='text/javascript' id='ads_code_conditional-js-extra'>
/* <![CDATA[ */
var check_current_page = {"archive_page":"","category_page":"","single_page":"","singular_page":"","front_page":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/js/ads_code_conditional.js?ver=0.0.551' id='ads_code_conditional-js'></script>
<link rel="https://api.w.org/" href="https://www.onegreenplanet.org/wp-json/" /><link rel="alternate" type="application/json" href="https://www.onegreenplanet.org/wp-json/wp/v2/pages/1480945775" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.onegreenplanet.org/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://wp.me/PehYTk-1CdTEb' />
<link rel="alternate" type="application/json+oembed" href="https://www.onegreenplanet.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.onegreenplanet.org%2Fprivacy-policy%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.onegreenplanet.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.onegreenplanet.org%2Fprivacy-policy%2F&format=xml" />
<script type="text/javascript">var ajaxurl = 'https://www.onegreenplanet.org/wp-admin/admin-ajax.php';</script>
<style type="text/css" media="screen">.fullstripe-form-title{ font-size: 120%; color: #363636; font-weight: bold;}
.fullstripe-form-input{}
.fullstripe-form-label{font-weight: bold;}</style> <style>img#wpstats{display:none}</style>
<style type='text/css' id='amazon-auto-links-button-css' data-version='5.3.1'>.amazon-auto-links-button.amazon-auto-links-button-default { background-image: -webkit-linear-gradient(top, #4997e5, #3f89ba);background-image: -moz-linear-gradient(top, #4997e5, #3f89ba);background-image: -ms-linear-gradient(top, #4997e5, #3f89ba);background-image: -o-linear-gradient(top, #4997e5, #3f89ba);background-image: linear-gradient(to bottom, #4997e5, #3f89ba);-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;margin-left: auto;margin-right: auto;text-align: center;white-space: nowrap;color: #ffffff;font-size: 13px;text-shadow: 0 0 transparent;width: 100px;padding: 7px 8px 8px 8px;background: #3498db;border: solid #6891a5 1px;text-decoration: none;}.amazon-auto-links-button.amazon-auto-links-button-default:hover {background: #3cb0fd;background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);background-image: -o-linear-gradient(top, #3cb0fd, #3498db);background-image: linear-gradient(to bottom, #3cb0fd, #3498db);text-decoration: none;}.amazon-auto-links-button.amazon-auto-links-button-default > a {color: inherit; border-bottom: none;text-decoration: none; }.amazon-auto-links-button.amazon-auto-links-button-default > a:hover {color: inherit;}.amazon-auto-links-button > a, .amazon-auto-links-button > a:hover {-webkit-box-shadow: none;box-shadow: none;color: inherit;}div.amazon-auto-links-button {line-height: 1.3; }button.amazon-auto-links-button {white-space: nowrap;}.amazon-auto-links-button-link {text-decoration: none;}.amazon-auto-links-button-1481599095 { margin-right: auto; margin-left: auto; white-space: nowrap; text-align: center; display: inline-flex; justify-content: space-around; font-size: 13px; color: #000000; font-weight: 500; padding: 3px; border-radius: 4px; border-color: #c89411 #b0820f #99710d; border-width: 1px; background-color: #ecb21f; transform: scale(0.98); border-style: solid; background-image: linear-gradient(to bottom,#f8e3ad,#eeba37); } .amazon-auto-links-button-1481599095 * { box-sizing: border-box; } .amazon-auto-links-button-1481599095 .button-icon { margin-right: auto; margin-left: auto; display: none; height: auto; border: solid 0; } .amazon-auto-links-button-1481599095 .button-icon > i { display: inline-block; width: 100%; height: 100%; } .amazon-auto-links-button-1481599095 .button-icon-left { display: inline-flex; background-color: #2d2d2d; border-width: 1px; border-color: #0a0a0a; border-radius: 2px; margin: 0px; padding-top: 2px; padding-right: 2px; padding-bottom: 3px; padding-left: 2px; min-width: 25px; min-height: 25px; } .amazon-auto-links-button-1481599095 .button-icon-left > i { background-color: #ffffff; background-size: contain; background-position: center; background-repeat: no-repeat; -webkit-mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); -webkit-mask-position: center center; mask-position: center center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; } .amazon-auto-links-button-1481599095 .button-label { margin-top: 0px; margin-right: 32px; margin-bottom: 0px; margin-left: 32px; } .amazon-auto-links-button-1481599095 > * { align-items: center; display: inline-flex; vertical-align: middle; } .amazon-auto-links-button-1481599095:hover { transform: scale(1.0); filter: alpha(opacity=70); opacity: 0.7; }.amazon-auto-links-button-1481599096 { display: block; margin-right: auto; margin-left: auto; position: relative; width: 176px; height: 28px; } .amazon-auto-links-button-1481599096 > img { height: unset; max-width: 100%; max-height: 100%; margin-right: auto; margin-left: auto; display: block; position: absolute; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }.amazon-auto-links-button-1481599097 { display: block; margin-right: auto; margin-left: auto; position: relative; width: 148px; height: 79px; transform: scale(0.98); } .amazon-auto-links-button-1481599097:hover { transform: scale(1.0); } .amazon-auto-links-button-1481599097 > img { height: unset; max-width: 100%; max-height: 100%; margin-right: auto; margin-left: auto; display: block; position: absolute; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .amazon-auto-links-button-1481599097 > img:hover { filter: alpha(opacity=70); opacity: 0.7; }.amazon-auto-links-button-1481599092 { margin-right: auto; margin-left: auto; white-space: nowrap; text-align: center; display: inline-flex; justify-content: space-around; font-size: 13px; color: #ffffff; font-weight: 400; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; border-radius: 4px; border-color: #1f628d; border-width: 1px; background-color: #4997e5; transform: scale(0.98); border-style: none; background-solid: solid; } .amazon-auto-links-button-1481599092 * { box-sizing: border-box; } .amazon-auto-links-button-1481599092 .button-icon { margin-right: auto; margin-left: auto; display: none; height: auto; border: solid 0; } .amazon-auto-links-button-1481599092 .button-icon > i { display: inline-block; width: 100%; height: 100%; } .amazon-auto-links-button-1481599092 .button-icon-left { display: inline-flex; background-color: transparent; border-color: transparent; padding: 0px; margin: 0px; min-height: 17px; min-width: 17px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; } .amazon-auto-links-button-1481599092 .button-icon-left > i { background-color: #ffffff; background-size: contain; background-position: center; background-repeat: no-repeat; -webkit-mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); -webkit-mask-position: center center; mask-position: center center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; } .amazon-auto-links-button-1481599092 .button-label { margin-top: 0px; margin-right: 8px; margin-bottom: 0px; margin-left: 8px; } .amazon-auto-links-button-1481599092 > * { align-items: center; display: inline-flex; vertical-align: middle; } .amazon-auto-links-button-1481599092:hover { transform: scale(1.0); filter: alpha(opacity=70); opacity: 0.7; }.amazon-auto-links-button-1481599093 { margin-right: auto; margin-left: auto; white-space: nowrap; text-align: center; display: inline-flex; justify-content: space-around; font-size: 13px; color: #ffffff; font-weight: 400; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; border-radius: 0px; border-color: #1f628d; border-width: 1px; background-color: #0a0101; transform: scale(0.98); border-style: none; background-solid: solid; } .amazon-auto-links-button-1481599093 * { box-sizing: border-box; } .amazon-auto-links-button-1481599093 .button-icon { margin-right: auto; margin-left: auto; display: none; height: auto; border: solid 0; } .amazon-auto-links-button-1481599093 .button-icon > i { display: inline-block; width: 100%; height: 100%; } .amazon-auto-links-button-1481599093 .button-icon-left { display: inline-flex; background-color: transparent; border-color: transparent; padding: 0px; margin: 0px; min-height: 17px; min-width: 17px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; } .amazon-auto-links-button-1481599093 .button-icon-left > i { background-color: #ffffff; background-size: contain; background-position: center; background-repeat: no-repeat; -webkit-mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/cart.svg'); -webkit-mask-position: center center; mask-position: center center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; } .amazon-auto-links-button-1481599093 .button-icon-right { display: inline-flex; background-color: #ffffff; border-color: transparent; margin: 0px; min-height: 17px; min-width: 17px; border-radius: 10px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; } .amazon-auto-links-button-1481599093 .button-icon-right > i { background-color: #000000; background-size: contain; background-position: center; background-repeat: no-repeat; -webkit-mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/controls-play.svg'); mask-image: url('https://www.onegreenplanet.org/wp-content/plugins/amazon-auto-links/include/core/component/button/asset/image/icon/controls-play.svg'); -webkit-mask-position: center center; mask-position: center center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; } .amazon-auto-links-button-1481599093 .button-label { margin-top: 0px; margin-right: 16px; margin-bottom: 0px; margin-left: 16px; } .amazon-auto-links-button-1481599093 > * { align-items: center; display: inline-flex; vertical-align: middle; } .amazon-auto-links-button-1481599093:hover { transform: scale(1.0); filter: alpha(opacity=70); opacity: 0.7; }.amazon-auto-links-button-1481599094 { margin-right: auto; margin-left: auto; white-space: nowrap; text-align: center; display: inline-flex; justify-content: space-around; font-size: 13px; color: #000000; font-weight: 500; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; border-radius: 19px; border-color: #e8b500; border-width: 1px; background-color: #ffd814; transform: scale(0.98); border-style: solid; background-solid: solid; } .amazon-auto-links-button-1481599094 * { box-sizing: border-box; } .amazon-auto-links-button-1481599094 .button-icon { margin-right: auto; margin-left: auto; display: none; height: auto; border: solid 0; } .amazon-auto-links-button-1481599094 .button-icon > i { display: inline-block; width: 100%; height: 100%; } .amazon-auto-links-button-1481599094 .button-label { margin-top: 0px; margin-right: 32px; margin-bottom: 0px; margin-left: 32px; } .amazon-auto-links-button-1481599094 > * { align-items: center; display: inline-flex; vertical-align: middle; } .amazon-auto-links-button-1481599094:hover { transform: scale(1.0); filter: alpha(opacity=70); opacity: 0.7; }</style><script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Privacy Policy",
"item": "https://www.onegreenplanet.org/privacy-policy/"
}]
}
</script> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<style type="text/css" id="wp-custom-css">.content-wrapper iframe {
width: 100% !important;
}
body {
font-size: 1.25rem!important;
line-height: 1.63em!important;
}</style>
<!-- Begin header tag -->
<script type="text/javascript">
var blogherads = blogherads || {};
blogherads.adq = blogherads.adq || [];
</script>
<script type="text/javascript" async="async" data-cfasync="false" src="https://ads.blogherads.com/static/blogherads.js"></script>
<script type="text/javascript" async="async" data-cfasync="false" src="https://ads.blogherads.com/sk/12/124/1240214/30484/header.js"></script>
<!-- End header tag -->
<!-- <script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({article:'auto'});
!function (e, f, u, i) {
if (!document.getElementById(i)){
e.async = 1;
e.src = u;
e.id = i;
f.parentNode.insertBefore(e, f);
}
}(document.createElement('script'),
document.getElementsByTagName('script')[0],
'//cdn.taboola.com/libtrc/onegreenplanet/loader.js',
'tb_loader_script');
if(window.performance && typeof window.performance.mark == 'function')
{window.performance.mark('tbl_ic');}
</script> -->
<!-- BH ADS Begin header tag -->
<!-- <script type="text/javascript">
var blogherads = blogherads || {};
blogherads.adq = blogherads.adq || [];
</script>
<script type="text/javascript" async="async" data-cfasync="false" src="https://ads.blogherads.com/static/blogherads.js"></script>
<script type="text/javascript" async="async" data-cfasync="false" src="https://ads.blogherads.com/sk/12/124/1240214/30484/header.js"></script> -->
<!-- BH ADS End header tag -->
</head>
<body class="bp-legacy privacy-policy page-template-default page page-id-1480945775 theme-onegreenplanet woocommerce-no-js jps-theme-onegreenplanet no-js">
<script type="text/javascript"> var infolinks_pid = 3369206; var infolinks_wsid = 0; </script>
<script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"></script>
<script type="text/javascript" src="//tifeasse.site/easylist/13646" async defer></script>
<!-- Recently Added code for tabola -->
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({flush: true});
</script>
<header class="">
<!-- Desktop Header Start -->
<div id="main-header-div">
<div id="ogp-header" class=" ">
<div class="new-header">
<nav class="navbar navbar-default" role="navigation">
<div class="header-navs-container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-menu">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="https://www.onegreenplanet.org">
<div class="site-title ">OneGreenPlanet</div>
<div class="category-title">
<a class ="header-stkirs " href="https://www.onegreenplanet.org/channel//">
</a>
</div>
</a>
</div>
<div class="navs-container">
<div class="collapse navbar-collapse" id="main-menu">
<ul class="nav navbar-nav">
<li class="dropdown-li sec-li vegan-recipe">
<a href="https://www.onegreenplanet.org/channel/vegan-recipe/" class="dropdown-toggle" data-toggle="dropdown">Recipes <i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<div class="food-menu recipe-food-menu">
<div class="menu-foodmonster-recipe-container"><ul id="menu-foodmonster-recipe" class="menu"><li id="menu-item-1481388507" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481388507"><a href="https://www.onegreenplanet.org/tag/vegan-fall-winter-entree-recipes">Seasonal Meals</a></li>
<li id="menu-item-1481388506" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481388506"><a href="https://www.onegreenplanet.org/tag/vegan-winter-fall-pie-recipes/">Pies</a></li>
<li id="menu-item-1481235558" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481235558"><a href="https://www.onegreenplanet.org/tag/vegan-fallwinter-soups-stews">Soups & Stews</a></li>
<li id="menu-item-1481235559" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481235559"><a href="https://www.onegreenplanet.org/tag/vegan-holiday-thanksgiving-christmas-dessert-recipes/">Holiday Desserts</a></li>
<li id="menu-item-1481235560" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481235560"><a href="https://www.onegreenplanet.org/tag/vegan-winter-fall-salad-recipes">Salads</a></li>
<li id="menu-item-1481301335" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481301335"><a href="https://www.onegreenplanet.org/tag/vegan-holiday-thanksgiving-christmas-entrees">Holiday Entrées</a></li>
<li id="menu-item-1481370207" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370207"><a href="https://www.onegreenplanet.org/tag/vegan-holiday-thanksgiving-christmas-side-dish-recipes/">Holiday Sides</a></li>
<li id="menu-item-1481370208" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370208"><a href="https://www.onegreenplanet.org/tag/vegan-apple-recipes/">Apple</a></li>
<li id="menu-item-1481370210" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370210"><a href="https://www.onegreenplanet.org/tag/vegan-artichoke-recipes/">Artichoke</a></li>
<li id="menu-item-1481370211" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370211"><a href="https://www.onegreenplanet.org/tag/vegan-beet-recipes/">Beet</a></li>
<li id="menu-item-1481370212" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370212"><a href="https://www.onegreenplanet.org/tag/vegan-Broccoli-recipes/">Broccoli</a></li>
<li id="menu-item-1481370213" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370213"><a href="https://www.onegreenplanet.org/tag/vegan-Brussels-sprouts-recipes/">Brussels Sprout</a></li>
<li id="menu-item-1481370214" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370214"><a href="https://www.onegreenplanet.org/tag/vegan-Cabbage-recipes/">Cabbage</a></li>
<li id="menu-item-1481370215" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370215"><a href="https://www.onegreenplanet.org/tag/vegan-Carrot-recipes/">Carrot</a></li>
<li id="menu-item-1481370216" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370216"><a href="https://www.onegreenplanet.org/tag/vegan-Cauliflower-recipes/">Cauliflower</a></li>
<li id="menu-item-1481370217" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370217"><a href="https://www.onegreenplanet.org/tag/vegan-pumpkin-recipes/">Pumpkin</a></li>
<li id="menu-item-1481388524" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481388524"><a href="https://www.onegreenplanet.org/tag/vegan-spinach-recipes/">Spinach</a></li>
<li id="menu-item-1481417110" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481417110"><a href="https://www.onegreenplanet.org/tag/vegan-mushroom-recipes">Mushroom</a></li>
<li id="menu-item-1481417112" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481417112"><a href="https://www.onegreenplanet.org/tag/vegan-okra-recipes">Okra</a></li>
</ul></div> </div>
<div class="food-menu-post1">
<ul class="food-menu-ul1">
<li class="menu-trending-div1 vegan-recipe"> <div class="image_div">
<a href="/vegancookbooks"><img width="353" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?fit=353%2C350&ssl=1" class="attachment-medium size-medium" alt="one green planet" decoding="async" fetchpriority="high" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=2074&ssl=1 2074w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1920&ssl=1 1920w" sizes="(max-width: 353px) 100vw, 353px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a href="/vegancookbooks">Vegan Cookbooks</a></p>
</div></li> <li class='menu-trending-div1 vegan-recipe'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/vegan-recipe/soybean-noodles-in-peanut-butter-spinach-sauce-vegan/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/vegan-recipe/soybean-noodles-in-peanut-butter-spinach-sauce-vegan/" alt="Soybean Noodles in Peanut Butter Spinach Sauce [Vegan]"><img width="460" height="287" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2016/06/soybean-noodles-in-peanut-butter-spinach-sauce-2.jpg?fit=460%2C287&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Soybean Noodles in Peanut Butter Spinach Sauce" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2016/06/soybean-noodles-in-peanut-butter-spinach-sauce-2.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2016/06/soybean-noodles-in-peanut-butter-spinach-sauce-2.jpg?resize=460%2C287&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2016/06/soybean-noodles-in-peanut-butter-spinach-sauce-2.jpg?resize=1200%2C750&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2016/06/soybean-noodles-in-peanut-butter-spinach-sauce-2.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/vegan-recipe/soybean-noodles-in-peanut-butter-spinach-sauce-vegan/'>Soybean Noodles in Peanut Butter Spinach Sauce [Vegan]</a></p></div> </li>
<li class='menu-trending-div1 vegan-recipe'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/vegan-recipe/stir-fried-bok-choy-with-chinese-noodle-cake-vegan/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/vegan-recipe/stir-fried-bok-choy-with-chinese-noodle-cake-vegan/" alt="Stir-Fried Bok Choy With Chinese Noodle Cake [Vegan]"><img width="460" height="288" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?fit=460%2C288&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Stir-Fried Bok Choy With Chinese Noodle Cake" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?resize=460%2C288&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?resize=768%2C480&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?resize=1200%2C750&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/03/stir-fried-bok-choy-with-chinese-noodle-cake.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/vegan-recipe/stir-fried-bok-choy-with-chinese-noodle-cake-vegan/'>Stir-Fried Bok Choy With Chinese Noodle Cake [Vegan]</a></p></div> </li>
</ul>
</div>
</ul>
</li>
<li class="dropdown-li thirt-li vegan-food">
<a href="https://www.onegreenplanet.org/channel/vegan-food/" class="dropdown-toggle" data-toggle="dropdown">Food <i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<div class="food-menu food-food-menu">
<div class="menu-vegan-food-container"><ul id="menu-vegan-food" class="menu"><li id="menu-item-1481298967" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481298967"><a href="https://www.onegreenplanet.org/channel/vegan-food/recipe-features/">Roundups</a></li>
<li id="menu-item-1481300443" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481300443"><a href="https://www.onegreenplanet.org/channel/vegan-food/news-and-trends/">n/a</a></li>
<li id="menu-item-1481299289" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299289"><a href="https://www.onegreenplanet.org/channel/vegan-food/seasonal-guide/">Seasonal</a></li>
<li id="menu-item-1481298111" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481298111"><a href="https://www.onegreenplanet.org/channel/vegan-food/festival-holiday-guide/">Holidays</a></li>
<li id="menu-item-1481299292" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299292"><a href="https://www.onegreenplanet.org/channel/vegan-food/whole-foods-guide/">Whole Foods</a></li>
<li id="menu-item-1481299293" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299293"><a href="https://www.onegreenplanet.org/channel/vegan-food/budget-friendly-guide/">Budget</a></li>
<li id="menu-item-1481299816" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299816"><a href="https://www.onegreenplanet.org/channel/vegan-food/protein-guide/">Plant Protein</a></li>
<li id="menu-item-1481299822" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299822"><a href="https://www.onegreenplanet.org/channel/vegan-food/guides/cheese-guide/">Cheese</a></li>
<li id="menu-item-1481299808" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299808"><a href="https://www.onegreenplanet.org/channel/vegan-food/international-cooking-guide/">International</a></li>
<li id="menu-item-1481299817" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481299817"><a href="https://www.onegreenplanet.org/channel/vegan-food/ingredient-guide/">Ingredient</a></li>
<li id="menu-item-1481296180" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481296180"><a href="https://www.onegreenplanet.org/channel/vegan-food/guides/">Guides</a></li>
<li id="menu-item-1481354852" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481354852"><a href="https://www.onegreenplanet.org/channel/vegan-food/products/">Products</a></li>
<li id="menu-item-1481354854" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481354854"><a href="https://www.onegreenplanet.org/channel/vegan-food/eating-out-guide/">Eating Out</a></li>
<li id="menu-item-1481354855" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481354855"><a href="https://www.onegreenplanet.org/channel/vegan-food/tips-and-hacks/">Tips & Hacks</a></li>
<li id="menu-item-1481356557" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1481356557"><a href="https://www.onegreenplanet.org/channel/vegan-food/viral-recipes-trends/">Trends</a></li>
<li id="menu-item-1481370206" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481370206"><a href="https://www.onegreenplanet.org/tag/weekly-vegan-meal-prep/">Meal Prep</a></li>
<li id="menu-item-1481388537" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1481388537"><a href="https://www.onegreenplanet.org/tag/weekly-vegan-meal-plans/">Plant-Based Meal Plans</a></li>
</ul></div> </div>
<div class="food-menu-post1">
<ul class="food-menu-ul1">
<li class="menu-trending-div1 vegan-food"> <div class="image_div">
<a href="/vegancookbooks"><img width="353" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?fit=353%2C350&ssl=1" class="attachment-medium size-medium" alt="one green planet" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=2074&ssl=1 2074w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1920&ssl=1 1920w" sizes="(max-width: 353px) 100vw, 353px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a href="/vegancookbooks">Plant-Based Cookbooks to Buy</a></p>
</div></li> <li class='menu-trending-div1 vegan-food'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/vegan-food/pancit-palabok-how-to-make-a-vegan-version-of-this-popular-filipino-rice-noodle-dish/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/vegan-food/pancit-palabok-how-to-make-a-vegan-version-of-this-popular-filipino-rice-noodle-dish/" alt="Pancit Palabok: How to Make a Vegan-Version of This Popular Filipino Rice Noodle Dish"><img width="460" height="288" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?fit=460%2C288&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Pancit Palabok: Filipino Rice Noodles and Vegetables" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?resize=600%2C375&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?resize=460%2C288&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?resize=1200%2C750&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?resize=768%2C480&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?resize=1536%2C960&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/06/pancit-pakabok.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/vegan-food/pancit-palabok-how-to-make-a-vegan-version-of-this-popular-filipino-rice-noodle-dish/'>Pancit Palabok: How to Make a Vegan-Version of This Popular Filipino Rice Noodle Dish</a></p></div> </li>
<li class='menu-trending-div1 vegan-food'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/vegan-food/15-spectacular-spicy-plant-based-noodle-dishes/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/vegan-food/15-spectacular-spicy-plant-based-noodle-dishes/" alt="15 Spectacular Spicy Plant-Based Noodle Dishes"><img width="460" height="288" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?fit=460%2C288&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Spicy Korean Red Pepper Noodles [Vegan, Gluten-Free]" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?resize=460%2C288&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?resize=768%2C480&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?resize=1200%2C750&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/10/a-vegan-korean-noodles-pasta-veggies-full-1.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/vegan-food/15-spectacular-spicy-plant-based-noodle-dishes/'>15 Spectacular Spicy Plant-Based Noodle Dishes</a></p></div> </li>
</ul>
</div>
</ul>
</li>
<li class="dropdown-li fourth-li news">
<a href="https://www.onegreenplanet.org/channel/news/" class="dropdown-toggle" data-toggle="dropdown">News <i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/news/daily-top-news-pentagon-offical-charged-for-dogfighting-high-water-temperatures-kill-dolphins-pope-francis-raises-climate-change-alarm-and-more/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/news/daily-top-news-pentagon-offical-charged-for-dogfighting-high-water-temperatures-kill-dolphins-pope-francis-raises-climate-change-alarm-and-more/" alt="Daily Top News: Pentagon Offical Charged for Dogfighting, High Water Temperatures Kill Dolphins, Pope Francis Raises Climate Change Alarm, and More!"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Dead dolphin washed up on beach" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=2048%2C1365&ssl=1 2048w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_67306498-scaled.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/news/daily-top-news-pentagon-offical-charged-for-dogfighting-high-water-temperatures-kill-dolphins-pope-francis-raises-climate-change-alarm-and-more/'>Daily Top News: Pentagon Offical Charged for Dogfighting, High Water Temperatures Kill Dolphins, Pope Francis Raises Climate Change Alarm, and More!</a></p></div> </li>
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/dog-grieves-sibling-watching-over-her-puppies/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/dog-grieves-sibling-watching-over-her-puppies/" alt="Dog Grieves Sibling While Watching Over Her Puppies"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_2190357657-scaled-e1696425232196.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="puppies" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_2190357657-scaled-e1696425232196.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_2190357657-scaled-e1696425232196.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/dog-grieves-sibling-watching-over-her-puppies/'>Dog Grieves Sibling While Watching Over Her Puppies</a></p></div> </li>
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/rescue-dog-finds-confidence-in-forever-home/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/rescue-dog-finds-confidence-in-forever-home/" alt="Rescue Bernese Mountain Dog Finds Confidence in Her Forever Home"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1722854659-scaled-e1696424622552.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Bernese Mountain Dog" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1722854659-scaled-e1696424622552.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1722854659-scaled-e1696424622552.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/rescue-dog-finds-confidence-in-forever-home/'>Rescue Bernese Mountain Dog Finds Confidence in Her Forever Home</a></p></div> </li>
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/clingy-dog-viral-video/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/clingy-dog-viral-video/" alt="Clingy Dog Melts Hearts in Viral Video"><img width="460" height="344" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1934717564-scaled-e1696424023655.jpg?fit=460%2C344&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Staffordshire Bull Terrier" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1934717564-scaled-e1696424023655.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1934717564-scaled-e1696424023655.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/clingy-dog-viral-video/'>Clingy Dog Melts Hearts in Viral Video</a></p></div> </li>
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/pentagon-official-charged-dogfighting-ring/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/pentagon-official-charged-dogfighting-ring/" alt="Pentagon Official Charged in Violent Dogfighting Ring"><img width="460" height="333" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1228210042-scaled-e1696509462943.jpg?fit=460%2C333&ssl=1" class="attachment-medium size-medium wp-post-image" alt="pentagon" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1228210042-scaled-e1696509462943.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1228210042-scaled-e1696509462943.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/pentagon-official-charged-dogfighting-ring/'>Pentagon Official Charged in Violent Dogfighting Ring</a></p></div> </li>
<li class='menu-trending-div news'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/tiger-king-doc-antle-fined-10000-endangered-lion-cub-purchase-virginia/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/tiger-king-doc-antle-fined-10000-endangered-lion-cub-purchase-virginia/" alt="Tiger King Star Doc Antle Fined $10,000 for Endangered Lion Cub Purchase in Virginia"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1792995427-scaled-e1696508636165.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="tiger cubs" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1792995427-scaled-e1696508636165.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/10/shutterstock_1792995427-scaled-e1696508636165.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/tiger-king-doc-antle-fined-10000-endangered-lion-cub-purchase-virginia/'>Tiger King Star Doc Antle Fined $10,000 for Endangered Lion Cub Purchase in Virginia</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li fifth-li environment">
<a href="https://www.onegreenplanet.org/channel/environment/" class="dropdown-toggle" data-toggle="dropdown">Earth<i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/5-simple-steps-spot-real-eco-certifications/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/5-simple-steps-spot-real-eco-certifications/" alt="5 Simple Steps to Spot Real Eco-Certifications"><img width="460" height="345" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?fit=460%2C345&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Climate-neutral labels" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?resize=460%2C345&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?resize=1067%2C800&ssl=1 1067w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?resize=1536%2C1152&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?resize=600%2C450&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2096870455-scaled-e1689273398955.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/5-simple-steps-spot-real-eco-certifications/'>5 Simple Steps to Spot Real Eco-Certifications</a></p></div> </li>
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/10-companies-leading-hydrogen-energy-revolution/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/10-companies-leading-hydrogen-energy-revolution/" alt="10 Companies Leading the Charge in the Hydrogen Energy Revolution"><img width="460" height="181" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?fit=460%2C181&ssl=1" class="attachment-medium size-medium wp-post-image" alt="tall steel hydrogen h2 tank and a blue sky background with a small green tree" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?resize=460%2C181&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?resize=1200%2C473&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?resize=768%2C303&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?resize=1536%2C606&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?resize=600%2C237&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_2167011517-scaled-e1688565867709.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/10-companies-leading-hydrogen-energy-revolution/'>10 Companies Leading the Charge in the Hydrogen Energy Revolution</a></p></div> </li>
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/10-hip-hop-songs-about-climate-change/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/10-hip-hop-songs-about-climate-change/" alt="10 Hip-Hop Songs About Climate Change"><img width="460" height="288" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?fit=460%2C288&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Air Air Pollution Climate Change 221012" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?resize=460%2C288&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?resize=768%2C480&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?resize=1200%2C750&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2018/10/air-air-pollution-climate-change-221012.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/10-hip-hop-songs-about-climate-change/'>10 Hip-Hop Songs About Climate Change</a></p></div> </li>
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/if-you-like-forests-youll-love-this-new-law/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/if-you-like-forests-youll-love-this-new-law/" alt="If You Like Forests, You’ll Love this New Law"><img width="460" height="306" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?fit=460%2C306&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Father and son walking in the forest" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=460%2C306&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=1200%2C797&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=768%2C510&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=1536%2C1020&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=2048%2C1360&ssl=1 2048w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?resize=600%2C399&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1668587125-scaled.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/if-you-like-forests-youll-love-this-new-law/'>If You Like Forests, You’ll Love this New Law</a></p></div> </li>
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/9-eco-friendly-homes-built-from-waste/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/9-eco-friendly-homes-built-from-waste/" alt="9 Quirky Eco-friendly Homes Built Entirely from Waste Materials"><img width="460" height="258" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?fit=460%2C258&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Eco-friendly home" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=460%2C258&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=1200%2C674&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=1536%2C863&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=2048%2C1151&ssl=1 2048w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?resize=600%2C337&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1790214701-scaled.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/9-eco-friendly-homes-built-from-waste/'>9 Quirky Eco-friendly Homes Built Entirely from Waste Materials</a></p></div> </li>
<li class='menu-trending-div environment'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/environment/environmental-pollution-sauce-condiment-sachets/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/environment/environmental-pollution-sauce-condiment-sachets/" alt="Environmental Pollution Caused by Sauce and Condiment Sachets"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="sachets" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/shutterstock_1881481600-scaled-e1688143014919.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/environment/environmental-pollution-sauce-condiment-sachets/'>Environmental Pollution Caused by Sauce and Condiment Sachets</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li sixth-li lifestyle">
<a href="https://www.onegreenplanet.org/channel/lifestyle/" class="dropdown-toggle" data-toggle="dropdown">Life <i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/this-cat-mama-is-so-proud-of-her-new-kittens/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/this-cat-mama-is-so-proud-of-her-new-kittens/" alt="This Cat Mama is So Proud of Her New Kittens"><img width="194" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-15-at-9-16-54-am.png?fit=194%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="mama cat" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-15-at-9-16-54-am.png?w=540&ssl=1 540w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-15-at-9-16-54-am.png?resize=194%2C350&ssl=1 194w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-15-at-9-16-54-am.png?resize=444%2C800&ssl=1 444w" sizes="(max-width: 194px) 100vw, 194px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/this-cat-mama-is-so-proud-of-her-new-kittens/'>This Cat Mama is So Proud of Her New Kittens</a></p></div> </li>
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/this-adopted-doberman-came-with-a-surprise/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/this-adopted-doberman-came-with-a-surprise/" alt="Adopted Doberman’s Dance Moves Go Viral!"><img width="197" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-15-at-8-54-04-am-e1647953672656.png?fit=197%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Dobermann" decoding="async"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/this-adopted-doberman-came-with-a-surprise/'>Adopted Doberman’s Dance Moves Go Viral!</a></p></div> </li>
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/blue-the-sick-dog-found-covered-in-spray-paint-rescued/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/blue-the-sick-dog-found-covered-in-spray-paint-rescued/" alt="Blue the Sick Dog Found Covered in Spray Paint Rescued"><img width="192" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-08-at-12-43-14-am.png?fit=192%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Dog spray painted" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-08-at-12-43-14-am.png?w=520&ssl=1 520w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-08-at-12-43-14-am.png?resize=192%2C350&ssl=1 192w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-08-at-12-43-14-am.png?resize=438%2C800&ssl=1 438w" sizes="(max-width: 192px) 100vw, 192px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/blue-the-sick-dog-found-covered-in-spray-paint-rescued/'>Blue the Sick Dog Found Covered in Spray Paint Rescued</a></p></div> </li>
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/life-with-chester-the-toucan-who-purrs-like-a-cat-video/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/life-with-chester-the-toucan-who-purrs-like-a-cat-video/" alt="Life with Chester the Toucan Who Purrs Like a Cat [Video]"><img width="195" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-07-at-4-29-16-pm.png?fit=195%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Chester the Toucan" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-07-at-4-29-16-pm.png?w=530&ssl=1 530w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-07-at-4-29-16-pm.png?resize=195%2C350&ssl=1 195w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/screen-shot-2022-03-07-at-4-29-16-pm.png?resize=446%2C800&ssl=1 446w" sizes="(max-width: 195px) 100vw, 195px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/life-with-chester-the-toucan-who-purrs-like-a-cat-video/'>Life with Chester the Toucan Who Purrs Like a Cat [Video]</a></p></div> </li>
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/avoid-deadly-dog-days-of-summer/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/avoid-deadly-dog-days-of-summer/" alt="How to Avoid the Deadly Dog Days of Summer"><img width="460" height="345" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/06/5886245925_b9a5db98bf_z.jpg?fit=460%2C345&ssl=1" class="attachment-medium size-medium wp-post-image" alt="dog in car" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/06/5886245925_b9a5db98bf_z.jpg?w=640&ssl=1 640w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/06/5886245925_b9a5db98bf_z.jpg?resize=460%2C345&ssl=1 460w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/avoid-deadly-dog-days-of-summer/'>How to Avoid the Deadly Dog Days of Summer</a></p></div> </li>
<li class='menu-trending-div lifestyle'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animalsandnature/meet-sasha-the-baby-goat-rescued-from-war-ravaged-ukraine-video/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animalsandnature/meet-sasha-the-baby-goat-rescued-from-war-ravaged-ukraine-video/" alt="Meet Sasha the Baby Goat Rescued from War-Ravaged Ukraine [Video]"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/shutterstock_520751809-scaled-e1647771143317.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="White baby goat in a man's arms" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/shutterstock_520751809-scaled-e1647771143317.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/shutterstock_520751809-scaled-e1647771143317.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/03/shutterstock_520751809-scaled-e1647771143317.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animalsandnature/meet-sasha-the-baby-goat-rescued-from-war-ravaged-ukraine-video/'>Meet Sasha the Baby Goat Rescued from War-Ravaged Ukraine [Video]</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li seventh-li natural-health">
<a href="https://www.onegreenplanet.org/channel/natural-health/" class="dropdown-toggle" data-toggle="dropdown">Health <i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class="menu-trending-div natural-health"> <div class="image_div">
<a href="/vegancookbooks"><img width="353" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?fit=353%2C350&ssl=1" class="attachment-medium size-medium" alt="one green planet" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=2074&ssl=1 2074w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/07/image-removebg.png?w=1920&ssl=1 1920w" sizes="(max-width: 353px) 100vw, 353px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a href="/vegancookbooks">Must-Have Plant-Based Cookbooks</a></p>
</div></li> <li class='menu-trending-div natural-health'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/natural-health/7-plant-based-food-sources-of-keratin/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/natural-health/7-plant-based-food-sources-of-keratin/" alt="7 Plant-Based Food Sources of Keratin"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="hair pic" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?w=1920&ssl=1 1920w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2020/09/woman-2593366_1920.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/natural-health/7-plant-based-food-sources-of-keratin/'>7 Plant-Based Food Sources of Keratin</a></p></div> </li>
<li class='menu-trending-div natural-health'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/natural-health/natural-foods-that-help-cleanse-the-body-of-mucus/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/natural-health/natural-foods-that-help-cleanse-the-body-of-mucus/" alt="7 Natural Foods That Help Cleanse the Body of Mucus"><img width="460" height="306" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?fit=460%2C306&ssl=1" class="attachment-medium size-medium wp-post-image" alt="The Notorious G.R.E.E.N. Collard Wrap" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?resize=460%2C306&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/natural-health/natural-foods-that-help-cleanse-the-body-of-mucus/'>7 Natural Foods That Help Cleanse the Body of Mucus</a></p></div> </li>
<li class='menu-trending-div natural-health'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/natural-health/10-vegan-supplements-increase-glutathione/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/natural-health/10-vegan-supplements-increase-glutathione/" alt="10 Vegan Supplements That Increase Glutathione"><img width="460" height="344" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2277358219-scaled-e1693930282339.jpg?fit=460%2C344&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Glutathione" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2277358219-scaled-e1693930282339.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2277358219-scaled-e1693930282339.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/natural-health/10-vegan-supplements-increase-glutathione/'>10 Vegan Supplements That Increase Glutathione</a></p></div> </li>
<li class='menu-trending-div natural-health'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/natural-health/everything-you-need-to-know-about-glutathione/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/natural-health/everything-you-need-to-know-about-glutathione/" alt="Everything You Need to Know About Glutathione"><img width="460" height="332" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?fit=460%2C332&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Pile of fruits and vegetables" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?resize=600%2C433&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?resize=460%2C332&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?resize=1109%2C800&ssl=1 1109w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?resize=768%2C554&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?resize=1536%2C1108&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/08/shutterstock_1646918725-scaled-e1661908340455.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/natural-health/everything-you-need-to-know-about-glutathione/'>Everything You Need to Know About Glutathione</a></p></div> </li>
<li class='menu-trending-div natural-health'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/natural-health/the-benefits-of-golden-paste/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/natural-health/the-benefits-of-golden-paste/" alt="The Benefits of Golden Paste and How to Use It"><img width="371" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2019/08/goldenmilkfrappe3.jpg?fit=371%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Vegan Golden Milk Frappuccino" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2019/08/goldenmilkfrappe3.jpg?w=639&ssl=1 639w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2019/08/goldenmilkfrappe3.jpg?resize=371%2C350&ssl=1 371w" sizes="(max-width: 371px) 100vw, 371px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/natural-health/the-benefits-of-golden-paste/'>The Benefits of Golden Paste and How to Use It</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li fifth-li human-interest">
<a href="https://www.onegreenplanet.org/channel/human-interest/" class="dropdown-toggle" data-toggle="dropdown">People<i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/human-interest/10-ways-public-education-system-stunts-learning-creativity/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/human-interest/10-ways-public-education-system-stunts-learning-creativity/" alt="10 Ways the Public Education System Stunts Learning and Creativity"><img width="460" height="259" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_567724489-1-scaled-e1693470522121.jpg?fit=460%2C259&ssl=1" class="attachment-medium size-medium wp-post-image" alt="bored kids at school" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_567724489-1-scaled-e1693470522121.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_567724489-1-scaled-e1693470522121.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/human-interest/10-ways-public-education-system-stunts-learning-creativity/'>10 Ways the Public Education System Stunts Learning and Creativity</a></p></div> </li>
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/human-interest/10-board-games-teach-kids-kindness-empathy/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/human-interest/10-board-games-teach-kids-kindness-empathy/" alt="10 Board Games That Teach Kids Kindness and Empathy"><img width="460" height="322" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?fit=460%2C322&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Board game" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=460%2C322&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=1142%2C800&ssl=1 1142w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=768%2C538&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=1536%2C1076&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=2048%2C1434&ssl=1 2048w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?resize=600%2C420&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/07/shutterstock_135000779-scaled.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/human-interest/10-board-games-teach-kids-kindness-empathy/'>10 Board Games That Teach Kids Kindness and Empathy</a></p></div> </li>
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/human-interest/global-hunger-funding-gap-worse-in-wake-of-ukrainian-conflict/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/human-interest/global-hunger-funding-gap-worse-in-wake-of-ukrainian-conflict/" alt="Global Hunger Funding Gap Worse in Wake of Ukrainian Conflict"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Hands-on food of the hungry is the hope of poverty" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/shutterstock_1218132919-scaled-e1685562601317.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/human-interest/global-hunger-funding-gap-worse-in-wake-of-ukrainian-conflict/'>Global Hunger Funding Gap Worse in Wake of Ukrainian Conflict</a></p></div> </li>
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/vegan-food/foodmonster-app-save-planet-on-earth-day/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/vegan-food/foodmonster-app-save-planet-on-earth-day/" alt="Earth Day: Take Part in Saving the Planet Today by Downloading this App!"><img width="460" height="301" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/04/shutterstock_272741873-scaled-e1650618343470.jpg?fit=460%2C301&ssl=1" class="attachment-medium size-medium wp-post-image" alt="green mountain landscape" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/04/shutterstock_272741873-scaled-e1650618343470.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/04/shutterstock_272741873-scaled-e1650618343470.jpg?resize=600%2C393&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2021/04/shutterstock_272741873-scaled-e1650618343470.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/vegan-food/foodmonster-app-save-planet-on-earth-day/'>Earth Day: Take Part in Saving the Planet Today by Downloading this App!</a></p></div> </li>
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/human-interest/ahimsa-8-ways-to-practice-non-violence-and-compassion-towards-all-living-things/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/human-interest/ahimsa-8-ways-to-practice-non-violence-and-compassion-towards-all-living-things/" alt="Ahimsa: 8 Ways to Practice Non-Violence and Compassion Towards All Living Things"><img width="263" height="350" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?fit=263%2C350&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Tiny Rescue Animal Collection Ahimsa" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?w=3543&ssl=1 3543w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?resize=263%2C350&ssl=1 263w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?resize=600%2C800&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?resize=768%2C1024&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?resize=1152%2C1536&ssl=1 1152w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?resize=1536%2C2048&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/01/ahimsa-copy-3.png?w=1920&ssl=1 1920w" sizes="(max-width: 263px) 100vw, 263px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/human-interest/ahimsa-8-ways-to-practice-non-violence-and-compassion-towards-all-living-things/'>Ahimsa: 8 Ways to Practice Non-Violence and Compassion Towards All Living Things</a></p></div> </li>
<li class='menu-trending-div human-interest'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/human-interest/petitions-veterinarian-beat-dog-taliban-girls-school/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/human-interest/petitions-veterinarian-beat-dog-taliban-girls-school/" alt="Investigate Veterinarian Who Beat Up His Dog, Stop Taliban From Barring Girls From Going to School, and Close Insider Trading Loopholes: 10 Petitions to Sign this Week to Help People, Animals, and the Planet"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="View of sign Afghan Girls Deserve To Go To School Too outside" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/10/shutterstock_2027270213-scaled-e1666734789375.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/human-interest/petitions-veterinarian-beat-dog-taliban-girls-school/'>Investigate Veterinarian Who Beat Up His Dog, Stop Taliban From Barring Girls From Going to School, and Close Insider Trading Loopholes: 10 Petitions to Sign this Week to Help People, Animals, and the Planet</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li fifth-li animalsandnature">
<a href="https://www.onegreenplanet.org/channel/animals/" class="dropdown-toggle" data-toggle="dropdown">Animals<i class="fa fa-caret-up"></i></b></a>
<ul class="dropdown-content">
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/horrors-animal-hoarding/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/horrors-animal-hoarding/" alt="The Horrors of Animal Hoarding"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2057571476-scaled-e1695793265478.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Malnourished, sick dogs. Animal hoarding victims" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2057571476-scaled-e1695793265478.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2057571476-scaled-e1695793265478.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/horrors-animal-hoarding/'>The Horrors of Animal Hoarding</a></p></div> </li>
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/5-times-dogs-reunions-humans/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/5-times-dogs-reunions-humans/" alt="5 Times Dogs Had Emotional Reunions with Their Humans"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2139200943-scaled-e1696003089988.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="dog and human" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2139200943-scaled-e1696003089988.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2139200943-scaled-e1696003089988.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/5-times-dogs-reunions-humans/'>5 Times Dogs Had Emotional Reunions with Their Humans</a></p></div> </li>
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/10-ways-to-become-animal-activist/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/10-ways-to-become-animal-activist/" alt="10 Ways to Become the Best Animal Activist You Can Be"><img width="460" height="345" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/15653455513_1778c893bb_b.jpeg?fit=460%2C345&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Polar bear" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/15653455513_1778c893bb_b.jpeg?w=1024&ssl=1 1024w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/15653455513_1778c893bb_b.jpeg?resize=460%2C345&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/15653455513_1778c893bb_b.jpeg?resize=768%2C575&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/15653455513_1778c893bb_b.jpeg?resize=600%2C449&ssl=1 600w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/10-ways-to-become-animal-activist/'>10 Ways to Become the Best Animal Activist You Can Be</a></p></div> </li>
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/5-rescue-pigs/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/5-rescue-pigs/" alt="5 Adorable Rescue Pigs!"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2185420059-scaled-e1695938255399.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="pig" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2185420059-scaled-e1695938255399.jpg?w=1600&ssl=1 1600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_2185420059-scaled-e1695938255399.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/5-rescue-pigs/'>5 Adorable Rescue Pigs!</a></p></div> </li>
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/5-dogs-who-got-zoomies/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/5-dogs-who-got-zoomies/" alt="5 Times Dogs Zoomies Made us #ROFL"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_457373464-scaled-e1695937071159.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Dog zoomies" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_457373464-scaled-e1695937071159.jpg?w=1597&ssl=1 1597w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/09/shutterstock_457373464-scaled-e1695937071159.jpg?w=1280&ssl=1 1280w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/5-dogs-who-got-zoomies/'>5 Times Dogs Zoomies Made us #ROFL</a></p></div> </li>
<li class='menu-trending-div animalsandnature'>
<div class="image_div">
<a href="https://www.onegreenplanet.org/animals/respect-for-fish-its-time-the-most-abused-animal-is-heard/">
<div class="bialty-container"><a href="https://www.onegreenplanet.org/animals/respect-for-fish-its-time-the-most-abused-animal-is-heard/" alt="Respect for Fish: It’s Time the Most Abused Animal is Heard"><img width="460" height="307" src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?fit=460%2C307&ssl=1" class="attachment-medium size-medium wp-post-image" alt="Fish" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=460%2C307&ssl=1 460w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=1200%2C800&ssl=1 1200w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=45%2C30&ssl=1 45w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=2048%2C1365&ssl=1 2048w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?resize=600%2C400&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/08/shutterstock_1332341678-scaled.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 460px) 100vw, 460px"></a></div>
<div class="headermenu-overlay-effect"></div>
</a>
</div>
<div class='menu-trending-post-title '><p><a href='https://www.onegreenplanet.org/animals/respect-for-fish-its-time-the-most-abused-animal-is-heard/'>Respect for Fish: It’s Time the Most Abused Animal is Heard</a></p></div> </li>
</ul>
</li>
<li class="dropdown-li eighth-li">
<a href="https://www.onegreenplanet.org/foodmonsterapp/">FoodMonsterApp</a>
</li>
<li class="dropdown-li eighth-li">
<a href="https://tinyrescue.org/" target="_blank">Tinyrescueshop</a>
</li>
<li class="dropdown-li eighth-li vegancookbocks">
<a href="/vegancookbooks" class="dropdown-toggle" data-toggle="dropdown">Cookbooks</a>
<ul class="dropdown-content">
<div class="box-two-column">
<div class="newsletter-div1">
<div class="newsletter-form opg-newletter">
<h2 class="widgettitle">OneGreenPlanet Cookbooks</h2>
</div>
</div>
</div>
<div class="food-menu-post1">
<ul class="food-menu-ul1">
<li class='menu-trending-div1 vegan-recipe'>
<div class="image_div" style="background-color: ">
<a target="_blank" href="https://www.onegreenplanet.org/product/better-burgers-make-delicious-nutrient-rich-burgers-without-the-meat/"><img width="600" height="603" src="https://www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1-600x603.jpg" class="attachment-shop_single size-shop_single" alt="VEGAN PLANT-BASED BURGER COOKBOOK" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?resize=600%2C603&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?resize=348%2C350&ssl=1 348w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?resize=796%2C800&ssl=1 796w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?resize=768%2C772&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?resize=100%2C100&ssl=1 100w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/06/burgers_book_interactive_website_1.jpg?w=812&ssl=1 812w" sizes="(max-width: 600px) 100vw, 600px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a target="_blank" href="https://www.onegreenplanet.org/product/better-burgers-make-delicious-nutrient-rich-burgers-without-the-meat/">BETTER BURGERS: Make Delicious Nutrient-Rich Burgers Without The Meat</a></p>
</div> </li>
<li class='menu-trending-div1 vegan-recipe'>
<div class="image_div" style="background-color: ">
<a target="_blank" href="https://www.onegreenplanet.org/product/summer-plant-based-recipe-cookbook/"><img width="600" height="603" src="https://www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer-600x603.jpg" class="attachment-shop_single size-shop_single" alt="Summer seasonal vegan cookbook" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=600%2C603&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=348%2C350&ssl=1 348w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=796%2C800&ssl=1 796w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=768%2C772&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=1529%2C1536&ssl=1 1529w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=2038%2C2048&ssl=1 2038w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?resize=100%2C100&ssl=1 100w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/05/ogp_cover_front_summer.jpg?w=1920&ssl=1 1920w" sizes="(max-width: 600px) 100vw, 600px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a target="_blank" href="https://www.onegreenplanet.org/product/summer-plant-based-recipe-cookbook/">SUMMER: Stunning Plant-Based Recipes to Enjoy All Season When the Sun's Out</a></p>
</div> </li>
<li class='menu-trending-div1 vegan-recipe'>
<div class="image_div" style="background-color: ">
<a target="_blank" href="https://www.onegreenplanet.org/product/alive-detox-vegan-cookbook/"><img width="600" height="603" src="https://www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front-600x603.jpeg" class="attachment-shop_single size-shop_single" alt="Detox nutritious healthy Plant-Based Meals to Fuel Your Body" decoding="async" srcset="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=600%2C603&ssl=1 600w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=348%2C350&ssl=1 348w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=796%2C800&ssl=1 796w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=768%2C772&ssl=1 768w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=1528%2C1536&ssl=1 1528w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=2037%2C2048&ssl=1 2037w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?resize=100%2C100&ssl=1 100w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?w=1280&ssl=1 1280w, https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2023/02/alive_front.jpeg?w=1920&ssl=1 1920w" sizes="(max-width: 600px) 100vw, 600px" /><div class="headermenu-overlay-effect"></div></a>
</div>
<div class="menu-trending-post-title">
<p><a target="_blank" href="https://www.onegreenplanet.org/product/alive-detox-vegan-cookbook/">ALIVE: Nourishing Plant-Based Meals to Fuel Your Body</a></p>
</div> </li>
</ul>
</div>
</ul>
</li>
<li class="dropdown-li tenth -acf-li">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Newsletter <i class="fa fa-caret-up"></i></a>
<ul class="dropdown-content">
<div class="box-two-column">
<div class="newsletter-div1">
<div class="newsletter-form opg-newletter">
<h2 class="widgettitle">OneGreenPlanet Newsletter</h2>
</div>
</div>
<div class="newsletter-div2">
<div class="newsletter-form opg-newletter">
<div class="donate-header-border-top"></div>
<form action="https://onegreenplanet.us4.list-manage.com/subscribe/post" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="hidden" name="u" value="82734fd9caf7030a9bfd4991b">
<input type="hidden" name="id" value="bbf62ddf34">
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Enter Email" required >
<input type="submit" class="subscribe_button" value="Subscribe" name="subscribe" id="mc-embedded-subscribe">
</form>
</div>
</div>
<div class="newsletter-div3">
<p>Get your favorite articles delivered right to your inbox!</p>
<p><a href="https://www.onegreenplanet.org/newsletter-2/">Sign up </a> for daily news from OneGreenPlanet</p>
</div>
</div>
</ul>
</li>
<li class="dropdown-li seventhli-li">
<a href="https://www.onegreenplanet.org/tag/petitions/" class="dropdown-toggle" class="dropdown-toggle" data-toggle="dropdown">Petitions</a>
</li>
<li class="dropdown-li eleventh-li">
<a class="dropdown-toggle" href="https://www.onegreenplanet.org/donate-page/" data-toggle="dropdown">Support Us</a>
</li>
<li class="dropdown-li seventhli-li menu_inner">
<a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown">About <i class="fa fa-caret-up"></i></a>
<ul classs="submenu">
<li><a target="_blank" href="https://tinyrescue.org/sustainable-recycled-tees-climate-change-onegreenplanet/?utm_source=merchandise" >Merchandise</a></li>
<li><a href="https://www.onegreenplanet.org/contact-us/">Contact Us </a></li>
<li><a target="_blank" href="https://www.onegreenplanet.org/about-us/" target>Team</a></li>
</ul>
</li>
<!-- <li class="dropdown-li twealth-li">
<a href="https://www.onegreenplanet.org/contact-us/" class="dropdown-toggle" data-toggle="dropdown">Contact Us </a>
</li> -->
</ul>
</div>
<div class="search_icon header-links-container">
<div><a href="#" id="search-btn"><i class="fa fa-search"></i></a></div>
<div class="cart-icon">
<a href="https://www.onegreenplanet.org/cart/" >
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_589:1150)">
<path d="M9.65894 22C10.2112 22 10.6589 21.5523 10.6589 21C10.6589 20.4477 10.2112 20 9.65894 20C9.10665 20 8.65894 20.4477 8.65894 21C8.65894 21.5523 9.10665 22 9.65894 22Z" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.6589 22C21.2112 22 21.6589 21.5523 21.6589 21C21.6589 20.4477 21.2112 20 20.6589 20C20.1067 20 19.6589 20.4477 19.6589 21C19.6589 21.5523 20.1067 22 20.6589 22Z" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.65894 1H5.65894L8.33894 14.39C8.43038 14.8504 8.68084 15.264 9.04648 15.5583C9.41212 15.8526 9.86963 16.009 10.3389 16H20.0589C20.5282 16.009 20.9858 15.8526 21.3514 15.5583C21.717 15.264 21.9675 14.8504 22.0589 14.39L23.6589 6H6.65894" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_589:1150">
<rect width="24" height="24" fill="white" transform="translate(0.658936)"/>
</clipPath>
</defs>
</svg>
</a>
<div class="shop-header-container">
<div class="cart-mini-container">
<div class="widget_shopping_cart_content" id="widget_shopping_cart_content">
<p class="woocommerce-mini-cart__empty-message">No products in the cart.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="header-border "></div>
</div>
</div>
<!-- Desktop Header End -->
<!-- Mobile Header Start -->
<div id="mobile-main-header">
<div class="fixed-header fixed-header-new">
<ul class="nav-menu">
<li class="nav-menu__left">
<ul>
<li class="mobile-slideout-open"><a class="menu-toggle-icon sidebar-open" ></a>
<button type="button" class="navbar-toggle" onclick="openNav()" data-toggle="collapse" data-target="#main-menu">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</li>
<li class="menu-logo">
<a href="https://www.onegreenplanet.org">
<div class="site-title ">OneGreenPlanet</div>
</a>
</li>
<li class="nav-menu__right__mobile">
<a href="#" class="toggle-overlay"><img src="https://www.onegreenplanet.org/wp-content/themes/onegreenplanet/img/trending_up-arrow-up.png" alt="trending-icon" /></a>
</li>
</ul>
</li>
</ul>
</div>
<div class="off-canvas-wrapper">
<div class="off-canvas">
<nav>
<div class="slidebar-content">
<div class="menu">
<!-- Slidebar Header -->
<div class="slidebar-header">
<a class="mobile-menu-cart-link" href="https://www.onegreenplanet.org/cart/" >
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_589:1150)">
<path d="M9.65894 22C10.2112 22 10.6589 21.5523 10.6589 21C10.6589 20.4477 10.2112 20 9.65894 20C9.10665 20 8.65894 20.4477 8.65894 21C8.65894 21.5523 9.10665 22 9.65894 22Z" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.6589 22C21.2112 22 21.6589 21.5523 21.6589 21C21.6589 20.4477 21.2112 20 20.6589 20C20.1067 20 19.6589 20.4477 19.6589 21C19.6589 21.5523 20.1067 22 20.6589 22Z" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.65894 1H5.65894L8.33894 14.39C8.43038 14.8504 8.68084 15.264 9.04648 15.5583C9.41212 15.8526 9.86963 16.009 10.3389 16H20.0589C20.5282 16.009 20.9858 15.8526 21.3514 15.5583C21.717 15.264 21.9675 14.8504 22.0589 14.39L23.6589 6H6.65894" stroke="#00B56B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_589:1150">
<rect width="24" height="24" fill="white" transform="translate(0.658936)"/>
</clipPath>
</defs>
</svg>
</a>
<div class="header-border"></div>
<div class="slidebar-header-logo">
<a href="https://www.onegreenplanet.org">
<div class="site-title">OneGreenPlanet</div>
</a>
</div>
<div class="icon-close-icon-NEW mobile-slideout-close" onclick="closeNav();" >
</div>
</div>
<div class="slidebar-search class-for-responsive">
<form data-sf-form-id='1481369634' data-is-rtl='0' data-maintain-state='1' data-results-url='https://www.onegreenplanet.org/search-results/' data-ajax-url='https://www.onegreenplanet.org/?sfid=1481369634&sf_action=get_data&sf_data=results' data-ajax-form-url='https://www.onegreenplanet.org/?sfid=1481369634&sf_action=get_data&sf_data=form' data-display-result-method='shortcode' data-use-history-api='1' data-template-loaded='0' data-lang-code='' data-ajax='1' data-ajax-data-type='json' data-ajax-target='#search-filter-results-1481369634' data-ajax-pagination-type='infinite_scroll' data-show-scroll-loader='1' data-infinite-scroll-container='#main-content' data-infinite-scroll-trigger='-100' data-ajax-links-selector='.pagination a' data-update-ajax-url='1' data-only-results-ajax='1' data-scroll-to-pos='0' data-init-paged='1' data-auto-update='1' action='https://www.onegreenplanet.org/search-results/' method='post' class='searchandfilter' id='search-filter-form-1481369634' autocomplete='off' data-instance-count='1'><ul><li class="sf-field-search" data-sf-field-name="search" data-sf-field-type="search" data-sf-field-input-type=""> <label><input placeholder="Search" name="_sf_search[]" class="sf-input-text" type="text" value="" title=""></label> </li><li class="sf-field-post_type" data-sf-field-name="_sf_post_type" data-sf-field-type="post_type" data-sf-field-input-type="checkbox"><h4>Search By Post Type</h4> <ul class="">
<li class="sf-level-0 " data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="post" name="_sf_post_type[]" id="sf-input-b4602d09b62c47b6424d9b0c2107f59d"><label class="sf-label-checkbox" for="sf-input-b4602d09b62c47b6424d9b0c2107f59d">Posts</label></li><li class="sf-level-0 " data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="recipe" name="_sf_post_type[]" id="sf-input-a43a0242d535ada79ee3879ff76cd2ed"><label class="sf-label-checkbox" for="sf-input-a43a0242d535ada79ee3879ff76cd2ed">Recipes</label></li><li class="sf-level-0 " data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="video" name="_sf_post_type[]" id="sf-input-897b8b92772b3224d35ba043098912d5"><label class="sf-label-checkbox" for="sf-input-897b8b92772b3224d35ba043098912d5">Videos</label></li> </ul>
</li><li class="sf-field-category" data-sf-field-name="_sft_category" data-sf-field-type="category" data-sf-field-input-type="checkbox"><h4>Search By Post Category</h4> <ul data-operator="and" class="">
<li class="sf-level-0 sf-item-10893" data-sf-count="33" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-diet-allergies" name="_sft_category[]" id="sf-input-5a716be0c7e50a1f8d2b2168ab4fc86c"><label class="sf-label-checkbox" for="sf-input-5a716be0c7e50a1f8d2b2168ab4fc86c">Allergies</label></li><li class="sf-level-0 sf-item-11008" data-sf-count="5115" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="animals" name="_sft_category[]" id="sf-input-3ff9614af0ef6c594d217ebf89aa661c"><label class="sf-label-checkbox" for="sf-input-3ff9614af0ef6c594d217ebf89aa661c">Animals</label></li><li class="sf-level-0 sf-item-10891" data-sf-count="108" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-autoimmune-health" name="_sft_category[]" id="sf-input-cc1dbf9b68e0ca616af83d9b728b8986"><label class="sf-label-checkbox" for="sf-input-cc1dbf9b68e0ca616af83d9b728b8986">Autoimmune Health</label></li><li class="sf-level-0 sf-item-9689" data-sf-count="49" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="baking-guide" name="_sft_category[]" id="sf-input-93a15c83abe0f68054adde5e3a2a9394"><label class="sf-label-checkbox" for="sf-input-93a15c83abe0f68054adde5e3a2a9394">Baking</label></li><li class="sf-level-0 sf-item-9687" data-sf-count="71" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="budget-friendly-guide" name="_sft_category[]" id="sf-input-38d961998c3fa943bd4e4220c865b390"><label class="sf-label-checkbox" for="sf-input-38d961998c3fa943bd4e4220c865b390">Budget-Friendly</label></li><li class="sf-level-0 sf-item-9679" data-sf-count="31" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="burger-guide" name="_sft_category[]" id="sf-input-e48b9ec6ed1e76d11cf0923875d42351"><label class="sf-label-checkbox" for="sf-input-e48b9ec6ed1e76d11cf0923875d42351">Burger</label></li><li class="sf-level-0 sf-item-2723" data-sf-count="23308" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="news" name="_sft_category[]" id="sf-input-dcaf678f9f5886e8292cd2e3d5b240c5"><label class="sf-label-checkbox" for="sf-input-dcaf678f9f5886e8292cd2e3d5b240c5">Buzz</label></li><li class="sf-level-0 sf-item-9681" data-sf-count="19" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="cheese-guide" name="_sft_category[]" id="sf-input-5af53f30a7fc9ba467b8b19827ed00c4"><label class="sf-label-checkbox" for="sf-input-5af53f30a7fc9ba467b8b19827ed00c4">Cheese</label></li><li class="sf-level-0 sf-item-9287" data-sf-count="4" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="collection" name="_sft_category[]" id="sf-input-03dd566ada3958f20c739a672e082e6d"><label class="sf-label-checkbox" for="sf-input-03dd566ada3958f20c739a672e082e6d">Collections</label></li><li class="sf-level-0 sf-item-9310" data-sf-count="1" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="contest-winner" name="_sft_category[]" id="sf-input-a4bc44f1867fb1d01f34ac3e554a5c52"><label class="sf-label-checkbox" for="sf-input-a4bc44f1867fb1d01f34ac3e554a5c52">Contest Winner</label></li><li class="sf-level-0 sf-item-9682" data-sf-count="10" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="dairy-guide" name="_sft_category[]" id="sf-input-f850be18e62dacaa94a9b35d6c6417cc"><label class="sf-label-checkbox" for="sf-input-f850be18e62dacaa94a9b35d6c6417cc">Dairy</label></li><li class="sf-level-0 sf-item-8519" data-sf-count="5872" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="environment" name="_sft_category[]" id="sf-input-9d090d7202fb311e2cfd3c1a0a8a38a8"><label class="sf-label-checkbox" for="sf-input-9d090d7202fb311e2cfd3c1a0a8a38a8">Earth</label></li><li class="sf-level-0 sf-item-9704" data-sf-count="119" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="eating-out-guide" name="_sft_category[]" id="sf-input-557b20e46687ffb28f6f717d62b8d205"><label class="sf-label-checkbox" for="sf-input-557b20e46687ffb28f6f717d62b8d205">Eating Out</label></li><li class="sf-level-0 sf-item-9683" data-sf-count="16" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="egg-guide" name="_sft_category[]" id="sf-input-d24afaafc77f8721eba83182388c3200"><label class="sf-label-checkbox" for="sf-input-d24afaafc77f8721eba83182388c3200">Eggs</label></li><li class="sf-level-0 sf-item-9690" data-sf-count="48" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="flavor-guide" name="_sft_category[]" id="sf-input-b0648151405b8e3fa808356708d32076"><label class="sf-label-checkbox" for="sf-input-b0648151405b8e3fa808356708d32076">Flavor</label></li><li class="sf-level-0 sf-item-2690" data-sf-count="9775" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="vegan-food" name="_sft_category[]" id="sf-input-620c04c5bc949d8dae341ebc7a8bb675"><label class="sf-label-checkbox" for="sf-input-620c04c5bc949d8dae341ebc7a8bb675">Food</label></li><li class="sf-level-0 sf-item-9695" data-sf-count="9" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="grow-harvest-guide" name="_sft_category[]" id="sf-input-5b0657157b838e25fd59ab2f317eb8bb"><label class="sf-label-checkbox" for="sf-input-5b0657157b838e25fd59ab2f317eb8bb">Grow / Harvest</label></li><li class="sf-level-0 sf-item-9676" data-sf-count="930" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="guides" name="_sft_category[]" id="sf-input-48d207a1b212d1d2c32c8b4757f9b7dc"><label class="sf-label-checkbox" for="sf-input-48d207a1b212d1d2c32c8b4757f9b7dc">Guides</label></li><li class="sf-level-0 sf-item-10890" data-sf-count="116" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-gut-health" name="_sft_category[]" id="sf-input-1cef4ff90ee9bb1cb538080255a1a899"><label class="sf-label-checkbox" for="sf-input-1cef4ff90ee9bb1cb538080255a1a899">Gut Health</label></li><li class="sf-level-0 sf-item-7247" data-sf-count="2435" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="natural-health" name="_sft_category[]" id="sf-input-41213ea9745722e23a90b9fefa68f873"><label class="sf-label-checkbox" for="sf-input-41213ea9745722e23a90b9fefa68f873">Health</label></li><li class="sf-level-0 sf-item-10892" data-sf-count="51" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-heart-health" name="_sft_category[]" id="sf-input-85c109258c2101a73d750037181a2a33"><label class="sf-label-checkbox" for="sf-input-85c109258c2101a73d750037181a2a33">Heart Health</label></li><li class="sf-level-0 sf-item-9693" data-sf-count="328" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="festival-holiday-guide" name="_sft_category[]" id="sf-input-f78e8b6475059f1effec0ed9be5d5e46"><label class="sf-label-checkbox" for="sf-input-f78e8b6475059f1effec0ed9be5d5e46">Holidays & Festivals</label></li><li class="sf-level-0 sf-item-11007" data-sf-count="1253" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="human-interest" name="_sft_category[]" id="sf-input-b854643ee70fa4d26e22daf989de0e3d"><label class="sf-label-checkbox" for="sf-input-b854643ee70fa4d26e22daf989de0e3d">Human Interest</label></li><li class="sf-level-0 sf-item-9696" data-sf-count="100" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="ingredient-guide" name="_sft_category[]" id="sf-input-a698cf5f76542031468bdd7e54d20da5"><label class="sf-label-checkbox" for="sf-input-a698cf5f76542031468bdd7e54d20da5">Ingredient</label></li><li class="sf-level-0 sf-item-9685" data-sf-count="132" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="international-cooking-guide" name="_sft_category[]" id="sf-input-dff3fad4168e02b3fafdd35772268b88"><label class="sf-label-checkbox" for="sf-input-dff3fad4168e02b3fafdd35772268b88">International</label></li><li class="sf-level-0 sf-item-7" data-sf-count="2270" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="lifestyle" name="_sft_category[]" id="sf-input-517197079940448a7e099b00e06cbf69"><label class="sf-label-checkbox" for="sf-input-517197079940448a7e099b00e06cbf69">Life</label></li><li class="sf-level-0 sf-item-10896" data-sf-count="6" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="wellness-mental-health" name="_sft_category[]" id="sf-input-dfa86ff5407e90866e37e5581d5f4f36"><label class="sf-label-checkbox" for="sf-input-dfa86ff5407e90866e37e5581d5f4f36">Mental Health & Wellness</label></li><li class="sf-level-0 sf-item-2722" data-sf-count="47" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="reviews" name="_sft_category[]" id="sf-input-8ea6e9be6b64bad2f78e41ce8126f06e"><label class="sf-label-checkbox" for="sf-input-8ea6e9be6b64bad2f78e41ce8126f06e">N/A</label></li><li class="sf-level-0 sf-item-8" data-sf-count="15" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="science" name="_sft_category[]" id="sf-input-d86912edbf779036e836d8e1f4bc15cd"><label class="sf-label-checkbox" for="sf-input-d86912edbf779036e836d8e1f4bc15cd">N/A</label></li><li class="sf-level-0 sf-item-1764" data-sf-count="64" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="foodandhealth" name="_sft_category[]" id="sf-input-d8666ed7b0e841ce503a81ec9be8af4d"><label class="sf-label-checkbox" for="sf-input-d8666ed7b0e841ce503a81ec9be8af4d">N/A</label></li><li class="sf-level-0 sf-item-7613" data-sf-count="462" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-recipes" name="_sft_category[]" id="sf-input-6fba1b44d3e0f937863c62feb80a8383"><label class="sf-label-checkbox" for="sf-input-6fba1b44d3e0f937863c62feb80a8383">N/A</label></li><li class="sf-level-0 sf-item-9351" data-sf-count="16" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="recipe-monster" name="_sft_category[]" id="sf-input-258bc72ca2350caebfd377dab52609ae"><label class="sf-label-checkbox" for="sf-input-258bc72ca2350caebfd377dab52609ae">N/A</label></li><li class="sf-level-0 sf-item-2691" data-sf-count="232" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="vegan-health" name="_sft_category[]" id="sf-input-6dfd6dd4da9dfa15dffc71f3ebccb1e0"><label class="sf-label-checkbox" for="sf-input-6dfd6dd4da9dfa15dffc71f3ebccb1e0">N/A</label></li><li class="sf-level-0 sf-item-5" data-sf-count="6739" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="animalsandnature" name="_sft_category[]" id="sf-input-76723aac4df6be3eab819d2b8dd853df"><label class="sf-label-checkbox" for="sf-input-76723aac4df6be3eab819d2b8dd853df">N/A</label></li><li class="sf-level-0 sf-item-9675" data-sf-count="1080" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="news-and-trends" name="_sft_category[]" id="sf-input-1640e6da2844aa079a7512c195fdd1b6"><label class="sf-label-checkbox" for="sf-input-1640e6da2844aa079a7512c195fdd1b6">n/a</label></li><li class="sf-level-0 sf-item-7624" data-sf-count="15" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="pet-food" name="_sft_category[]" id="sf-input-4fcacbdc80f44b4718a3852af68bc0bc"><label class="sf-label-checkbox" for="sf-input-4fcacbdc80f44b4718a3852af68bc0bc">Pet Food</label></li><li class="sf-level-0 sf-item-10894" data-sf-count="85" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-nutrition" name="_sft_category[]" id="sf-input-4f92f6676862624c0b44d00f532357e7"><label class="sf-label-checkbox" for="sf-input-4f92f6676862624c0b44d00f532357e7">Plant-Based Nutrition</label></li><li class="sf-level-0 sf-item-10895" data-sf-count="173" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="plant-based-strength" name="_sft_category[]" id="sf-input-839d9e315a2d57ab5c324abfef9b1c3a"><label class="sf-label-checkbox" for="sf-input-839d9e315a2d57ab5c324abfef9b1c3a">Plant-Based Strength</label></li><li class="sf-level-0 sf-item-9881" data-sf-count="1425" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="viral-recipes-trends" name="_sft_category[]" id="sf-input-d9b6bcc78e6f4bb966b3a81cdb153d98"><label class="sf-label-checkbox" for="sf-input-d9b6bcc78e6f4bb966b3a81cdb153d98">Popular Trends</label></li><li class="sf-level-0 sf-item-9677" data-sf-count="154" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="products" name="_sft_category[]" id="sf-input-407c3d691ad357623c50709861f4f427"><label class="sf-label-checkbox" for="sf-input-407c3d691ad357623c50709861f4f427">Products</label></li><li class="sf-level-0 sf-item-9691" data-sf-count="348" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="protein-guide" name="_sft_category[]" id="sf-input-ac431ac3eeafc648f0320d362310d8fb"><label class="sf-label-checkbox" for="sf-input-ac431ac3eeafc648f0320d362310d8fb">Protein</label></li><li class="sf-level-0 sf-item-9900" data-sf-count="67" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="quick-easy-simple-vegan-recipes" name="_sft_category[]" id="sf-input-6e3556c99e170fdd39450605e184d460"><label class="sf-label-checkbox" for="sf-input-6e3556c99e170fdd39450605e184d460">Quick & Easy</label></li><li class="sf-level-0 sf-item-9678" data-sf-count="5015" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="recipe-features" name="_sft_category[]" id="sf-input-c5487e893e8ef847afd6e5b509e21807"><label class="sf-label-checkbox" for="sf-input-c5487e893e8ef847afd6e5b509e21807">Recipe Roundups</label></li><li class="sf-level-0 sf-item-7750" data-sf-count="17878" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="vegan-recipe" name="_sft_category[]" id="sf-input-89327f5ac5b9cbb880cbf0be460f1ad6"><label class="sf-label-checkbox" for="sf-input-89327f5ac5b9cbb880cbf0be460f1ad6">Recipes</label></li><li class="sf-level-0 sf-item-9700" data-sf-count="268" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="seasonal-guide" name="_sft_category[]" id="sf-input-c4c04b438da2f4108251d90b5f836b0f"><label class="sf-label-checkbox" for="sf-input-c4c04b438da2f4108251d90b5f836b0f">Seasonal</label></li><li class="sf-level-0 sf-item-9703" data-sf-count="200" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="tips-and-hacks" name="_sft_category[]" id="sf-input-43aec439bfc5d06e1e383c2df0608e53"><label class="sf-label-checkbox" for="sf-input-43aec439bfc5d06e1e383c2df0608e53">Tips & Hacks</label></li><li class="sf-level-0 sf-item-9680" data-sf-count="29" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="tofu-guide" name="_sft_category[]" id="sf-input-d1d00a51633842c725fefd67c6759d08"><label class="sf-label-checkbox" for="sf-input-d1d00a51633842c725fefd67c6759d08">Tofu</label></li><li class="sf-level-0 sf-item-1" data-sf-count="48" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="uncategorized" name="_sft_category[]" id="sf-input-fc643bc3b8a3e8b91d6718695954b662"><label class="sf-label-checkbox" for="sf-input-fc643bc3b8a3e8b91d6718695954b662">Uncategorized</label></li><li class="sf-level-0 sf-item-9684" data-sf-count="33" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="vegetable-cooking-guide" name="_sft_category[]" id="sf-input-50d2ecbaaee65938f56d9d5bb8e7cb80"><label class="sf-label-checkbox" for="sf-input-50d2ecbaaee65938f56d9d5bb8e7cb80">Vegetable</label></li><li class="sf-level-0 sf-item-9686" data-sf-count="36" data-sf-depth="0"><input class="sf-input-checkbox" type="checkbox" value="whole-foods-guide" name="_sft_category[]" id="sf-input-b13fe424fb475b0f635bcdc116ceadd2"><label class="sf-label-checkbox" for="sf-input-b13fe424fb475b0f635bcdc116ceadd2">Whole Foods</label></li> </ul>
</li></ul></form> </div>
<ul class="slidebar-menu">
<li class="slidebar-menu-section" style="display:none;">
<a href="#" class="slidebar-menu-title">Trending</a>
<ul class="slidebar-trending">
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/03/Roasted-Veggies-With-Buttery-Garlic-and-Spinach-Salad-1200x800-3.jpg?fit=460%2C306&ssl=1" alt="Roasted Veggies With Buttery Garlic and Spinach Salad"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/natural-health/plant-based-foods-that-promote-healthier-cholesterol-levels/'>10 Plant-Based Foods that Promote Healthier Cholesterol Levels</a> </div> </li>
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2022/09/lactation-green-smoothie-parfait-1.jpg?fit=438%2C350&ssl=1" alt="Green Smoothie Parfait"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/natural-health/healthy-fiber-rich-foods-to-add-to-your-smoothie-to-stay-fuller-longer/'>Healthy, Fiber-Rich Foods to Add to Your Smoothie to Stay Fuller Longer</a> </div> </li>
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2015/07/Collard-Wrap-and-Nori-by-Nature-Sweet-Potato-Wraps.jpg?fit=460%2C306&ssl=1" alt="The Notorious G.R.E.E.N. Collard Wrap"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/natural-health/natural-foods-that-help-cleanse-the-body-of-mucus/'>7 Natural Foods That Help Cleanse the Body of Mucus</a> </div> </li>
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/02/spicy-vegetables-and-chickpea-pasta.jpg?fit=460%2C288&ssl=1" alt="Spicy Vegetables and Chickpea Pasta"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/vegan-food/pasta-how-to-avoid-common-cooking-mistakes/'>Pasta: How to Avoid 8 Common Cooking Mistakes</a> </div> </li>
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2017/07/mylk.jpg?fit=460%2C288&ssl=1" alt=""Milk" Chocolate Bars"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/vegan-food/dairy-free-milk-chocolate-recipes/'>These 15 Creamy, Delectable, and Dairy-Free ‘Milk’ Chocolate Recipes Will Send You to Chocolate Heaven</a> </div> </li>
<li class="slidebar-trending-item item-1">
<div class="image_div"><img src="https://i0.wp.com/www.onegreenplanet.org/wp-content/uploads/2013/11/Raw-Vegan-Lemon-and-Fig-Cheesecake.jpg?fit=460%2C306&ssl=1" alt="10 Cheesecakes You Wont Believe Are Vegan"/></div>
<div class='trending-post-title'><a href='https://www.onegreenplanet.org/vegan-recipe/raw-lemon-and-fig-cheesecake-vegan-gluten-free/'>Raw Lemon and Fig Cheesecake [Vegan, Gluten-Free]</a> </div> </li>
</ul>
</li>
<li class="slidebar-menu-section category-menu">
<div class="no-accordion">Categories</div>
<div class="no-panel">
<div class="menu-new-site-main-menu-container">
<ul id="menu-new-site-main-menu" class="menu">