-
Notifications
You must be signed in to change notification settings - Fork 6
/
data.json
6755 lines (6755 loc) · 579 KB
/
data.json
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
[{
"url": "https://www.bcorporation.net/community/pps",
"website": "www.ppsolutionsllc.com",
"bscore": 81,
"name": "PPS",
"description": "PPS was recently certified as a B Corp.\u00a0 Check back soon for more information!"
}, {
"url": "https://www.bcorporation.net/community/rivanna-natural-designs-inc",
"website": "www.rivannadesigns.com",
"bscore": 110,
"name": "Rivanna Natural Designs, Inc.",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/seeds-printing",
"website": "www.seedsgreenprinting.com",
"bscore": 125,
"name": "Seeds Printing",
"description": "SEEDS is a green printing company comprised of environmentally conscious, creative professionals with years of experience in the fields of printing, design, marketing, writing and editing, and world-class customer service. It offers start-to-finish design consultation and production, for corporate marketing materials, books, catalogs, magazine publications, and small-business collateral material. The company is continually educating itself on the latest technologies of environmental printing and advancements in its fields and seeking ways to improve its Eco-friendly printer services."
}, {
"url": "https://www.bcorporation.net/community/pegas-con-sentido",
"website": "pegasconsentido.cl",
"bscore": 82,
"name": "Pegas con Sentido"
}, {
"url": "https://www.bcorporation.net/community/pure-sweets-llc",
"website": "puresweets.com/",
"bscore": 79,
"name": "Pure Sweets, LLC",
"description": "Pure Sweets was recently Certified as a B Corp! Please check back soon for more information."
}, {
"url": "https://www.bcorporation.net/community/shiftalliance",
"website": "www.shiftalliance.com/",
"bscore": 97,
"name": "shiftalliance",
"description": "shiftalliance's\u2122 mission is to help companies reach their highest potential in the context of the next paradigms in business."
}, {
"url": "https://www.bcorporation.net/community/oaklandish",
"website": "oaklandish.com/",
"bscore": 90,
"name": "Oaklandish",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/one-village-coffee-llc",
"website": "www.onevillagecoffee.com",
"bscore": 92,
"name": "One Village Coffee LLC",
"description": "One Village Coffee is a regional coffee roasting company that supports non-profit organizations around the world. Their goal is to become a coffee roasting company with the reputation of roasting premium, specialty coffee that is fairly traded and affordable to the consumer. They provide premium, specialty coffee by roasting each blend/origin uniquely and frequently in small batches, having inventory in a just-in-time manner in order to provide the freshest coffee to the consumer."
}, {
"url": "https://www.bcorporation.net/community/ogden-publications-inc",
"website": "www.ogdenpubs.com",
"bscore": 98,
"name": "Ogden Publications, Inc.",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/murex-investments",
"website": "www.murexinvests.com",
"bscore": 80,
"name": "Murex Investments"
}, {
"url": "https://www.bcorporation.net/community/milepost-consulting",
"website": "www.milepostconsulting.com",
"bscore": 106,
"name": "Milepost Consulting",
"description": "Milepost Consulting is a management consulting firm dedicated to helping business leaders define, measure and achieve their sustainability goals. Together with your talent we will help make phrases like \"sustainability\" and \"green\" meaningful to your business, help navigate you through the complicated world of climate change and carbon emissions, and communicate with your internal and external stakeholders in a way that will inspire them to action."
}, {
"url": "https://www.bcorporation.net/community/pachamama-coffee-co-op",
"website": "www.pachamama.coop",
"bscore": 111,
"name": "Pachamama Coffee Co-op",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/luscious-garage",
"website": "lusciousgarage.com",
"bscore": 98,
"name": "Luscious Garage"
}, {
"url": "https://www.bcorporation.net/community/new-living",
"website": "www.newliving.net",
"bscore": 106,
"name": "New Living"
}, {
"url": "https://www.bcorporation.net/community/leap-organics",
"website": "www.leaporganics.com",
"bscore": 141,
"name": "LEAP Organics",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/brand-geek",
"website": "www.BrandGeek.net",
"bscore": 81,
"name": "Brand Geek"
}, {
"url": "https://www.bcorporation.net/community/inti-zen",
"website": "www.intizen.com.ar",
"bscore": 82,
"name": "INTI ZEN"
}, {
"url": "https://www.bcorporation.net/community/justneem-llc",
"website": "www.JustNeem.com",
"bscore": 82,
"name": "JustNeem, LLC",
"description": "JustNeem provides high-quality body care products. The Neem tree, native to India, has been used in skin care for centuries and is known for its anti-bacterial, anti-fungal, and anti-viral properties. All of JustNeem's soaps, bath salts, and shaving soaps are made with the finest cosmetic grade raw materials and contain Neem and other natural ingredients that help sustain and help heal the skin. All products are handmade in small batches and wrapped and labeled individually."
}, {
"url": "https://www.bcorporation.net/community/homefree-llc",
"website": "www.homefreetreats.com",
"bscore": 81,
"name": "HomeFree, LLC",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/fireclay-tile",
"website": "www.fireclaytile.com",
"bscore": 80,
"name": "Fireclay Tile",
"description": "Fireclay Tile was founded in 1986 by Paul Burns, its Chief Ceramicist, whose mission was to make beautiful tile for people, the way they want it, when they want it. Today Fireclay is proud to remain a customer focused company whose strength lies just as much in service as in making tile. With a firm belief that there is nothing more sustainable than good design, Fireclay has chosen to devote its work to making durable products that will retain their beauty for years to come. A long standing dedication to reducing waste and maximizing efficiency has led the company to make 100 percent of its product at its Northern California factory where they are able to leverage time honored techniques with modern technology."
}, {
"url": "https://www.bcorporation.net/community/carshare-atlantic",
"website": "www.carsharehfx.ca",
"bscore": 123,
"name": "CarShare Atlantic",
"description": "CarShareHFX is committed to conducting business responsibly and facilitating a quality urban live, work, play lifestyle while reducing the number of cars on the road."
}, {
"url": "https://www.bcorporation.net/community/hives-lives",
"website": "www.hivesforlives.com",
"bscore": 160,
"name": "Hives for Lives",
"description": "Hives for Lives, a honey company, was started six years ago by Molly and Carly when they lost their grandfather to cancer. He was 63 -- they were 9 and 11. The kids raise honeybees and sell the honey at local events, fairs, and retail stores like bakeries, kitchen stores, and grocery stores. The company is entirely kid-run. The VP of Marketing, COO, CFO, and VP of Sales are all under eighteen."
}, {
"url": "https://www.bcorporation.net/community/good-worldwide",
"website": "www.good.is",
"bscore": 81,
"name": "GOOD Worldwide",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/neuw-ventures-sa",
"website": "www.neuw.com",
"bscore": 96,
"name": "NEUW Ventures SA",
"description": "NEUW Ventures is an entrepreneurial environmental impact investing company. It creates and finances new businesses that reduce the human ecological footprint on our planet and accelerate the world\u2019s transition to a sustainable economic system. It"
}, {
"url": "https://www.bcorporation.net/community/gladrags",
"website": "www.gladrags.com",
"bscore": 82,
"name": "GladRags",
"description": "Founded in 1993, GladRags has been a leader in environmentally-friendly products with a message of female empowerment for almost 20 years. GladRags offers a variety of reusable menstrual products, including washable organic cotton pads and natural rubber or medical-grade silicone menstrual cups, available online or in stores nationwide."
}, {
"url": "https://www.bcorporation.net/community/freeflow-digital",
"website": "www.freeflowdigital.com",
"bscore": 90,
"name": "Freeflow Digital"
}, {
"url": "https://www.bcorporation.net/community/concept-green",
"website": "www.conceptgreen.net",
"bscore": 91,
"name": "Concept Green",
"description": "Concept Green is a niche sustainability consulting firm that specializes in the Global Reporting Initiative (GRI) Reporting Framework. The firm provides GRI training, report development and consultation for organizations that want to understand, measure and report their sustainability impacts using the GRI framework. Additional services include strategic sustainability planning, program development and performance measures."
}, {
"url": "https://www.bcorporation.net/community/compassx-strategy",
"website": "www.compassxstrategy.com",
"bscore": 95,
"name": "Compass(x) Strategy"
}, {
"url": "https://www.bcorporation.net/community/city-light-capital",
"website": "citylightcap.com",
"bscore": 108,
"name": "City Light Capital",
"description": "City Light Capital is a venture capital firm that invests in early stage companies which provide not only strong financial returns, but also positive contributions to our world. They invest in early stage, for-profit, sustainable businesses that create solutions in Safety and Security, Education and Media, and Energy and the Environment. Their belief and experience demonstrates to us that these businesses can simultaneously benefit the entrepreneurs, their investors and society at large, delivering improvements to our everyday lives."
}, {
"url": "https://www.bcorporation.net/community/charleston-travel-limited",
"website": "www.charleston.co.ke",
"bscore": 82,
"name": "Charleston Travel Limited"
}, {
"url": "https://www.bcorporation.net/community/catchafire",
"website": "www.catchafire.org",
"bscore": 106,
"name": "Catchafire"
}, {
"url": "https://www.bcorporation.net/community/bristlecone-advisors",
"website": "www.bristleconeadvisors.com",
"bscore": 90,
"name": "Bristlecone Advisors"
}, {
"url": "https://www.bcorporation.net/community/breckinridge-capital-advisors",
"website": "www.breckinridge.com",
"bscore": 98,
"name": "Breckinridge Capital Advisors",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/barbergale",
"website": "barbergale.com",
"bscore": 82,
"name": "BarberGale",
"description": "BarberGale provides sustainable brand development and graphic design solutions for companies that market environmentally-positive products, services and corporate values."
}, {
"url": "https://www.bcorporation.net/community/b-green",
"website": "www.b-green.net",
"bscore": 100,
"name": "B-Green",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/ar-solar",
"website": "www.a-rsolar.com",
"bscore": 92,
"name": "A&R Solar",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/alter-eco",
"website": "www.alterecofoods.com/",
"bscore": 148,
"name": "Alter Eco"
}, {
"url": "https://www.bcorporation.net/community/100km-foods-inc",
"website": "www.100kmfoods.com",
"bscore": 110,
"name": "100km Foods Inc.",
"description": "100km Foods Inc. is a local food distribution company based in Toronto, Ontario, Canada. Their mission\u00a0is to establish a viable, dynamic and sustainable local food economy whereby chefs have access to the freshest and best products that Ontario has to offer, and Ontario producers have a dedicated channel for the sales, marketing and distribution of their products at a fair price."
}, {
"url": "https://www.bcorporation.net/community/ae-works-ltd",
"website": "www.ae-works.com",
"bscore": 89,
"name": "AE Works Ltd",
"description": "AE works exists to create a world where everyone is relevant so that people can aspire to their full potential."
}, {
"url": "https://www.bcorporation.net/community/common-interests",
"website": "www.commoninterestsfinancial.com/our-practice",
"bscore": 100,
"name": "Common Interests",
"description": "Common Interests is an independent boutique Family Wealth Management Practice with a healthy attitude of humility and service. They stand by their Mission Statement: \u201cTo enhance the financial wellness of our clients in a socially responsible manner by bringing to bear years of experience, knowledge and integrity.\u201d Common Interests has no minimum requirements and are absolutely focused on solving their clients\u2019 financial problems\u2026of all kinds. Special areas of focus include Socially Responsible Investing, Portfolio Design and Management and all of the aspects of Comprehensive Financial Planning for individuals and families. Common Interests works with families on a multigenerational basis to help them come together, share their worries and concerns, and seek counsel in creating solutions that will lead to the financial wellbeing that they are looking for."
}, {
"url": "https://www.bcorporation.net/community/pixel-parlor",
"website": "pixelparlor.com",
"bscore": 80,
"name": "Pixel Parlor",
"description": "Pixel Parlor\u2019s mission is to provide unique, sophisticated design solutions while maintaining the utmost attention to detail. The studio strives to provide exemplary customer service and build strong, lasting relationships with their clients, and believe that a process of close collaboration with the organizations and businesses they work with is essential to successful projects. For Pixel Parlor, design is the most successful when there is key stakeholder involvement, transparent discussion, and a common vision. Pixel Parlor takes time to select the best materials and methods to assure that the final design solution is sustainable, elegant, efficient, and affordable."
}, {
"url": "https://www.bcorporation.net/community/shree-kamdhenu-electronics-pvt-ltd",
"website": "akashganga.in/",
"bscore": 105,
"name": "Shree Kamdhenu Electronics Pvt. Ltd.",
"description": "Since the company\u2019s launch, Shree Kamdhenu Electronics Pvt. Ltd. (having its brand \"Akashganga\") has developed a line of technology-based products, which include milk analyzers, microprocessors and accounting software. They have installed 3,500 systems that automate the collection, testing and payment process at cooperatives and unions. The systems, which have reached approximately 1,000,000 farmers, have been shown to increase the profitability of the cooperatives by 171% within the first year of implementation, and to decrease farmer wait time for milk collection from 45 minutes to 10."
}, {
"url": "https://www.bcorporation.net/community/echale-a-tu-casa",
"website": "www.echale.com.mx/ingles/ingles.html",
"bscore": 168,
"name": "Echale a tu casa",
"description": "Echale a Tu Casa is a social housing production company that delivers affordable homes to communities through the implementation of innovations in construction, technology and finance. Echale a Tu Casa\u2019s model aims to restructure community social networking and cure the flaws inherent in the self-building process through four pillars:"
}, {
"url": "https://www.bcorporation.net/community/cool-energy-inc",
"website": "www.coolenergyinc.com",
"bscore": 91,
"name": "Cool Energy, Inc.",
"description": "The launch of Cool Energy, Inc., in March 2006, was inspired by a passion to create a future in which energy is economically generated from abundant and environmentally sustainable sources. Imagine a system that harvests free wasted heat from engines and industrial processes and converts it into clean electrical power. Next, imagine being able to provide both heat and electricity from a single source. These renewable realities and more are being created today by Cool Energy's SolarHeart\u00ae Engine. It is Cool Energy's committment to a triple bottom line that will save businesses real money, increase energy security, and preserve\u00a0the environment and society from further unnecessary burden. It is the collective personal and professional lifestyles of the Cool Energy team that drives the success of this business."
}, {
"url": "https://www.bcorporation.net/community/ignia-partners-llc",
"website": "www.ignia.com.mx",
"bscore": 94,
"name": "IGNIA Partners LLC",
"description": "IGNIA is a venture capital investment firm that supports the founding and expansion of high growth social enterprises that serve the base of the socio-economic pyramid (BoP) in Latin America."
}, {
"url": "https://www.bcorporation.net/community/iroquois-valley-farms-llc",
"website": "www.iroquoisvalleyfarms.com",
"bscore": 108,
"name": "Iroquois Valley Farms LLC",
"description": "Iroquois Valley Farms, LLC was formed in 2007 as the first private equity company in the United States to connect investors directly with local and organic farmland transitioned by local family farmers. Offering a unique opportunity to benefit from the growing business of producing healthy and nutritious foods, the Company currently owns 16 farms totaling 2,051 acres in 5 states (IL"
}, {
"url": "https://www.bcorporation.net/community/equilibrium-capital-group",
"website": "www.eq-cap.com/",
"bscore": 114,
"name": "Equilibrium Capital Group",
"description": "Equilibrium Capital Group, LLC is focused on funding and building the leading companies for a sustainable future. They work with growth stage companies in the areas of green building, resource management (energy, water, and waste management), and the food shed. In each of these sectors, global sustainability trends are disrupting the industry cost structures, the value chain and the product needs. These conditions create the opportunity for new market leaders to emerge with innovative practices and products. At Equilibrium Capital Group, their goal is to become the leading investment firm at the intersection of conscience and commerce."
}, {
"url": "https://www.bcorporation.net/community/episencial",
"website": "episencial.com",
"bscore": 114,
"name": "Episencial",
"description": "With Episencial, skin care is health care. Episencial combines advanced skin care technology with Actively Healthy\u2122 ingredients including probiotics, neem oil and botanically-sourced essential fatty acids and antioxidants to enhance skin immunity and defend against daily environmental challenges from water, sun and air."
}, {
"url": "https://www.bcorporation.net/community/bttr-ventures",
"website": "www.backtotheroots.com",
"bscore": 84,
"name": "BTTR Ventures",
"description": "Back to the Roots is a sustainable urban mushroom farm growing gourmet oyster mushrooms on 100% recycled coffee grounds. Co-founders Nikhil Arora and Alejandro Velez passed up jobs on Wall Street during their last semester at UC Berkeley to experiment with growing fresh mushrooms from recycled coffee grounds. Every week, Back to the Roots collects thousands of pounds of coffee from area coffee shops, diverting it from the landfill and instead using it to make fresh, local food. To date, Back to the Roots has collected more than 1 million pounds of coffee grounds, helped more than 10,000 kids learn about urban farming and sustainability through the One for One Facebook Campaign, and harvested over 150,000 pounds of fresh food. The company strives to make food personal again by educating consumers about the value of growing their own fresh, natural food."
}, {
"url": "https://www.bcorporation.net/community/worksquare-llc",
"website": "www.worksquare.com",
"bscore": 118,
"name": "WorkSquare LLC"
}, {
"url": "https://www.bcorporation.net/community/lindes",
"website": "www.lindes.mx",
"bscore": 92,
"name": "Lindes",
"description": "The Change We Seek\u00ae"
}, {
"url": "https://www.bcorporation.net/community/voip-supply-llc",
"website": "www.voipsupply.com",
"bscore": 84,
"name": "VoIP Supply, LLC"
}, {
"url": "https://www.bcorporation.net/community/vianova",
"website": "www.thevianovagroup.com",
"bscore": 111,
"name": "VIANOVA",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/varsity-technologies-inc",
"website": "varsitytechnologies.com",
"bscore": 110,
"name": "Varsity Technologies, Inc.",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/urbanspace-property-group",
"website": "www.urbanspace.org",
"bscore": 101,
"name": "Urbanspace Property Group",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/andy-smith-photography",
"website": "andysmithphotography.com",
"bscore": 91,
"name": "Andy Smith Photography",
"description": "Andy Smith Photography provides Fine Art Nature Photography of birds, wildlife, flowers, and scenery available as prints or framed or matted only and as note cards. His photography provides a small window into the vast array of the beauty of our universe, an opportunity to observe and consider, to contemplate and learn from the things and creatures that surround us, a moment of spiritual connection to one another and to that being observed."
}, {
"url": "https://www.bcorporation.net/community/better-way-imports-llc",
"website": "betterwayimports.com",
"bscore": 87,
"name": "Better Way Imports LLC",
"description": "Better Way Imports, a member of the Fair Trade Federation, seeks to partner with organizations that are working to end sex trafficking. Through the import and sale of quality, fair-trade products made by these partner organizations, BWI gives them access to the North American market they would not otherwise have. This enables these organizations to provide marginalized individuals in their communities with the opportunity to earn a living wage, and to provide those people real, meaningful, and permanent employment. It is a dignified way out of the trap of sex trafficking many of them have been rescued from, or could otherwise fall into."
}, {
"url": "https://www.bcorporation.net/community/beyond-green-sustainable-food-partners",
"website": "beyondgreenpartners.com",
"bscore": 93,
"name": "Beyond Green Sustainable Food Partners",
"description": "To organizations seeking value-driven change through foodservice solutions, Beyond Green is a foodservice consulting team specializing in sustainability. They offer customizable and measurable strategies that offset the costs of increasing quality and environmental stewardship across food, waste, energy, water, and community for institutional kitchens. They also run a local foodservice company for the greater Chicagoland community that provides scratch-cooked school lunches made in zero-waste kitchens."
}, {
"url": "https://www.bcorporation.net/community/flipgive",
"website": "flipgive.com",
"bscore": 125,
"name": "FlipGive",
"description": "FlipGive is credited with the invention of give-marketing and the associated technology.\u00a0 Give-Marketing is a type of marketing where a company pledges \u201cto give\u201d to a fundraiser in exchange for the fundraisers promoting and selling on the company\u2019s behalf. The give in most often not tax deductible and takes the form of cash, store credit, or product. Give-marketing is often associated with national retailers and brands who wish to support the grassroots fundraising efforts of their customers and employees. The supported fundraisers usually benefit a school, sports club, campus group, local program, an association or charitable organization."
}, {
"url": "https://www.bcorporation.net/community/ben-jerrys",
"website": "www.benjerry.com",
"bscore": 87,
"name": "Ben & Jerry's",
"description": "Ben & Jerry\u2019s produces a wide variety of super-premium ice cream and ice cream novelties, using high-quality ingredients including milk and cream from family farmers who do not treat their cows with the synthetic hormone rBGH. Ben and Jerry\u2019s products are distributed nationwide and in selected foreign countries in supermarkets, grocery stores, convenience stores, franchise Ben & Jerry\u2019s Scoop Shops, restaurants and other venues."
}, {
"url": "https://www.bcorporation.net/community/benevity-inc",
"website": "benevity.com",
"bscore": 116,
"name": "Benevity, Inc.",
"description": "Benevity is a software company whose platform and products enable companies to build social responsibility and giving back into their businesses to attract, retain and engage customers, employees and partners. Benevity helps companies tap into people's passions to inspire deeper engagement from customers and employees. Using Benevity's software, companies can build more engaging, strategic and choice-driven cause marketing, community investment, workplace giving and other charitable programs that deliver greater ROI. They are a for-profit social enterprise; a hybrid corporation that has a for-profit model but also pursues a strong social mission as part of its overall mandate and vision."
}, {
"url": "https://www.bcorporation.net/community/bbmg",
"website": "bbmg.com",
"bscore": 82,
"name": "BBMG",
"description": "Founded in 2003, New York-based\u00a0BBMG\u00a0is a globally recognized brand innovation firm dedicated to creating disruptive business solutions and delightful brand experiences that help clients drive revenue and positive social impact. By integrating branding with sustainability expertise and innovation strategies,\u00a0BBMG\u00a0helps organizations identify growth opportunities, forge new markets, create new brands and drive real culture change. Recent clients include Adidas, eBay, Eileen Fisher, Johnson & Johnson, L\u2019Or\u00e9al Paris, MillerCoors, PepsiCo and Target. For more background and a copy of the firm\u2019s latest research report, Rethinking Consumption: Consumers and the Future of Sustainability, please visit"
}, {
"url": "https://www.bcorporation.net/community/bamboo-sushi",
"website": "bamboosushi.com",
"bscore": 92,
"name": "Bamboo Sushi",
"description": "In partnership with the world\u2019s leading marine conservation organizations, Bamboo Sushi is proud to be the first certified, sustainable sushi restaurant in the world."
}, {
"url": "https://www.bcorporation.net/community/beartooth-capital",
"website": "beartoothcap.com",
"bscore": 119,
"name": "Beartooth Capital",
"description": "Beartooth Capital is a leading impact investment fund manager whose mission is to generate strong investment returns, real conservation results and community benefits. They partner with leading conservation and community groups to search the ranch market in the western United States for important but undervalued ranches with substantial potential for value creation and conservation benefits."
}, {
"url": "https://www.bcorporation.net/community/baldwin",
"website": "www.baldwinand.com/",
"bscore": 80,
"name": "Baldwin&"
}, {
"url": "https://www.bcorporation.net/community/bay-area-medical-academy",
"website": "www.bamasf.com/",
"bscore": 140,
"name": "Bay Area Medical Academy",
"description": "Bay Area Medical Academy offers job-oriented training in high-growth, high-demand, specialized areas of the health care field and prepares individuals from different socio-economic, cultural and educational backgrounds for successful long-term careers. Students become nationally certified as Medical Assistants, Phlebotomists and EKG Technicians through approved training programs."
}, {
"url": "https://www.bcorporation.net/community/b-line",
"website": "b-linepdx.com",
"bscore": 94,
"name": "B-Line",
"description": "Founded in Portland, Oregon in April of 2009, B-Line specializes in sustainable delivery services to the urban core. Utilizing a fleet of commercial grade \"trike trucks\" with a 600-pound cargo carrying capacity, B-Line partners with businesses large and small to handle their downtown and close-in delivery needs and solve the challenges conventional trucks and vans face in the \"last mile\" of\u00a0a distribution network."
}, {
"url": "https://www.bcorporation.net/community/azavea",
"website": "azavea.com",
"bscore": 110,
"name": "Azavea",
"description": "Azavea is a small, award-winning geospatial analysis (GIS) software development firm specializing in the creation of highly crafted and easy-to-use web and mobile solutions, as well as geospatial analysis services to enhance decision-making processes."
}, {
"url": "https://www.bcorporation.net/community/avant-group-llc",
"website": "avant.jobs",
"bscore": 81,
"name": "AVANT Group LLC",
"description": "The AVANT Group, LLC is a full service staffing company that matches the right candidate, with the right employer, at the right time. AVANT maintains a diverse pool of high quality candidates who want to empower themselves to be on a long term career path. Their pool of prospective employees include but is certainly not limited to: Administrative support in many areas including; legal, accounting, sales, medical, real estate, insurance, etc. General and Skilled laborers including; metal fabrication, warehouse support, carpentry, construction, landscaping, machinist, etc. Management and industry specific positions; realtors, sales personnel, accountants, brokers, etc"
}, {
"url": "https://www.bcorporation.net/community/aunt-bertha-inc",
"website": "auntbertha.com",
"bscore": 108,
"name": "Aunt Bertha, Inc.",
"description": "Aunt Bertha\u2019s mission is to make human service program information more accessible to those in need in order to help more people reach self-sufficiency. Aunt Bertha picks up where Uncle Sam leaves off by making it easy to find food, health, housing and education programs based on need. By organizing the world\u2019s human service program information, people can easily find out which programs they qualify for in a matter of seconds. Aunt Bertha also helps human service organizations administer programs better by offering easy-to-use web-based case management software."
}, {
"url": "https://www.bcorporation.net/community/care2",
"website": "care2.com",
"bscore": 129,
"name": "Care2",
"description": "With more than 12 million members, Care2 is the largest online community of people making a difference in healthy and green living, human rights and animal welfare. Care2 provides powerful tools to make a difference in your life, your community, and the world. They provide the resources for members to get informed about important causes, take small steps towards healthy and green living, and take action to better the world. At Care2, they believe that individual actions can collectively make a difference."
}, {
"url": "https://www.bcorporation.net/community/culinary-collective",
"website": "www.culinarycollective.com",
"bscore": 87,
"name": "Culinary Collective",
"description": "Culinary Collective is an import and distribution company specializing in gourmet cultural foods that embody and promote their native culture and traditions. They work with small family and community companies that take pride in producing all natural foods using methods and recipes passed down through the generations."
}, {
"url": "https://www.bcorporation.net/community/csrhub-llc",
"website": "csrhub.com",
"bscore": 94,
"name": "CSRHub LLC",
"description": "provides access to corporate social responsibility and sustainability ratings and information on nearly 5,000 companies from 135 industries in 65 countries. Managers, researchers and activists use CSRHub to benchmark company performance, learn how stakeholders evaluate company CSR practices and seek ways to change the world."
}, {
"url": "https://www.bcorporation.net/community/co-op-power-northeast-biodiesel",
"website": "cooppower.coop",
"bscore": 150,
"name": "Co-op Power / Northeast Biodiesel",
"description": "Co-op Power is a multi-racial, multi-class movement for a just and sustainable future. As a consumer-owned cooperative with hundreds of members and thousands of supporters, they pool their buying power to access affordable, sustainable, clean energy resources for all. Their Neighbor-to-Neighbor programs combine state-of-the-art technology, expert design, and installation skills, with a lot of volunteer energy to do energy upgrades that reduce energy use, and build up the community at the same time."
}, {
"url": "https://www.bcorporation.net/community/core-capital-management",
"website": "core-capital.net",
"bscore": 114,
"name": "Core Capital Management",
"description": "Core Capital Management (CCM) is an innovative, independent wealth management firm focused on sustainable responsible investment (\"SRI\") management, planning and practices. CCM works with intelligent and conscientious private and institutional clients alike, and was established to deliver high-level personal attention to the complex needs and values of our like-minded clients."
}, {
"url": "https://www.bcorporation.net/community/core-foods",
"website": "corefoods.com",
"bscore": 113,
"name": "CORE Foods",
"description": "CORE Foods makes food of uncompromising quality that benefits our whole planet. To ensure their focus remains on their quality food and providing customers with the best nutritional resources, they commit 100% of net proceeds to charity. They pay living wages to all their employees, cap salaries, and offset all carbon use they cannot otherwise reduce. They believe in a world where businesses support their communities and they live that commitment every day. Unifying enduring nutrition principles from scientific research, athletic experience, and traditional wisdom, they make fresh, portable food that maximizes performance and nurtures lifelong health."
}, {
"url": "https://www.bcorporation.net/community/couchsurfing-international",
"website": "couchsurfing.com",
"bscore": 80,
"name": "Couchsurfing International"
}, {
"url": "https://www.bcorporation.net/community/corporate-knights",
"website": "www.corporateknights.com",
"bscore": 107,
"name": "Corporate Knights"
}, {
"url": "https://www.bcorporation.net/community/community-wealth-partners",
"website": "www.communitywealth.com",
"bscore": 125,
"name": "Community Wealth Partners",
"description": "You see a better world. You won\u2019t rest until your dream is a reality. Neither will Community Wealth Partners.\u00a0 This is what they do: They\u00a0partner with leaders, organizations and networks to address needs in communities at the magnitude those needs exist.\u00a0 It doesn\u2019t matter if you\u2019re a change agent in a nonprofit, foundation, government or corporation. What matters is that you\u2019re committed to working together to push your dream forward."
}, {
"url": "https://www.bcorporation.net/community/communitas-financial-planning",
"website": "communitasfinancial.com",
"bscore": 91,
"name": "Communitas Financial Planning",
"description": "Communitas Financial Planning is a San Francisco-based fee-only firm offering financial planning, socially responsible investment management and retirement plan services. They work nationally with individuals and families, businesses and non-profit organizations to integrate their political and social values with their financial goals."
}, {
"url": "https://www.bcorporation.net/community/context-travel",
"website": "contexttravel.com",
"bscore": 80,
"name": "Context Travel",
"description": "Context Travel organizes scholar-led walking seminars for intellectually curious travelers who want to break the mold of packaged tours and experience the world's great cities in a more substantial way. Context is dedicated to the cultural patrimony of its cities, and organizes its small group walks (the smallest in the industry) in a manner that is beneficial to the traveler and destination alike."
}, {
"url": "https://www.bcorporation.net/community/climatesmart-business-inc",
"website": "climatesmartbusiness.com",
"bscore": 119,
"name": "Climatesmart Business, Inc.",
"description": "Climate Smart is a social enterprise that trains businesses and provides them with software tools to track and reduce their greenhouse gas emissions. By taking a close look at the energy they consume, the waste they produce, how they move goods and people around, Climate Smart\u2019s client businesses often find ways to reduce their environmental impact while cutting costs or improving operational efficiencies."
}, {
"url": "https://www.bcorporation.net/community/the-cleaning-corps",
"website": "cleaningcorps.com",
"bscore": 109,
"name": "The Cleaning Corps",
"description": "The Cleaning Corps is a woman-owned and family-operated total cleaning solutions company offering residential and commercial cleaning services. The Cleaning Corps is proud to be the first carpet cleaning company in the country to be recognized as a Certified B Corporation. By being dedicated to following the best practices for green cleaning, The Cleaning Corps performs services using environmentally-friendly products, adheres to EPA recommendations for industry standards, and practices only safe and legal waste-water disposal."
}, {
"url": "https://www.bcorporation.net/community/comet-skateboards",
"website": "cometskateboards.com",
"bscore": 106,
"name": "Comet Skateboards",
"description": "Comet Skateboards builds high performance skateboards in Ithaca, NY using environmentally and socially responsible materials and practices. Comet presses each board individually using sustainably harvested maple veneer and formaldehyde-free glue. Each board is screen printed by hand using water-based inks and then clear coated with durable, water-based paint."
}, {
"url": "https://www.bcorporation.net/community/cleanfish",
"website": "cleanfish.com",
"bscore": 83,
"name": "CleanFish",
"description": "CleanFish is a company, an aspiration and a movement to promote seafood that\u2019s the best of the season, better every season. They bring together artisan producers \u2014 both fishermen and farmers \u2014 and champion them in the marketplace under traceable, transparent brands."
}, {
"url": "https://www.bcorporation.net/community/cooperative-home-care-associates",
"website": "chcany.org",
"bscore": 154,
"name": "Cooperative Home Care Associates",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/epiphany-farms-enterprise-inc",
"website": "epiphanyfarms.com",
"bscore": 126,
"name": "Epiphany Farms Enterprise Inc.",
"description": "Epiphany Farms Enterprise Inc. (EFE) was incorporated in June 2009 by a group of young, talented and passionate service professionals to establish new sustainable food service systems for the future."
}, {
"url": "https://www.bcorporation.net/community/emprendia",
"website": "www.emprendia.net",
"bscore": 112,
"name": "Emprendia",
"description": "Emprendia is a company focused on business leadership, development and communications driven by sustainable prosperity and by cultural, social and ecosystem regeneration. In the meantime it seeks for solutions responsive to resource scarcity, ecological planetary boundaries and large scale social inequities. In a transition toward green and socially inclusive economies, Emprendia creates community and sustainable public value with its clients, suppliers, competitors and strategic partners."
}, {
"url": "https://www.bcorporation.net/community/comercial-epullen-ltda",
"website": "www.epullen.cl/en",
"bscore": 89,
"name": "Comercial Epullen Ltda.",
"description": "Epullen was recently certified as a B Corp! Please check back soon for updated profile information."
}, {
"url": "https://www.bcorporation.net/community/emory-knoll-farms",
"website": "emoryknollfarms.com",
"bscore": 119,
"name": "Emory Knoll Farms",
"description": "Emory Knoll Farms is the only nursery in the USA that is dedicated solely to the propagation of plants for the green roof industry. Built on a 5th generation family farm, their wholesale nursery has been in operation since 1998, and was incorporated in 2004 by partners Ed Snodgrass and John Shepley. Emory Knoll Farms has supplied plants for more than seven hundred green roof projects in over twenty-five states, the District of Columbia, and Canada, as well as overseas. In October 2010, Emory Knoll Farms became one of the first Benefit Corporations in Maryland under the nation's first Benefit corporation statute. This means they publicly acknowledge their role in providing a public benefit as well as providing value for the stakeholders in the company."
}, {
"url": "https://www.bcorporation.net/community/eleek",
"website": "eleekinc.com",
"bscore": 119,
"name": "Eleek",
"description": "Founded in 2000, Eleek is a sustainable design and manufacturing business specializing in high-style lighting and other decorative building parts. They also offer custom design and manufacturing, as well as lighting restoration and retrofitting services."
}, {
"url": "https://www.bcorporation.net/community/eko-asset-management-partners",
"website": "ekoamp.com",
"bscore": 102,
"name": "EKO Asset Management Partners",
"description": "EKO is a specialized investment firm focused on discovering and monetizing unrealized or unrecognized environmental assets. They do this by matching smart capital with people, projects, and companies that are poised to profit from new and emerging environmental markets (markets for carbon, water, and biodiversity). In doing so, EKO hopes not only to harness the power of capital markets and help allocate resources to their \"highest and best\" ecological use, but also to help preserve ecosystems for future generations. EKO is, in short, a \"merchant bank\" for the world of environmental markets."
}, {
"url": "https://www.bcorporation.net/community/egg",
"website": "eggbranding.com",
"bscore": 90,
"name": "egg",
"description": "egg is a visionary marketing, brand development, and advertising agency for sustainable brands. We specialize in creating emotional connections between the conscious consumer and sustainable brands. Our proprietary research into and understanding of this rapidly-growing cultural movement provides us with the insights needed to create messages that inspire action and brand loyalty."
}, {
"url": "https://www.bcorporation.net/community/galileo-learning",
"website": "galileo-learning.com",
"bscore": 97,
"name": "Galileo Learning",
"description": "Before Stanford grad Glen Tripp established the first Galileo camp in Palo Alto in 2002, he wasn\u2019t hearing much talk in the education world about design thinking, creative problem solving or innovation strategies. Educators were a lot more focused on academic subjects such as math and literacy."
}, {
"url": "https://www.bcorporation.net/community/fmyi",
"website": "www.fmyi.com",
"bscore": 84,
"name": "FMYI",
"description": "FMYI [for my innovation] is a collaboration site where you store and share information securely with your team. It combines a social networking site look and feel with tools to achieve your goals. Stay on the same page \u2014 literally. Create pages to manage projects, track contacts, share files, and more. Join the thousands of teams of all sizes at companies, nonprofits, government agencies, and schools across the globe who rely on FMYI to create a private social network to get work done."
}, {
"url": "https://www.bcorporation.net/community/found-my-animal",
"website": "www.foundmyanimal.com",
"bscore": 91,
"name": "Found My Animal",
"description": "FOUND MY ANIMAL is a unique company that produces U.S. made pet products that celebrate adopted or rescued animals. The high quality, hand-crafted accessories available for animals of all sizes are all made in Brooklyn, NY. The company uses only rugged, all-weather materials and time tested techniques like hand-splicing and whipping of rope to produce their stunning line of accessories. Their designs are not limited to just pets, their brand includes curated accessories for people and the home."
}, {
"url": "https://www.bcorporation.net/community/fledge-llc",
"website": "fledge.co",
"bscore": 120,
"name": "Fledge LLC"
}, {
"url": "https://www.bcorporation.net/community/first-rate-inc",
"website": "firstrate.com",
"bscore": 96,
"name": "First Rate, Inc.",
"description": "Wealth management companies nationwide trust First Rate for superior investment performance measurement technology. Dedicated to providing a unique level of focus, depth and expertise, their solutions optimize all facets of asset management: risk assessment, portfolio analysis, GIPS compliance, investment reporting, and more. The First Rate Performance Suite\u2122 allows investment firms to calculate accurate rates of return, efficiently analyze the results and generate dynamic, client-ready presentations that empower internal resources to deliver improved client service."
}, {
"url": "https://www.bcorporation.net/community/preserve",
"website": "preserveproducts.com",
"bscore": 104,
"name": "Preserve",
"description": "Preserve is the leading sustainable consumer goods company and producer of stylish 100% recycled household products. Preserve turns yogurt cups into toothbrushes and take-out containers into tableware. Through innovations in recycled materials and sustainable design, Preserve has been creating more resourceful ways to make everyday products for the kitchen, table, and bathroom since 1996. The company is powered by the recycling efforts of individuals and companies via its Preserve Gimme 5 program. This program accepts #5 plastics, 98% of which are not normally recycled\u2014such as yogurt cups and other common household containers\u2014 transforming them into new Preserve products. All recycling and manufacturing is done in the USA. All of Preserve products are BPA free and made out of 100% recycled materials. In addition to the flagship toothbrush, Preserve also makes Preserve Kitchen and Food Storage products, Preserve Tableware, Preserve Razor, and Preserve Jr. toothbrushes."
}, {
"url": "https://www.bcorporation.net/community/first-affirmative-financial-network",
"website": "firstaffirmative.com",
"bscore": 125,
"name": "First Affirmative Financial Network",
"description": "First Affirmative creates and manages customized investment portfolios for individual and institutional clients seeking to align investment decision-making with personal values and/or institutional mission. Working through a nationwide network of investment professionals, they help clients invest in companies that contribute to a clean, healthy environment, treat people fairly, embrace equal opportunity, produce safe and useful products, and support efforts to promote a more peaceful world."
}, {
"url": "https://www.bcorporation.net/community/fairware-promotional-products-ltd",
"website": "www.fairware.com",
"bscore": 99,
"name": "Fairware Promotional Products Ltd.",
"description": "Fairware Promotional Products is a Vancouver based promotions agency that specializes in custom branded sustainable products. They specialize in ethically sourced and environmentally responsible promotional products, each supplier is assessed based on the Fairware Supplier Code of Conduct and they do their homework on the environmental and social attributes of their client\u2019s custom imprinted products."
}, {
"url": "https://www.bcorporation.net/community/figs",
"website": "www.wearfigs.com",
"bscore": 103,
"name": "FIGS",
"description": "Launched in 2012, FIGS is revolutionizing the old and stodgy medical apparel industry.\u00a0 FIGS has given the medical \u201cuniform\u201d a huge face lift by using 100% ridiculously soft, performance fabrics that are tailored to perfection."
}, {
"url": "https://www.bcorporation.net/community/feronia-forests-llc",
"website": "www.feroniaforests.com",
"bscore": 90,
"name": "Feronia Forests LLC",
"description": "Feronia's mission is to acquire and to sustainably manage natural hardwood forest properties in the U.S. The company generates revenues from timber harvests, conservation easements, carbon offsets, renewable energy, and products of the forest. As such, Feronia maximizes revenue potential from its forests, and minimizes harm to the trees and the surrounding ecosystem. Feronia's full forestry services thus benefit the environment as well as the communities in which they operate."
}, {
"url": "https://www.bcorporation.net/community/heller-consulting",
"website": "www.teamheller.com",
"bscore": 108,
"name": "Heller Consulting",
"description": "Heller Consulting helps nonprofits streamline their operations and maximize their use of software for fundraising and mission management. The company specializes in software selection, implementation, optimization and training for products from Convio, Salesforce.com and Blackbaud. With offices in San Francisco, Chicago and New York, the Heller Consulting team has helped hundreds of nonprofits nationwide to:"
}, {
"url": "https://www.bcorporation.net/community/healthy-buildings",
"website": "healthybuildings.com",
"bscore": 95,
"name": "Healthy Buildings",
"description": "Healthy Buildings works with building owners and managers to optimize indoor environments, increase operating efficiencies and lower business risks. The result is a more sustainable building and an improved bottom line for their clients. They do this with hands-on inspections of building systems, detailed reporting and world-class communications. Since 1980, Healthy Buildings has been dedicated to meeting the long term environmental and sustainability needs of the commercial real estate industry. With a pragmatic and problem solving approach to business minded sustainability they have grown to become a worldwide leader in their field. They build value into their clients' assets, retaining and attracting tenants and employees, improving productivity, reducing liability and branding them in the marketplace as sustainability leaders. They practice the same philosophy in their own facilities through their in-house sustainability initiative."
}, {
"url": "https://www.bcorporation.net/community/happyfamily",
"website": "www.happybabyfood.com",
"bscore": 89,
"name": "HAPPYFAMILY",
"description": "Launched on Mother\u2019s Day 2006, Happy Family is a leading premium organic food brand delivering optimal nutrition for the entire family. Happy Family, most well-known for its Happy Baby meals and snacks, is the only company to feature a complete line of certified organic nutrition including first cereals, meals, yogurt and fruit treats and allergen-sensitive snacks for babies and children, as well as organic smoothies for older kids, teens and adults."
}, {
"url": "https://www.bcorporation.net/community/hanson-bridgett-llp",
"website": "hansonbridgett.com",
"bscore": 94,
"name": "Hanson Bridgett LLP",
"description": "Hanson Bridgett has been a San Francisco and California mainstay since 1958. They have represented institutions like the Golden Gate Bridge Highway and Transportation District for over three decades. With over 150 attorneys today, they have grown steadily through the years."
}, {
"url": "https://www.bcorporation.net/community/green-retirement-plans-inc",
"website": "www.greenretirementplans.com",
"bscore": 130,
"name": "Green Retirement Plans, Inc.",
"description": "Green Retirement Plans helps businesses, nonprofits and their employees harness the power of their retirement plan assets for good. They see themselves as conduits for the flow of capital from these retirement accounts into sustainable and responsible investments that are directed to rigorously scrutinize socially responsible companies."
}, {
"url": "https://www.bcorporation.net/community/growers-secret",
"website": "growerssecret.com",
"bscore": 80,
"name": "Grower's Secret",
"description": "Grower's Secret created an organic plant growth enhancer. This material commands a plant to grow faster, larger, and guard itself against pests and disease. The company then adds this material to other organic fertilizers, creating products which address every stage of a plant\u2019s life cycle. Grower\u2019s Secret is patented in 157 countries and used by both home gardeners and commercial growers. With the environment top of mind, Grower\u2019s Secret leads the industry with products packaged in 100% post- recycled consumer plastic."
}, {
"url": "https://www.bcorporation.net/community/guayaki-sustainable-rainforest-products",
"website": "guayaki.com",
"bscore": 118,
"name": "Guayaki Sustainable Rainforest Products",
"description": "Guayak\u00ed imports an energizing rainforest beverage called yerba mate including ready-to drink beverages, loose mate and tea bags. Through the sale of its products, Guayak\u00ed sustains and restores 20,000 acres of Interior Atlantic Rainforest, supports various cooperatives and Indigenous communities and demonstrates that money does grow on trees. By harvesting yerba mate, a drink made from the rainforest mate tree in South America, Guayak\u00ed provides the peoples of the rainforest with income as well as the ability to steward their land."
}, {
"url": "https://www.bcorporation.net/community/greentech-capital-advisors",
"website": "greentechcapital.com",
"bscore": 114,
"name": "Greentech Capital Advisors",
"description": "Greentech Capital Advisors is the first and largest global investment banking firm that is dedicated to serving companies that are transforming the world\u2019s energy, industrial and resources infrastructure. They provide financial advisory services, including buy-side and sell- side M&A, restructurings, private placements, and project finance advisory. Their knowledge and experience in the alternative energy sectors and with clean-tech companies allows them to offer the best advice to their clients."
}, {
"url": "https://www.bcorporation.net/community/inspire-commerce",
"website": "inspirecommerce.com",
"bscore": 103,
"name": "Inspire Commerce",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/green-living-enterprises",
"website": "www.GreenLivingEnterprises.ca",
"bscore": 125,
"name": "Green Living Enterprises",
"description": "Over the past decade, Green Living has increased public awareness of environmental issues and inspired personal action through its print publications and"
}, {
"url": "https://www.bcorporation.net/community/ingage-partners-llc",
"website": "ingagepartners.com",
"bscore": 136,
"name": "Ingage Partners, LLC",
"description": "Ingage Partners delivers Information Technology and Management Consulting services to help their clients successfully navigate business and technology change. Ingage leverages their deep experience to provide high quality professional services, including project management, business and systems analysis, application development and organizational change management, to bring customized solutions to each client enabling them to achieve their business goals. They provide their services at competitive rates, collaborate with partners to win business, provide purposeful careers for their consultants and positively impact their charitable partners. Their mission is to be a force of positive change - both in their business relationships and in their community."
}, {
"url": "https://www.bcorporation.net/community/indigenous-designs-corporation",
"website": "indigenousdesigns.com",
"bscore": 134,
"name": "Indigenous Designs Corporation",
"description": "Founded in 1994, INDIGENOUS makes clothing that honors both people and the planet. They are a leader in organic and"
}, {
"url": "https://www.bcorporation.net/community/imprint-capital",
"website": "imprintcap.com",
"bscore": 133,
"name": "Imprint Capital",
"description": "They do not tell their clients what their mission objectives or financial goals should be or prescribe one-size-fits-all solutions. Instead, their approach is grounded in understanding the financial, mission, and organizational context of each client and the importance of these parameters in crafting and executing the mission investment strategy that is right for them."
}, {
"url": "https://www.bcorporation.net/community/inesscents-aromatic-botanicals",
"website": "www.inesscents.com",
"bscore": 82,
"name": "Inesscents Aromatic Botanicals",
"description": "Inesscents Aromatic Botanicals\u2122 is a manufacturer of high quality, all natural and organic body care products. They strive to maintain the therapeutic integrity of their products by using minimal processing and by supporting organic practices. \u00a0They specialize in Fairly Traded Certified Organic and unrefined African Shea Butter and Cocoa Butter, Cold Pressed Organic Body and Massage Oils, Organic Perfume oils and misters, as well as traditional African Black Soaps."
}, {
"url": "https://www.bcorporation.net/community/impakt",
"website": "www.impaktcorp.com",
"bscore": 106,
"name": "Impakt"
}, {
"url": "https://www.bcorporation.net/community/impact-makers-inc",
"website": "impactmakers.com",
"bscore": 164,
"name": "Impact Makers, Inc.",
"description": "Impact Makers is a management and technology consulting company based in Richmond, Virginia. They are a for-profit company that contributes 100% of their net profits to charities. Impact Makers provides services in Management and IT Consulting, Program and Project Management, Digital, Governance, Risk and Compliance, and Healthcare."
}, {
"url": "https://www.bcorporation.net/community/idealist-consulting",
"website": "idealistconsulting.com",
"bscore": 93,
"name": "Idealist Consulting",
"description": "Idealist Consulting is dedicated to providing nonprofits, private sector businesses, and government with advanced technical solutions that help them run more effectively. Idealist Consulting is endorsed by Gartner for high-speed, low-risk Salesforce deployments, and prides themselves on developing solutions that strengthen your mission and provide results."
}, {
"url": "https://www.bcorporation.net/community/ifpeople",
"website": "ifPeople.com",
"bscore": 99,
"name": "ifPeople",
"description": "ifPeople helps organizations that make the world a better place use internet technology to communicate and collaborate. By integrating web software with communication strategy, their solutions enable nonprofits and small to medium-sized businesses manage information, build strong relationships, and foster online collaboration. They make technology accessible, simple, and user-friendly so their clients can easily update website content, keep in touch with contacts, and engage with site visitors."
}, {
"url": "https://www.bcorporation.net/community/love-hummus-co-llc",
"website": "loveandhummus.com",
"bscore": 95,
"name": "Love & Hummus Co., LLC",
"description": "The Change We Seek\u00ae"
}, {
"url": "https://www.bcorporation.net/community/saul-good-gift-co",
"website": "www.itsaulgood.com",
"bscore": 116,
"name": "Saul Good Gift Co",
"description": "Saul Good Gift Co. is more than a"
}, {
"url": "https://www.bcorporation.net/community/lotus-foods",
"website": "www.lotusfoods.com",
"bscore": 96,
"name": "Lotus Foods"
}, {
"url": "https://www.bcorporation.net/community/lovesocial",
"website": "lovesocial.org",
"bscore": 81,
"name": "Lovesocial",
"description": "Lovesocial is on a mission to create human engagement in the online world. The way they see it, all people communicate to convey a message, and they strive to help their clients do this in the most authentic and innovative way possible. However big or small the organization, conglomerate or campaign, for Lovesocial it always starts with this one step: discovering the unshakable (and sometimes intangible) grain of value that everything will fall into place around. People do not need to be sold what is not needed, and the last thing the world needs are campaigns that are not rooted in commitments. By creating initiatives with this process in mind, they help build online communities who want to be there \u2013 that is why they stick around."
}, {
"url": "https://www.bcorporation.net/community/little-duck-organics",
"website": "littleduckorganics.com",
"bscore": 81,
"name": "Little Duck Organics",
"description": "Little Duck Organics is an organic food company with a mission to provide families with fun, healthy snacks & meals for kiddos of all ages. Started by Zak Normandin in 2010, Little Duck Organics launched with the first complete line of non-GMO project verified, organic snacks for kids, containing no added sugar and only 100% fruit. Tiny Fruits is available in four tasty blends: Blueberry & Apple, Strawberry & Mango, Apple & Banana and new for Summer 2012 Pineapple & Mango. Within two short years, the Tiny Fruits line continues increase distribution \u2013 with products available in over 4,000 retailers in the U.S. and Canada."
}, {
"url": "https://www.bcorporation.net/community/linhardt-design",
"website": "linhardtdesign.com",
"bscore": 110,
"name": "Linhardt Design",
"description": "Linhardt Design is the New York-based fine and fashion jewelry house that is revolutionizing the industry with its extra-ordinary designs coupled with socially and environmentally responsible practices. Linhardt merges design sophistication with the highest principles of sustainability by exclusively using recycled precious metals and mine-to-market gemstones. At a time when jewelry companies are outsourcing, Linhardt manufactures locally, creating jobs right in the Diamond District of Manhattan, while bringing supply chain transparency to the industry."
}, {
"url": "https://www.bcorporation.net/community/left-coast-naturals",
"website": "leftcoastnaturals.com",
"bscore": 86,
"name": "Left Coast Naturals",
"description": "Left Coast Naturals is an organic and natural food manufacturer and distributor based in Burnaby, British Columbia. Founded in 1996 by two friends as a natural nut butter company called Skeet & Ike\u2019s, they now manufacture three brands of products under Skeet & Ike\u2019s, Hippie Foods,\u00a0and Left Coast Bulk Foods. The products manufactured include organic roasted nuts, seeds, trail mixes, granola, popcorn, tortilla chips and pre-packed bulk foods. They are one of Canada\u2019s leading organic food distributors managing 30 brands as well as Western Canada\u2019s largest organic bulk food distributor. Left Coast Naturals operates with a triple bottom line philosophy (people, planet and profit) and sees business as having a duty to be a positive impact on society."
}, {
"url": "https://www.bcorporation.net/community/living-forest-communities",
"website": "livingforestcommunities.com",
"bscore": 107,
"name": "Living Forest Communities",
"description": "Living Forest Communities (LFC) is a social enterprise between the for-profit Living Forest Limited Partnership and the registered charity, the Trust for Sustainable Forestry (the Trust). LFC has created a unique community development model that accomplishes two goals: providing a new finance mechanism for large scale forest conservation, and creating a new and sustainable development pattern for residential hamlets built within the forest."
}, {
"url": "https://www.bcorporation.net/community/natural-investments-llc",
"website": "naturalinvestments.com",
"bscore": 139,
"name": "Natural Investments LLC",
"description": "Natural Investments LLC has been exclusively dedicated to socially responsible investing since 1985. They offer comprehensive portfolio management and consulting services nationwide to individuals and families, non-profits, foundations, family offices, and business 401(k) plans using values-based publicly traded and private equity holdings. They literally wrote the book (or books) on socially responsible investing:"
}, {
"url": "https://www.bcorporation.net/community/mal-warwick-donordigital",
"website": "malwarwick.com",
"bscore": 127,
"name": "Mal Warwick | Donordigital",
"description": "Mal Warwick Associates, founded in 1979, is one of the country's premier fundraising consultancies for nonprofit organizations. They help nonprofits and political organizations build long-term, mutually rewarding relationships with individual donors through integrated fundraising and marketing programs. Their focus areas include direct mail and telephone fundraising, legacy marketing, online communications, and major gift programs."
}, {
"url": "https://www.bcorporation.net/community/natural-systems-utilities",
"website": "naturalsystemsutilities.com",
"bscore": 99,
"name": "Natural Systems Utilities",
"description": "Natural Systems Utilities, LLC is an innovative water asset management company that designs, builds, owns, and operates decentralized and distributed water delivery, treatment, and reuse infrastructure. NSU regards water as an essential, long-term environmental and community asset. \u00a0Their systems are designed to preserve the quality and quantity of available freshwater supplies through careful stewardship, effective treatment, and appropriate reuse of treated wastewater and byproducts."
}, {
"url": "https://www.bcorporation.net/community/mugshots-coffeehouse",
"website": "www.mugshotscoffeehouse.com",
"bscore": 88,
"name": "Mugshots Coffeehouse",
"description": "Winner of the SBN's Triple Bottom Line award, Mugshots is a socially conscious caf\u00e9 with an extensive fair-trade drink menu and a local food menu consisting of soups, salads, sandwiches, yoghurt, and granola made with free-range & organic ingredients, bought from local farmers whenever possible."
}, {
"url": "https://www.bcorporation.net/community/montgomery-hansen",
"website": "mh-llp.com",
"bscore": 91,
"name": "Montgomery & Hansen",
"description": "Montgomery & Hansen, LLP is a corporate law firm dedicated to helping emerging growth companies and investors build successful businesses. At the core of their practice is the belief that surrounding an enterprise with an ever-expanding circle of people with complementary talents and skills maximizes its probability of success. They share with their clients an extensive network of relationships with venture capital firms, angel investors, consultants and other professionals who share their passion for building great companies. Together, they help breathe life into the next great idea."
}, {
"url": "https://www.bcorporation.net/community/modo-design-group-inc",
"website": "mododesigngroup.com",
"bscore": 96,
"name": "Modo Design Group Inc.",
"description": "Modo Design Group creates dynamic web sites and web applications for mission-driven organizations and innovative entrepreneurs. They believe in the power of design to transform people and convey ideas. The principles of design-thinking guide their work, as they anticipate and understand the needs of the web user\u2013all with an eye for designing the best possible web product. And, they enjoy doing great work with great people. Their clients work to advance life-changing improvements in green building, international development, and other fields across the country and across the world."
}, {
"url": "https://www.bcorporation.net/community/mobile-accord",
"website": "mobileaccord.com",
"bscore": 101,
"name": "Mobile Accord",
"description": "Mobile Accord, founded in 2005, is the leading enterprise mobile platform provider dedicated to driving social change through the mobile phone. Mobile Accord works on mobile-social initiatives to change the world for the better."
}, {
"url": "https://www.bcorporation.net/community/one-world-play-project",
"website": "www.oneworldplayproject.com",
"bscore": 104,
"name": "One World Play Project",
"description": "makes, sells and distributes products and services to enable play around the world, especially for those living in the harshest environments where play is nearly non-existent. The company is a"
}, {
"url": "https://www.bcorporation.net/community/opticos-design-inc",
"website": "opticosdesign.com",
"bscore": 90,
"name": "Opticos Design, Inc.",
"description": "Opticos Design, Inc. is an urban design and architecture firm that specializes in the creation of vibrant, sustainable communities, comfortable pedestrian environments, and well-crafted buildings that will all withstand the test of time and reinforce the unique, local character of a place."
}, {
"url": "https://www.bcorporation.net/community/oneseventeen-media-inc",
"website": "oneseventeenmedia.com",
"bscore": 115,
"name": "OneSeventeen Media, Inc.",
"description": "Proud to be Texas\u2019 first B Corp, OneSeventeen Media, Inc. uses the power of social media tools to help today\u2019s tech savvy kids navigate their growing up years in a respectful, responsible and confident way."
}, {
"url": "https://www.bcorporation.net/community/oneroof-inc",
"website": "oneroofcompany.com",
"bscore": 119,
"name": "OneRoof, Inc.",
"description": "OneRoof, Inc. is a Berkeley California-based social enterprise company with extensive prior experience in delivering IT-enabled communications (e.g. Internet access, computer literacy, job skills, transportation ticketing and insurance services) to rural communities in India and Mexico."
}, {
"url": "https://www.bcorporation.net/community/on-belay-business-advisors-inc",
"website": "youronbelay.com",
"bscore": 90,
"name": "On Belay Business Advisors Inc.",
"description": "On Belay Business Advisors' primary work involves the mentoring of company leaders who are feeling the pain of transition. By using integrative general management techniques they work with entrepreneurs to combine synergies from all aspects of the company including marketing/branding, people management, finance, operations and strategic commitment to social responsibility. On Belay's Business Support Program is an ongoing, retainer-based program generally ranging from 16-40 hours per month. It offers clients comprehensive general management and organizational development. Clients will receive expert support, assisting their company or non-profit in every aspect of business discipline."
}, {
"url": "https://www.bcorporation.net/community/oliver-russell-associates-llc",
"website": "oliverrussell.com",
"bscore": 89,
"name": "Oliver Russell & Associates, LLC",
"description": "Oliver Russell helps change makers connect with purpose-driven consumers."
}, {
"url": "https://www.bcorporation.net/community/oliberte-limited",
"website": "oliberte.com",
"bscore": 138,
"name": "Oliberte Limited",
"description": "Olibert\u00e9 is a Canadian premium leather goods company that sources its materials from and manufactures in Africa, creating and maintaining sustainable jobs. Established in 2009 with the intent to tap into the bustling fashion scene with high quality men\u2019s footwear, Olibert\u00e9 strives to prove that doing things differently is worthwhile (and good looking, to boot). Along the way, Olibert\u00e9 is also mindful of the environment: the rubber used for soles is natural and the leather of the bags and footwear is hormone-free and free-range. Shoes that do."
}, {
"url": "https://www.bcorporation.net/community/numi-organic-tea",
"website": "numitea.com",
"bscore": 118,
"name": "Numi Organic Tea",
"description": "Numi Organic Tea blends premium organic teas and herbs with only 100% real ingredients, allowing nature to speak for itself. As a pioneering, quadruple-bottom line company (people, planet, product, profit), Numi sources its teas and ingredients directly from fair labor gardens that pay farmers and workers fair wages that allow their families to thrive. Over half of Numi\u2019s teas are sourced from Fair Trade Certified gardens, which empower tea growers to invest Fair Trade premiums back into their communities. Fair Trade premiums earned on tea gardens have helped procure and develop new roads, cooking stoves, mosquito nets, schools, college scholarships, maternity benefits, onsite medical staff and life insurance for farming families."
}, {
"url": "https://www.bcorporation.net/community/oneenergy-renewables",
"website": "www.oneenergyrenewables.com",
"bscore": 101,
"name": "OneEnergy Renewables",
"description": "OneEnergy Renewables specializes in the development of large-scale clean energy projects \u2013 making renewable energy solutions accessible and cost-effective for its corporate, utility, and institutional clients."
}, {
"url": "https://www.bcorporation.net/community/nrg-insurance",
"website": "nrgseattle.com",
"bscore": 102,
"name": "NRG Insurance",
"description": "NRG is a brokerage insurance firm that connects customers to a multitude of\u00a0insurance providers, delivering risk management options that include custom insurance options. They will genuinely consider your interests and what you care about most to customize a risk management program for you that may or may not include the sale of an insurance solution."
}, {
"url": "https://www.bcorporation.net/community/new-resource-bank",
"website": "newresourcebank.com",
"bscore": 150,
"name": "New Resource Bank",
"description": "New Resource Bank is"
}, {
"url": "https://www.bcorporation.net/community/trillium-asset-management",
"website": "www.trilliuminvest.com",
"bscore": 147,
"name": "Trillium Asset Management",
"description": ""
}, {
"url": "https://www.bcorporation.net/community/sustainable-harvest",
"website": "sustainableharvest.com",
"bscore": 107,
"name": "Sustainable Harvest",
"description": "Sustainable Harvest is an importer of high quality specialty-grade coffees from over 15 countries around the world. They\u00a0pioneered the"
}, {
"url": "https://www.bcorporation.net/community/primitive-world-productions",
"website": "primitiveworldproductions.com",
"bscore": 91,
"name": "Primitive World Productions",
"description": "Primitive World Productions (PWP) is an award winning, full service production company specializing in video for nonprofits and sustainable businesses."
}, {
"url": "https://www.bcorporation.net/community/praemia-group-llc",
"website": "praemiagroup.com",
"bscore": 134,
"name": "Praemia Group LLC",
"description": "Praemia Group\u00ae works with senior executives who have committed themselves and their businesses to significantly shifting the culture, standards and practices in their organizations and industry towards becoming a just, sustainable and profitable example to the world."
}, {
"url": "https://www.bcorporation.net/community/practical-energy-solutions",
"website": "practicalenergy.net",
"bscore": 114,
"name": "Practical Energy Solutions",
"description": "Practical Energy Solutions, established in March of 2006, is a privately owned partnership located in West Chester, Pennsylvania. Paul Spiegel, P.E., LEED AP is the President and Founder of the company and is a licensed engineer, LEED Accredited Professional, adjunct professor of engineering at Temple University, renowned speaker, and a 26 year veteran of the construction industry in the Greater Philadelphia region. Paul has recruited a talented and passionate team to execute the mission of Practical Energy Solutions: to provide common sense solutions for reducing energy consumption and costs. The business operates as an independent consultant for clients so there is no conflict of interest on any recommended efficiency and conservation measures."
}, {
"url": "https://www.bcorporation.net/community/praxis-consulting-group",
"website": "praxiscg.com",
"bscore": 122,
"name": "Praxis Consulting Group",
"description": "Praxis Consulting Group assists employee-owned, not-for-profit, and other socially responsible organizations in developing high-performing, sustainable workplaces that benefit all stakeholders. Their clients benefit from their extensive experience in leadership development, team-building, large-scale change, strategic planning, employee engagement, conflict resolution, and culture-building."
}, {
"url": "https://www.bcorporation.net/community/plum-organics",
"website": "plumorganics.com",
"bscore": 91,
"name": "Plum Organics"
}, {
"url": "https://www.bcorporation.net/community/sencha-naturals",
"website": "senchanaturals.com",
"bscore": 89,
"name": "Sencha Naturals",
"description": "Sencha Naturals was founded by David Kerdoon after an inspiring trek through Asia in 2001. During his journeys throughout the region, he discovered the numerous benefits of green tea, was educated on its cultivation, and learned of the extensive research being conducted on this fragile yet potent plant called Camellia sinensis. He was particularly intrigued by the \u201cSencha\u201d variety of green tea, in which the leaves remain intact and impart a distinctly fresh flavor."
}, {
"url": "https://www.bcorporation.net/community/scs-global-services",
"website": "www.scsglobalservices.com",
"bscore": 90,
"name": "SCS Global Services",
"description": "SCS Global Services is a pioneer and leader in third party certification and validation of environmental, sustainability, stewardship, life-cycle assessment, and food quality and safety claims. Founded in the San Francisco bay area in 1984, its aim is to help companies achieve the highest level of environmental performance and social accountability. SCS evaluates companies for compliance with standards such as the Forest Stewardship Council (FSC), Marine Stewardship Council (MSC), USDA Organic, BIFMA level, Veriflora, Safe Quality Food (SQF), British Retail Consortium (BRC), Verified Carbon Standard (VCS) and many more. Companies trust SCS to audit and certify their accomplishments in greenhouse gas offsets, organic and sustainable agricultural production, food processing and handling, responsible forest management, responsible fisheries management, energy generation, green building, product manufacturing, and supply chain management."
}, {
"url": "https://www.bcorporation.net/community/sechler-cpa-pc",
"website": "www.azcpa.com/",
"bscore": 110,
"name": "Sechler CPA PC",
"description": "Sechler, CPA, PC is a totally virtual accounting firm based in Phoenix, AZ. The entire team works from their homes which are located primarily in AZ but also Maryland, Pennsylvania, and Vancouver. Established over 25 years ago, Sechler, CPA PC serves the tax and consulting needs of approximately 350 local, national and international nonprofit organizations. This firm's expertise is in working with founders and leaders of organizations to develop the initial applications for nonprofit status as well as their annual compliance, troubleshooting, planning and visionary work throughout the year."
}, {
"url": "https://www.bcorporation.net/community/sarona-asset-management-inc",
"website": "saronafund.com",
"bscore": 125,
"name": "Sarona Asset Management Inc",
"description": "Sarona is a private investment firm, deploying growth capital to reach growth-stage companies in high-growth countries across Africa, Asia and Latin America."
}, {
"url": "https://www.bcorporation.net/community/salt-spring-coffee",
"website": "saltspringcoffee.com",
"bscore": 92,
"name": "Salt Spring Coffee",
"description": "Salt Spring Coffee is British Columbia's original organic and Fair Trade coffee company. It was founded in 1996 with a commitment to leadership in sustainable business practices and to buying only organic and Fair Trade coffee beans. 100% organic means no chemical pesticides or herbicides have been used in the growing process. It also means good soil management, making for a healthy planet. The Canadian Certified Organic logo on its products assures you that all organic practices have been followed."
}, {
"url": "https://www.bcorporation.net/community/saberespoder",
"website": "saberespoder.com",
"bscore": 166,
"name": "SABEResPODER",
"description": "SABEResPODER\u2122 (SEP) is a targeted multi-media platform reaching Hispanic immigrants at key transition points in their lives when actively seeking resources to further establish themselves in the U.S. SEP distributes educational video programming and educational booklets in trusted and easily accessible community locations, providing comprehensive and practical educational solutions on topics such as financial literacy, healthcare, healthy living, and education, to assist Spanish-speaking consumers become more informed, confident, and active participants in American society."
}, {
"url": "https://www.bcorporation.net/community/rubicon-bakery",
"website": "rubiconbakery.com",
"bscore": 93,
"name": "Rubicon Bakery",
"description": "Rubicon Bakery was recently certified as a B Corp! Please check back soon for more information."
}, {
"url": "https://www.bcorporation.net/community/route-to-green-spa",
"website": "www.routetogreen.com",
"bscore": 87,
"name": "Route to Green SPA",
"description": "R2G's mission is to make a variety of products and services consistent with the protection of the environment affordable in Chile and Latin America. Efforts are focused on marketing and distributing selective products that are eco-friendly.R2G follows a strict, self-imposed selective code that also meets the standards developed by the most prestigious certification bodies in each of these areas."
}, {
"url": "https://www.bcorporation.net/community/the-restorative-leadership-institute",
"website": "restorative-leadership.org",
"bscore": 110,
"name": "The Restorative Leadership Institute",
"description": "The Restorative Leadership Institute is an educational organization dedicated to empowering leadership that fulfills humanity\u2019s potential for elevating the quality of life on Earth."
}, {
"url": "https://www.bcorporation.net/community/squag-inc",
"website": "squag.com",
"bscore": 108,
"name": "Squag Inc.",
"description": "Squag is an online social platform specifically designed for kids 8-18 anywhere on the autism spectrum. Their mission is to offer a curated and innovative space that promotes mindfulness, self-reflection and original thinking while offering the user a new way to engage with technology that promotes regulation rather than self-stimulatory behavior. They offer a new and exciting way to help parents to connect with their kids, and to help kids safely connect with each other based on common interests and shared experiences."
}, {
"url": "https://www.bcorporation.net/community/spotlight-solar-llc",
"website": "spotlightsolar.com",
"bscore": 84,
"name": "Spotlight Solar, LLC",
"description": "Spotlight Solar makes solar systems that look like sculpture. Their creations are installed on commercial or public property where a lot of people can see them, and become inspired to take their own steps in environmental stewardship. Their products are intended to complement other environmental investments, like rooftop solar systems, which are usually hidden from the public on flat office building roofs."
}, {
"url": "https://www.bcorporation.net/community/sqa-pharmacy-services-llc",
"website": "sqapharmacy.com",
"bscore": 140,
"name": "SQA Pharmacy Services LLC",
"description": "SQA Pharmacy is a \u201cclosed door\u201d institutional pharmacy that provides pharmacy services to community based managed health care facilities. Every day 365 days a year, SQA provides high quality, affordable, and reliable pharmaceutical healthcare to consumers. SQA maintains a constant level of outstanding professionalism and courtesy to its clients. SQA practices a sustainable business model - 75% of the profit distribution from SQA Pharmacy is put into a foundation that awards grants to 501(c) organizations and government entities to help community based health care centers serve the low income population and the under-insured. SQA also services one federally certified 340B local health center."
}, {
"url": "https://www.bcorporation.net/community/southern-energy-management",
"website": "southern-energy.com",
"bscore": 110,
"name": "Southern Energy Management",
"description": "Southern Energy Management is a firm believer in the power of businesses to affect positive change in the world, and they're committed to working toward that goal each and every day. They believe that what you do is important, and also just as important is how you do it. Founded in 2001 by Bob and Maria Kingery, Southern Energy Management employs 85 full-time team members, including nationally certified solar technicians and energy raters, licensed electricians, engineers and plumbers, and other industry professionals."
}, {
"url": "https://www.bcorporation.net/community/springleaf-strategies",
"website": "springleafstrategies.com",
"bscore": 99,
"name": "Springleaf Strategies",
"description": "Springleaf Strategies is a marketing and sustainability consulting firm focused on helping businesses grow through planning and implementation of strategic business initiatives."
}, {
"url": "https://www.bcorporation.net/community/thinkhaus",
"website": "thinkhausdesign.com",
"bscore": 99,
"name": "Thinkhaus",
"description": "Thinkhaus is a socially conscious graphic design company that uses design to foster social change and community advancement by supporting the growth of sustainable businesses. The company offers services related to print design, web-based media, signage and environmental graphics. The company also serves as a think tank that has become a strong advocate for social, community and design education initiatives."
}, {
"url": "https://www.bcorporation.net/community/the-moderns",
"website": "themoderns.com",
"bscore": 104,
"name": "The Moderns",
"description": "In a world where knowledge is the new economy \u2013 where ideas, innovation, and intellectual capital are valued above any physical asset \u2013 how does a company survive? For nearly twenty years, The Moderns has been a thought leader in the realm of creative and intellectual capital and social responsibility. Their guiding business principles, including those of permaculture, reflect a unique multidisciplinary, human-centered approach to branding and marketing. They are solutionists driven by ideas and innovation."
}, {