-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1229 lines (1162 loc) · 72 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Page Title -->
<title>Bluer.org</title>
<!-- Fonts and Material Icons -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700|Material+Icons" rel="stylesheet" type="text/css"/>
<!-- Styles -->
<link href="css/slides.css" rel="stylesheet" type="text/css">
<!-- Custom Styles -->
<link href="css/custom.css" rel="stylesheet" type="text/css">
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="js/plugins.js" type="text/javascript" name="plugins"></script>
<script src="js/slides.js" type="text/javascript" name="main-scripts"></script>
<!-- Custom Scripts -->
<!--script src="js/custom.js" type="text/javascript" name="custom-scripts"></script-->
</head>
<body class="slides animated">
<!-- SVG Library -->
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
<symbol id="logo" viewBox="0 0 106 31"><path d="M12.036,16.832 C12.036,17.840005 11.6820035,18.6799966 10.974,19.352 C10.2659965,20.0240034 9.42000492,20.36 8.436,20.36 C7.93199748,20.36 7.45800222,20.2700009 7.014,20.09 C6.56999778,19.9099991 6.18000168,19.6640016 5.844,19.352 C5.50799832,19.0399984 5.24400096,18.6740021 5.052,18.254 C4.85999904,17.8339979 4.764,17.3720025 4.764,16.868 C4.764,16.3879976 4.85999904,15.9320022 5.052,15.5 C5.24400096,15.0679978 5.50799832,14.6900016 5.844,14.366 C6.18000168,14.0419984 6.56999778,13.784001 7.014,13.592 C7.45800222,13.399999 7.93199748,13.304 8.436,13.304 C9.42000492,13.304 10.2659965,13.6399966 10.974,14.312 C11.6820035,14.9840034 12.036,15.823995 12.036,16.832 Z M35.112,10.964 C35.112,12.4280073 34.8480026,13.7539941 34.32,14.942 C33.7919974,16.1300059 33.0720046,17.1379959 32.16,17.966 C31.2479954,18.7940041 30.192006,19.4359977 28.992,19.892 C27.791994,20.3480023 26.5080068,20.576 25.14,20.576 C23.7959933,20.576 22.5180061,20.3480023 21.306,19.892 C20.0939939,19.4359977 19.0380045,18.7940041 18.138,17.966 C17.2379955,17.1379959 16.5240026,16.1300059 15.996,14.942 C15.4679974,13.7539941 15.204,12.4280073 15.204,10.964 C15.204,9.49999268 15.4679974,8.18000588 15.996,7.004 C16.5240026,5.82799412 17.2379955,4.83200408 18.138,4.016 C19.0380045,3.19999592 20.0939939,2.57600216 21.306,2.144 C22.5180061,1.71199784 23.7959933,1.496 25.14,1.496 C26.5080068,1.496 27.791994,1.71199784 28.992,2.144 C30.192006,2.57600216 31.2479954,3.19999592 32.16,4.016 C33.0720046,4.83200408 33.7919974,5.82799412 34.32,7.004 C34.8480026,8.18000588 35.112,9.49999268 35.112,10.964 Z M29.424,10.964 C29.424,10.3879971 29.328001,9.82400276 29.136,9.272 C28.943999,8.71999724 28.6680018,8.2340021 28.308,7.814 C27.9479982,7.3939979 27.5040026,7.05200132 26.976,6.788 C26.4479974,6.52399868 25.8360035,6.392 25.14,6.392 C24.4439965,6.392 23.8320026,6.52399868 23.304,6.788 C22.7759974,7.05200132 22.3380017,7.3939979 21.99,7.814 C21.6419983,8.2340021 21.3780009,8.71999724 21.198,9.272 C21.0179991,9.82400276 20.928,10.3879971 20.928,10.964 C20.928,11.5400029 21.0179991,12.1039972 21.198,12.656 C21.3780009,13.2080028 21.6479982,13.7059978 22.008,14.15 C22.3680018,14.5940022 22.8119974,14.9479987 23.34,15.212 C23.8680026,15.4760013 24.4799965,15.608 25.176,15.608 C25.8720035,15.608 26.4839974,15.4760013 27.012,15.212 C27.5400026,14.9479987 27.9839982,14.5940022 28.344,14.15 C28.7040018,13.7059978 28.9739991,13.2080028 29.154,12.656 C29.3340009,12.1039972 29.424,11.5400029 29.424,10.964 Z M50.484,6.896 C50.2199987,6.82399964 49.9620013,6.77600012 49.71,6.752 C49.4579987,6.72799988 49.2120012,6.716 48.972,6.716 C48.179996,6.716 47.5140027,6.85999856 46.974,7.148 C46.4339973,7.43600144 46.0020016,7.78399796 45.678,8.192 C45.3539984,8.60000204 45.1200007,9.0439976 44.976,9.524 C44.8319993,10.0040024 44.76,10.4239982 44.76,10.784 L44.76,20 L38.856,20 L38.856,2.072 L44.544,2.072 L44.544,4.664 L44.616,4.664 C45.0720023,3.75199544 45.7199958,3.00800288 46.56,2.432 C47.4000042,1.85599712 48.3719945,1.568 49.476,1.568 C49.7160012,1.568 49.9499989,1.57999988 50.178,1.604 C50.4060011,1.62800012 50.5919993,1.66399976 50.736,1.712 L50.484,6.896 Z M71.472,18.308 C71.472,20.0600088 71.2200025,21.5839935 70.716,22.88 C70.2119975,24.1760065 69.5040046,25.2499957 68.592,26.102 C67.6799954,26.9540043 66.5700065,27.5899979 65.262,28.01 C63.9539935,28.4300021 62.5080079,28.64 60.924,28.64 C59.3399921,28.64 57.7140083,28.4000024 56.046,27.92 C54.3779917,27.4399976 52.9320061,26.7440046 51.708,25.832 L54.66,21.62 C55.5240043,22.3880038 56.4779948,22.9579981 57.522,23.33 C58.5660052,23.7020019 59.591995,23.888 60.6,23.888 C62.3280086,23.888 63.6059959,23.4320046 64.434,22.52 C65.2620041,21.6079954 65.676,20.3960076 65.676,18.884 L65.676,17.804 L65.568,17.804 C65.0159972,18.5240036 64.2720047,19.0999978 63.336,19.532 C62.3999953,19.9640022 61.332006,20.18 60.132,20.18 C58.7639932,20.18 57.5520053,19.9340025 56.496,19.442 C55.4399947,18.9499975 54.5460037,18.2840042 53.814,17.444 C53.0819963,16.6039958 52.5240019,15.6260056 52.14,14.51 C51.7559981,13.3939944 51.564,12.2120062 51.564,10.964 C51.564,9.71599376 51.7559981,8.52800564 52.14,7.4 C52.5240019,6.27199436 53.0819963,5.27600432 53.814,4.412 C54.5460037,3.54799568 55.4399947,2.85800258 56.496,2.342 C57.5520053,1.82599742 58.7519933,1.568 60.096,1.568 C61.2240056,1.568 62.3039948,1.79599772 63.336,2.252 C64.3680052,2.70800228 65.1959969,3.4159952 65.82,4.376 L65.892,4.376 L65.892,2.072 L71.472,2.072 L71.472,18.308 Z M65.856,10.928 C65.856,10.327997 65.754001,9.75200276 65.55,9.2 C65.345999,8.64799724 65.0520019,8.1620021 64.668,7.742 C64.2839981,7.3219979 63.8280026,6.9920012 63.3,6.752 C62.7719974,6.5119988 62.1720034,6.392 61.5,6.392 C60.8279966,6.392 60.2340026,6.5119988 59.718,6.752 C59.2019974,6.9920012 58.7640018,7.31599796 58.404,7.724 C58.0439982,8.13200204 57.768001,8.61199724 57.576,9.164 C57.383999,9.71600276 57.288,10.3039969 57.288,10.928 C57.288,11.528003 57.383999,12.1039972 57.576,12.656 C57.768001,13.2080028 58.0439982,13.6939979 58.404,14.114 C58.7640018,14.5340021 59.2019974,14.8699987 59.718,15.122 C60.2340026,15.3740013 60.8279966,15.5 61.5,15.5 C62.1720034,15.5 62.7779973,15.3740013 63.318,15.122 C63.8580027,14.8699987 64.3139981,14.540002 64.686,14.132 C65.0580019,13.723998 65.345999,13.2440028 65.55,12.692 C65.754001,12.1399972 65.856,11.5520031 65.856,10.928 Z" id=".org"></path></symbol>
<symbol id="logo-icon" viewBox="0 0 50 41"><title>Brand Name</title><path d="M4,12h42c2.2,0,4,1.8,4,4v21c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4V16C0,13.8,1.8,12,4,12z"/><path opacity="0.6" d="M45.5,9h-41C3.7,9,3,8.3,3,7.5v0C3,6.7,3.7,6,4.5,6h41C46.3,6,47,6.7,47,7.5v0C47,8.3,46.3,9,45.5,9z"/><path opacity="0.4" d="M7.5,0h35C43.3,0,44,0.7,44,1.5v0C44,2.3,43.3,3,42.5,3h-35C6.7,3,6,2.3,6,1.5v0C6,0.7,6.7,0,7.5,0z"/></symbol>
<symbol id="close" viewBox="0 0 30 30"><path d="M15 0c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm5.7 19.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4.3-4.3-4.3 4.3c-.2.2-.4.3-.7.3s-.5-.1-.7-.3c-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.3 4.3 4.3-4.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4.3 4.3 4.3 4.3z"/></symbol>
<symbol id="close-small" viewBox="0 0 11 11"><path d="M6.914 5.5l3.793-3.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.793 3.793-3.793-3.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l3.793 3.793-3.793 3.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.793-3.793 3.793 3.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-3.793-3.793z"/></symbol>
<symbol id="arrow-left" viewBox="0 0 31 72"><path d="M30 72c-.3 0-.6-.1-.8-.4l-29-34c-.3-.4-.3-.9 0-1.3l29-36c.3-.4 1-.5 1.4-.2.4.3.5 1 .2 1.4l-28.5 35.5 28.5 33.4c.4.4.3 1.1-.1 1.4-.2.1-.5.2-.7.2z"/></symbol>
<symbol id="arrow-right" viewBox="0 0 31 72"><path d="M1 0c.3 0 .6.1.8.4l29 34c.3.4.3.9 0 1.3l-29 36c-.3.4-1 .5-1.4.2-.4-.3-.5-1-.2-1.4l28.5-35.5-28.5-33.4c-.4-.4-.3-1.1.1-1.4.2-.1.5-.2.7-.2z"/></symbol>
<symbol id="back" viewBox="0 0 20 20"><path d="M2.3 10.7l5 5c.4.4 1 .4 1.4 0s.4-1 0-1.4l-3.3-3.3h11.6c.6 0 1-.4 1-1s-.4-1-1-1h-11.6l3.3-3.3c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.5-.3.7 0 .2.1.5.3.7z"/></symbol>
<symbol id="menu" viewBox="0 0 22 22"><path d="M1 5h20c.6 0 1-.4 1-1s-.4-1-1-1h-20c-.6 0-1 .4-1 1s.4 1 1 1zm20 5h-20c-.6 0-1 .4-1 1s.4 1 1 1h20c.6 0 1-.4 1-1s-.4-1-1-1zm0 7h-20c-.6 0-1 .4-1 1s.4 1 1 1h20c.6 0 1-.4 1-1s-.4-1-1-1z"/></symbol>
<symbol id="share" viewBox="0 0 22 22"><path d="M21 10c-.6 0-1 .4-1 1v7h-18v-7c0-.6-.4-1-1-1s-1 .4-1 1v7c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-7c0-.6-.4-1-1-1zM5.5 7.5c.3 0 .5-.1.7-.3l3.8-3.8v9.6c0 .6.4 1 1 1s1-.4 1-1v-9.6l3.8 3.8c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-5.5-5.5c-.1-.1-.2-.2-.3-.2-.2-.1-.5-.1-.8 0l-.3.2-5.5 5.5c-.4.4-.4 1 0 1.4.2.2.4.3.7.3z"/></symbol>
<symbol id="arrow-down" viewBox="0 0 24 24"><path d="M12 18c-.2 0-.5-.1-.7-.3l-11-10c-.4-.4-.4-1-.1-1.4.4-.4 1-.4 1.4-.1l10.4 9.4 10.3-9.4c.4-.4 1-.3 1.4.1.4.4.3 1-.1 1.4l-11 10c-.1.2-.4.3-.6.3z"/></symbol>
<symbol id="arrow-up" viewBox="0 0 24 24"><path d="M11.9 5.9c.2 0 .5.1.7.3l11 10c.4.4.4 1 .1 1.4-.4.4-1 .4-1.4.1l-10.4-9.4-10.3 9.4c-.4.4-1 .3-1.4-.1-.4-.4-.3-1 .1-1.4l11-10c.1-.2.4-.3.6-.3z"/></symbol>
<symbol id="arrow-top" viewBox="0 0 24 24"><path d="M20.7 10.3l-8-8c-.4-.4-1-.4-1.4 0l-8 8c-.4.4-.4 1 0 1.4s1 .4 1.4 0l6.3-6.3v15.6c0 .6.4 1 1 1s1-.4 1-1v-15.6l6.3 6.3c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4z"/></symbol>
<symbol id="drop-down" viewBox="0 0 16 16"><polyline stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="1,5 8,12 15,5" fill="none"></polyline></symbol>
<symbol id="play" viewBox="0 0 30 30"><path d="M7 30v-30l22 15z"/></symbol>
<symbol id="login" viewBox="0 0 22 22"><path d="M13 2c0 .6.4 1 1 1h6v16h-6c-.6 0-1 .4-1 1s.4 1 1 1h6c1.1 0 2-.9 2-2v-16c0-1.1-.9-2-2-2h-6c-.6 0-1 .4-1 1zm-6.5 3.5c0 .3.1.5.3.7l3.8 3.8h-9.6c-.6 0-1 .4-1 1s.4 1 1 1h9.6l-3.8 3.8c-.2.2-.3.5-.3.7s.1.5.3.7c.4.4 1 .4 1.4 0l5.5-5.5c.1-.1.2-.2.2-.3.1-.2.1-.5 0-.8l-.2-.3-5.5-5.5c-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7z"/></symbol>
<symbol id="chat" viewBox="0 0 22 22"><path d="M11 22c-.1 0-.3 0-.4-.1-.4-.1-.6-.5-.6-.9v-4h-7.8c-1.2 0-2.2-1-2.2-2.2v-11.6c0-1.2 1-2.2 2.2-2.2h17.7c1.1 0 2.1 1 2.1 2.2v11.7c0 1.2-1 2.2-2.2 2.2h-3.4l-4.7 4.7c-.2.1-.4.2-.7.2zm-8.8-19c-.1 0-.2.1-.2.2v11.7s.1.1.2.1h8.8c.6 0 1 .4 1 1v2.6l3.3-3.3c.2-.2.4-.3.7-.3h3.8c.1 0 .2-.1.2-.2v-11.6c0-.1-.1-.2-.2-.2h-17.6zM5 6h6v2h-6zM5 10h10v2h-10z"/></symbol>
<symbol id="mail" viewBox="0 0 22 22"><path d="M19.8 2h-17.6c-1.2 0-2.2 1-2.2 2.2v13.5c0 1.3 1 2.3 2.2 2.3h17.5c1.2 0 2.2-1 2.2-2.2v-13.6c.1-1.2-.9-2.2-2.1-2.2zm-17.6 2h17.5c.2 0 .3.1.3.2v.3l-9 6.3-9-6.3v-.3c0-.1.1-.2.2-.2zm17.6 14h-17.6c-.1 0-.2-.1-.2-.2v-10.9l8.1 5.7c.3.2.6.3.9.3.3 0 .6-.1.9-.3l8.1-5.7v10.9c0 .1-.1.2-.2.2z"/></symbol>
<symbol id="sound-on" viewBox="0 0 22 22"><path d="M15 15c-.2 0-.4-.1-.6-.2-.4-.3-.5-1-.2-1.4.5-.7.8-1.5.8-2.4s-.3-1.7-.8-2.4c-.3-.4-.2-1.1.2-1.4.4-.3 1.1-.2 1.4.2.8 1 1.2 2.3 1.2 3.6s-.4 2.6-1.2 3.6c-.2.3-.5.4-.8.4zm4 2.3c-.2 0-.5-.1-.7-.2-.4-.4-.5-1-.1-1.4 1.2-1.3 1.8-3 1.8-4.7 0-1.8-.7-3.5-1.9-4.8-.4-.4-.4-1 0-1.4s1-.4 1.4 0c1.6 1.7 2.5 3.9 2.5 6.2 0 2.2-.8 4.3-2.2 6-.2.2-.5.3-.8.3zm-9 2.7c-.2 0-.4-.1-.6-.2l-4.8-3.8h-2.1c-1.4 0-2.5-1.1-2.5-2.5v-5c0-1.4 1.1-2.5 2.5-2.5h2.2l4.7-3.8c.3-.2.7-.3 1.1-.1.3.2.5.5.5.9v16c0 .4-.2.7-.6.9-.1.1-.3.1-.4.1zm-7.5-12c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.5h2.5c.2 0 .4.1.6.2l3.4 2.7v-11.8l-3.4 2.7c-.2.1-.4.2-.6.2h-2.5z"/></symbol>
<symbol id="sound-off" viewBox="0 0 22 22"><path d="M10.434 2.098c-.347-.165-.758-.119-1.058.121l-4.726 3.781h-2.154c-1.376 0-2.496 1.12-2.496 2.496v5.009c0 1.376 1.12 2.495 2.496 2.495h2.153l4.726 3.781c.181.145.402.219.625.219.147 0 .295-.032.433-.099.347-.167.567-.516.567-.901v-16c0-.384-.22-.735-.566-.902zm-1.434 14.821l-3.375-2.7c-.178-.142-.398-.219-.625-.219h-2.504c-.274 0-.496-.222-.496-.495v-5.009c0-.274.222-.496.496-.496h2.504c.227 0 .447-.077.625-.219l3.375-2.7v11.838zM19.414 11l2.293-2.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-2.293 2.293-2.293-2.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l2.293 2.293-2.293 2.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l2.293-2.293 2.293 2.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-2.293-2.293z"/></symbol>
<!-- social -->
<symbol id="apple" viewBox="-1 1 24 24"><path d="M17.6 13.8c0-3 2.5-4.5 2.6-4.6-1.4-2.1-3.6-2.3-4.4-2.4-1.9-.2-3.6 1.1-4.6 1.1-.9 0-2.4-1.1-4-1-2 0-3.9 1.2-5 3-2.1 3.7-.5 9.1 1.5 12.1 1 1.5 2.2 3.1 3.8 3 1.5-.1 2.1-1 3.9-1s2.4 1 4 1 2.7-1.5 3.7-2.9c1.2-1.7 1.6-3.3 1.7-3.4-.1-.1-3.2-1.3-3.2-4.9zm-3.1-9c.8-1 1.4-2.4 1.2-3.8-1.2 0-2.7.8-3.5 1.8-.8.9-1.5 2.3-1.3 3.7 1.4.1 2.8-.7 3.6-1.7z"/></symbol>
<symbol id="dribbble" viewBox="0 0 24 24"><path d="M12 0c-6.7 0-12 5.3-12 12s5.3 12 12 12 12-5.3 12-12-5.3-12-12-12zm7.9 5.7c1.3 1.7 2.1 3.9 2.3 6.1-.4-.1-2.4-.4-4.7-.4-.8 0-1.5 0-2.3.1 0-.1-.1-.3-.3-.5l-.7-1.5c3.7-1.4 5.3-3.4 5.7-3.8zm-7.9-3.8c2.5 0 4.9.9 6.7 2.5-.3.4-1.9 2.3-5.2 3.6-1.6-2.9-3.3-5.3-3.7-5.9.6-.1 1.4-.2 2.2-.2zm-4.4 1c.4.6 2.1 3 3.7 5.8-4.4 1.2-8.2 1.2-9.2 1.2h-.1c.8-3.1 2.9-5.6 5.6-7zm-5.7 9.1v-.3h.3c1.2 0 5.6-.1 10.1-1.5l.8 1.6c-.1 0-.3 0-.4.1-5.1 1.6-7.9 6-8.3 6.7-1.6-1.7-2.5-4.1-2.5-6.6zm10.1 10.1c-2.3 0-4.4-.8-6.1-2.1.3-.5 2.4-4.4 7.9-6.3 1.3 3.6 2 6.7 2.1 7.6-1.2.6-2.6.8-3.9.8zm5.7-1.8c-.1-.8-.7-3.6-2-7.1.7-.1 1.3-.1 2-.1 2.1 0 3.7.4 4.1.5-.3 2.8-1.8 5.2-4.1 6.7z"/></symbol>
<symbol id="facebook" viewBox="0 0 24 24"><path d="M24 1.3v21.3c0 .7-.6 1.3-1.3 1.3h-6.1v-9.3h3.1l.5-3.6h-3.6v-2.2c0-1.1.3-1.8 1.8-1.8h1.9v-3.2c-.3 0-1.5-.1-2.8-.1-2.8 0-4.7 1.7-4.7 4.8v2.7h-3.1v3.6h3.1v9.2h-11.5c-.7 0-1.3-.6-1.3-1.3v-21.4c0-.7.6-1.3 1.3-1.3h21.3c.8 0 1.4.6 1.4 1.3z"/></symbol>
<symbol id="fb-like" viewBox="0 0 20 20"><path d="M0 8v12h5v-12h-5zm2.5 10.8c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8s.8.3.8.8c0 .4-.4.8-.8.8zm3.5-.8h9.5c1.1 0 1.7-1 1.7-1.7 0-.3-.4-1-.4-1 1.4-.3 1.7-1.2 1.7-1.7-.1-.5-.3-.9-.5-1 1-.4 1.5-1.1 1.4-1.9-.1-.8-1-1.5-1-1.5 1-.6.9-1.5.9-1.5-.3-1.3-1.5-1.7-1.7-1.7h-5.6s.3-.5.3-2.4-1.3-3.6-2.6-3.6c0 0-.7.1-1 .3v3.5l-2.7 4.4v9.8z"/></symbol>
<symbol id="googlePlus" viewBox="0 1 24 24"><path d="M7.8 13.5h4.6c-.6 2-2.5 3.4-4.6 3.4-2.7 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9c1.1 0 2.1.3 3 1l1.8-2.4c-1.4-1.1-3-1.6-4.8-1.6-4.3 0-7.9 3.5-7.9 7.9s3.5 7.9 7.9 7.9 7.9-3.5 7.9-7.9v-1.5h-7.9v3zM21.7 11v-2.2h-2v2.2h-2.2v2h2.2v2.2h2v-2.2h2.2v-2z"/></symbol>
<symbol id="instagram" viewBox="0 0 24 24"><path d="M12 2.2c3.2 0 3.6 0 4.8.1 1.2.1 1.8.2 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.4 1.1.4 2.2.1 1.3.1 1.6.1 4.8s0 3.6-.1 4.8c-.1 1.2-.2 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1.1.4-2.2.4-1.3.1-1.6.1-4.8.1s-3.6 0-4.8-.1c-1.2-.1-1.8-.2-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.4-1.1-.4-2.2-.1-1.3-.1-1.6-.1-4.8s0-3.6.1-4.8c0-1.2.2-1.9.3-2.3.2-.6.5-1 .9-1.4.5-.4.9-.6 1.4-.9.4-.1 1.1-.3 2.3-.4h4.8m0-2.2c-3.3 0-3.7 0-4.9.1-1.3 0-2.2.2-3 .5-.7.3-1.4.7-2.1 1.4-.7.7-1.1 1.4-1.4 2.1-.3.8-.5 1.7-.5 3-.1 1.2-.1 1.6-.1 4.9 0 3.3 0 3.7.1 4.9.1 1.3.3 2.1.6 2.9.2.8.6 1.5 1.3 2.2.7.7 1.3 1.1 2.1 1.4.8.3 1.6.5 2.9.6h5s3.7 0 4.9-.1c1.3-.1 2.1-.3 2.9-.6.8-.3 1.5-.7 2.1-1.4.7-.7 1.1-1.3 1.4-2.1.3-.8.5-1.6.6-2.9.1-1.2.1-1.6.1-4.9s0-3.7-.1-4.9c-.1-1.3-.3-2.1-.6-2.9-.2-.8-.6-1.5-1.3-2.2-.7-.7-1.3-1.1-2.1-1.4-.8-.3-1.6-.5-2.9-.6h-5zM12 5.8c-3.4 0-6.2 2.8-6.2 6.2s2.8 6.2 6.2 6.2 6.2-2.8 6.2-6.2-2.8-6.2-6.2-6.2zm0 10.2c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"/><circle class="st0" cx="18.4" cy="5.6" r="1.4"/></symbol>
<symbol id="linkedin" viewBox="0 0 24 24"><path d="M22.2 0h-20.4c-1 0-1.8.8-1.8 1.7v20.7c0 1 .8 1.7 1.8 1.7h20.5c1 0 1.8-.8 1.8-1.7v-20.7c-.1-.9-.9-1.7-1.9-1.7zm-14.9 20.2h-3.6v-10.9h3.6v10.9zm-1.8-12.4c-1.2 0-2-.8-2-1.9 0-1.1.8-1.9 2.1-1.9 1.2 0 2 .8 2 1.9-.1 1.1-.9 1.9-2.1 1.9zm14.8 12.4h-3.6v-5.8c0-1.5-.5-2.5-1.8-2.5-1 0-1.6.7-1.9 1.3-.1.2-.1.6-.1.9v6.1h-3.6v-10.9h3.6v1.5c.5-.7 1.3-1.8 3.3-1.8 2.4 0 4.2 1.6 4.2 4.9v6.3z"/></symbol>
<symbol id="medium" viewBox="0 0 24 24"><path d="M7.601 5.357c-2.305-1.137-4.6-2.294-6.899-3.444-.577-.289-.694-.216-.694.43-.001 5.147.005 10.294-.008 15.441-.001.57.224.911.726 1.158 2.126 1.047 4.242 2.116 6.362 3.176l.326.151c.308.115.494-.016.562-.315.032-.14.02-.283.02-.438l.009-15.482c.002-.337-.091-.523-.404-.677zm15.983-.001c-2.369-1.184-4.74-2.366-7.101-3.565-.368-.187-.559-.114-.769.231-1.431 2.356-2.876 4.703-4.328 7.046-.144.233-.15.4-.004.637 1.605 2.593 3.198 5.193 4.795 7.79l.238.36.107-.138c2.426-3.948 4.848-7.898 7.283-11.841.204-.33.01-.405-.221-.52zm.413 16.185c.001-4.694.001-9.387.001-14.081v-.38l-.076-.023-7.257 11.812.257.156c2.095 1.05 4.191 2.098 6.287 3.146l.219.097c.314.112.489-.032.554-.329.027-.128.015-.265.015-.398zm-15.273-14.526c-.001 2.547.003 5.093-.008 7.64-.001.234.105.321.285.411 2.204 1.1 4.405 2.205 6.608 3.307l.333.12-7.183-11.692-.035.214z"/></symbol>
<symbol id="pinterest" viewBox="0 0 24 24"><path d="M5.9 13.9c1.2-2-.4-2.5-.6-4-1-6.1 7.1-10.2 11.4-6 2.9 2.9 1 12-3.7 11-4.6-.9 2.2-8.1-1.4-9.5-3-1.1-4.6 3.6-3.2 5.9-.8 4-2.5 7.7-1.8 12.7 2.3-1.7 3.1-4.8 3.7-8.1 1.2.7 1.8 1.4 3.3 1.5 5.5.4 8.6-5.4 7.8-10.7-.7-4.7-5.5-7.1-10.6-6.6-4.1.4-8.1 3.7-8.3 8.3-.1 2.8.7 4.9 3.4 5.5z"/></symbol>
<symbol id="stumbleupon" viewBox="0 0 24 24"><path d="M13.3 9.6l1.6.8 2.5-.8v-1.4c0-3-2.4-5.4-5.4-5.4s-5.4 2.4-5.4 5.4v7.5c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2h-4v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-7.5c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3l-.1 1.4zm6.6 2.9v3.2c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2l-2.5.8-1.6-.8v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-3.2h-4.1z"/></symbol>
<symbol id="twitter" viewBox="0 1 24 23"><path d="M21.5 7.6v.6c0 6.6-5 14.1-14 14.1-2.8 0-5.4-.8-7.6-2.2l1.2.1c2.3 0 4.4-.8 6.1-2.1-2.2 0-4-1.5-4.6-3.4.3.1.6.1.9.1.5 0 .9-.1 1.3-.2-2.1-.6-3.8-2.6-3.8-5 .7.4 1.4.6 2.2.6-1.3-.9-2.2-2.4-2.2-4.1 0-.9.2-1.8.7-2.5 2.4 3 6.1 5 10.2 5.2-.1-.4-.1-.7-.1-1.1 0-2.7 2.2-5 4.9-5 1.4 0 2.7.6 3.6 1.6 1-.3 2.1-.7 3-1.3-.4 1.2-1.1 2.1-2.2 2.7 1-.1 1.9-.4 2.8-.8-.6 1.1-1.4 2-2.4 2.7z"/></symbol>
<symbol id="tumblr" viewBox="0 0 23 23"><path d="M12.573 4.94v-4.94h-3.188c-.072.183-.11.4-.11.622-.034.107-.072.184-.072.293-.328 1.829-1.28 3.11-2.892 3.807-.476.218-.914.253-1.39.218v3.987h2.342c.039 5.603.039 8.493.039 8.64v.332c.294 2.449 1.573 3.914 3.843 4.463.914.257 1.901.366 2.892.366 1.279-.036 2.525-.256 3.771-.659v-4.685c-.731.22-1.395.402-1.977.583-1.135.333-2.087.113-2.857-.619-.073-.11-.183-.257-.221-.403-.106-.586-.178-1.206-.178-1.795v-6.222h5.083v-3.988h-5.085z"/></symbol>
<symbol id="xing" viewBox="0 0 24 24"><path d="M3.647 4.74c-.208 0-.384.073-.472.216-.091.148-.077.338.02.531l2.34 4.051v.02l-3.678 6.49c-.096.191-.091.383 0 .531.088.142.244.236.452.236h3.461c.518 0 .767-.349.944-.669l3.737-6.608-2.38-4.15c-.172-.307-.433-.649-.964-.649h-3.46zm14.542-4.74c-.517 0-.741.326-.927.659l-7.702 13.658 4.918 9.023c.172.307.437.659.967.659h3.457c.208 0 .371-.079.459-.221.092-.148.09-.343-.007-.535l-4.88-8.915v-.023l7.664-13.551c.096-.191.098-.386.007-.534-.088-.142-.252-.221-.46-.221h-3.496z"/></symbol>
<symbol id="youtube" viewBox="0 0 24 24"><path d="M23.6 6.3c-.3-1.2-1.4-2.2-2.6-2.3-3-.3-6-.3-9-.3s-6 0-9 .3c-1.2.1-2.3 1.1-2.6 2.3-.4 1.8-.4 3.8-.4 5.7 0 1.9 0 3.9.4 5.7.3 1.2 1.4 2.2 2.6 2.3 3 .3 6 .3 9 .3s6 0 9-.3c1.3-.1 2.3-1.1 2.6-2.4.4-1.7.4-3.7.4-5.6 0-1.9 0-3.9-.4-5.7zm-14.1 9v-6.6l6.5 3.3-6.5 3.3z"/></symbol>
</svg>
<!-- Panel-dropdown -->
<style>
.panel .menu { cursor:pointer;}
.panel .menu.small li {
outline: none;
border-radius: 50px;
padding: 7px 17px;
will-change: background;
-webkit-transition:0.25s background;
transition:0.25s background;
}
.panel .sections .menu.small li:focus,
.panel .sections .menu.small li:hover {
background: rgba(0, 0, 0, 0.15);
}
.dropdown.customDropdown { padding:10px 0;}
.dropdown.customDropdown li:not(.link),
.dropdown.customDropdown li.link a { font-size: 18px; padding: 8px 10px 8px 20px; cursor: pointer; display: block; text-align: left; }
.dropdown.customDropdown li:hover { background:rgba(0, 0, 0, 0.05);}
.slides.whiteSlide .dropdown-icon { stroke: #000;}
.dropdown-icon {
stroke: #fff;
width: 10px !important;
height: 10px !important;
margin-left: 4px;
}
</style>
<!-- Navigation -->
<!-- Panel Top #03 -->
<nav class="panel top forceMobileView">
<div class="sections desktop">
<div class="left"><a href="#" title="Brand Name"><svg style="width:107px;height:31px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg></a></div>
<div class="center">
<ul class="menu uppercase">
<li><a href="#home">Home</a></li>
<li class="dropdownTrigger" data-dropdown-hover="true" data-dropdown-id="dropdown-menu-donations">Donations <svg class="dropdown-icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#drop-down"></use></svg></svg></li>
<li><a href="#radar">Radar</a></li>
<li><a href="#love">We Love</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="right"></div>
</div>
<div class="sections compact hidden">
<div class="left"><a href="#slide1"><svg style="width:107px;height:31px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg></a></div>
<div class="right"><span class="button actionButton sidebarTrigger" data-sidebar-id="1"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#menu"></use></svg></span></div>
</div>
</nav>
<!-- Sidebar -->
<nav class="sidebar blue" data-sidebar-id="1">
<div class="close"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use></svg></div>
<div class="content">
<a href="#" title="Brand Name" class="logo"><svg width="120" height="50"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg></a>
<ul class="mainMenu uppercase small">
<li><a href="#home">Home</a></li>
<li><a href="#">Donations</a></li>
<ul class="subMenu">
<li class="link"><a href="#2015">2015</a></li>
<li class="link"><a href="#2016">2016</a></li>
<li class="link"><a href="#2017">2017</a></li>
<li class="link"><a href="#2018">2018</a></li>
<li class="link"><a href="#2019">2019</a></li>
<li class="link"><a href="#2020">2020</a></li>
<li class="link"><a href="#2021">2021</a></li>
<li class="link"><a href="#2022">2022</a></li>
<li class="link"><a href="#2023">2023</a></li>
<li class="link"><a href="#2024">2024</a></li>
</ul>
<li><a href="#radar">Radar</a></li>
<li><a href="#love">We Love</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<!-- Menu dropdown -->
<div class="dropdown top left center customDropdown" data-dropdown-id="dropdown-menu-donations">
<ul>
<li class="link"><a href="#2015">2015</a></li>
<li class="link"><a href="#2016">2016</a></li>
<li class="link"><a href="#2017">2017</a></li>
<li class="link"><a href="#2018">2018</a></li>
<li class="link"><a href="#2019">2019</a></li>
<li class="link"><a href="#2020">2020</a></li>
<li class="link"><a href="#2021">2021</a></li>
<li class="link"><a href="#2022">2022</a></li>
<li class="link"><a href="#2023">2023</a></li>
<li class="link"><a href="#2024">2024</a></li>
</ul>
</div>
<!-- Slide 1 (#19) -->
<section class="slide whiteSlide" name="home">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<h1 class="ae-1">#bitbybit</h1>
<div class="ae-2"><p class="hero">Notes on our activity within our local and global communities.</p></div>
<a class="button white ae-3 fromCenter" href="#contact">Get in Touch</a><a class="button blue ae-4 fromCenter" href="#2024">Recent Activities</a>
</div>
</div>
</div>
</div>
</section>
<!-- 2015 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2015">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2015</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.facebook.com/nepalearthquakesupport" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">International Medical Corps</h3>
<div class="description-74">Donation to International Medical Corps and directly to Narayan Khanal in Nepal.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.treesforthefuture.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Trees for the Future</h3>
<div class="description-74">Given we used a LOT of cardboard from all the deliveries received in Austin.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://ny.aidswalk.net" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">AIDS Walk</h3>
<div class="description-74">To Lydia Tam in New York who partook in the recent 2015 AIDS Walk.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.gofundme.com/xj84vnc" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Keep Linda at Home</h3>
<div class="description-74">The Linda Davis "Keep Linda at Home" campaign.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.justgiving.com/ColinArnold" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Bloodwise</h3>
<div class="description-74">In memory of Colin Arnold and Alan Parker.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.indiegogo.com/projects/help-abdul-and-reem-start-a-new-life#/story" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Abdul and Reem</h3>
<div class="description-74">Helping Abdul and Reem start a new life.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2016 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2016">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2016</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.eff.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Electronic Frontier Foundation</h3>
<div class="description-74">EFF (inspired by a conversation with Seb Ko). Paid with Bitcoin :)</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://feedinghk.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Feeding HK</h3>
<div class="description-74">Helping Hong Kong's homeless.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.internationalanimalrescue.org/news/baby-orangutan-gito-adoption" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">International Animal Rescue</h3>
<div class="description-74">Adopted an Orangutan named Gito.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://sharethemeal.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">World Food Program's Share the Meal</h3>
<div class="description-74">Donated 3 months of meals.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.saveagorilla.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Mountain Gorilla Conservation Fund</h3>
<div class="description-74">Austin Gorilla Run.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.ohchr.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">UNHRC</h3>
<div class="description-74">Towards helping the Syrian refugees.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2017 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2017">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2017</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.theguardian.com/society/guardian-and-observer-charity-appeal-2017" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The Guardian & Observer Charity Appeal 2017</h3>
<div class="description-74">Helping tackle urgent problems of homelessness and destitution.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.icij.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The International Consortium of Investigative Journalists</h3>
<div class="description-74">For their work with on "Panama Papers"</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.ashtonscharitabletrust.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Ashtons Charitable Trust</h3>
<div class="description-74">To support our friend Bez Baker who is riding from Land's End to John O'Groats</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.democracynow.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Democracy Now</h3>
<div class="description-74">"For true democracy to work, people need easy access to independent, diverse sources of news and information", donated via Bitcoin :)</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.sheldrickwildlifetrust.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The David Sheldrick Wildlife Trust, Nairobi</h3>
<div class="description-74">Fostering of the elephant Naisula, in memory of "Elephant Bill"</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.redcross.org.uk/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">British Red Cross</h3>
<div class="description-74">To help people affected by the Grenfell Tower fire.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2018 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2018">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2018</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.wwf.org.hk/en/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">World Wildlife Foundation Hong Kong</h3>
<div class="description-74">Supporting Divya Samtani and the "Jawsome 4" team.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.woodlandtrust.org.uk/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Woodland Trust</h3>
<div class="description-74">Helping the trust plant trees, protect woods and inspire people to enjoy the nature on their doorstep.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.motherschoice.org/en" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Mother’s Choice</h3>
<div class="description-74">Charity serving the many children without families and pregnant teenagers in Hong Kong.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.runforthewater.com/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Run For The Water</h3>
<div class="description-74">The Gazelle Foundation improves the quality of life for people in Burundi by providing access to clean water.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://secure2.oxfamamerica.org/page/content/saving-lives/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Oxfam</h3>
<div class="description-74">To help those affected by the earthquake / tsunami on the Indonesian island of Sulawesi.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://connect.calfund.org/give/wildfirerelief" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Wildfire Relief Fund</h3>
<div class="description-74">To help the communities affected by the California wildfires.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2019 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2019">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2019</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://guardian.ctdonate.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The Guardian and Observer Charity Appeal</h3>
<div class="description-74">Securing justice for the Windrush generation.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://jjsfoundation.com/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Jason J. Spindler Foundation</h3>
<div class="description-74">In memory of Jason Spindler and everything he stood for.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://oceanconservancy.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Ocean Conservancy</h3>
<div class="description-74">Helping save our oceans and its wildlife!</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://elizabethwarren.com" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Elizabeth Warren</h3>
<div class="description-74">Warren for President</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.aa.com/i18n/customer-service/about-us/let-good-take-flight/our-social-good.jsp" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Miles for Our Social Good</h3>
<div class="description-74">Supports organizations committed to improving stability, health and care for global citizens in need.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.ran.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Rainforest Action Network</h3>
<div class="description-74">To help tackle the Amazon fires via their Protect An Acre program.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2020 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2020">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2020</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://guardian.ctdonate.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The Guardian and Observer Christmas Appeal</h3>
<div class="description-74">Tackling the climate crisis.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.unhcr.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">UNHCR</h3>
<div class="description-74">Helping refugees, forcibly displaced communities and stateless people.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://covid19responsefund.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">COVID-19 Solidarity Response Fund</h3>
<div class="description-74">Supporting the World Health Organization in their vacination research.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://joebiden.com/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Joe Biden & Kamala Harris's Presidential Campaign</h3>
<div class="description-74">Let's end this madness.</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2021 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2021">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2021</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://signal.org/donate" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Signal</h3>
<div class="description-74">The team at Signal is committed to the mission of developing open source privacy technology that protects free expression and enables secure global communication.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.kiva.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Kiva</h3>
<div class="description-74">Supporting a number of communities via the wonderful Kiva.</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://pachama.com/explorer/portfolios/amazon" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Carbon Capture via Pachama</h3>
<div class="description-74">"Nature is powerful. Pachama is leveraging data, artificial intelligence, and automation to protect ecosystems, restore forests, and improve carbon markets."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://eaneseducationfoundation.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Eanes Education Foundation</h3>
<div class="description-74">Supporting the amazing teachers and team via the EEF</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://givingday.columbia.edu/campaigns/sps-diversity-and-inclusion-scholarship" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Columbia (SPS) Diversity and Inclusion Scholarship Fund</h3>
<div class="description-74">The Diversity and Inclusion Scholarship Fund will measure its success by how many doors it can open for students</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2022 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2022">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2022</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.adbusters.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Adbusters - Friend of the Foundation</h3>
<div class="description-74">"a global network of artists, activists, writers, pranksters, students, educators and entrepreneurs who want to advance the new social activist movement of the information age."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.savethechildren.org/us/about-us/media-and-news/2022-press-releases/ukraine-escalation-of-hostilities#:~:text=A%20donation%20to%20Save%20the,safe%20spaces%20and%20cash%20assistance." class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Save the Children’s Ukraine Crisis Relief Fund</h3>
<div class="description-74">"...supports humanitarian programs aiming to reach 3.5 million children and their families with immediate aid..."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://pachama.com/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">5 metric tons of CO₂e captured via Pachama</h3>
<div class="description-74">"Pachama combines machine learning with satellite and airborne observations to measure carbon captured in forests."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.unicefusa.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">UNICEF Pakistan</h3>
<div class="description-74">"UNICEF is on the ground around the world, working to save and protect children."</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2023 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2023">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2023</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.unicefusa.org/stories/devastating-earthquake-hits-syria-and-turkey?form=FUNNPGQXEGQ" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Victims of the earthquake in Syria</h3>
<div class="description-74">"UNICEF is on the ground responding to the needs of thousands of families and children impacted by the devastating earthquake in Syria."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.cancerresearchuk.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Cancer Research UK</h3>
<div class="description-74">"In support of Sheila Bluer & Katy Parker who are running 5K in this year's Race for Life."</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2024 Donations -->
<section class="slide whiteSlide fade kenBurns" name="2024">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<h1 class="ae-1 huge light quicksand" style="line-height:1; letter-spacing:-.09em">2024</h1>
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://explorers.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Explorers Club</h3>
<div class="description-74">Donations via auction</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://eaneseducationfoundation.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Eanes Education Foundation</h3>
<div class="description-74">Donations via auction</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Radar -->
<section class="slide whiteSlide" name="radar">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="ae-1">Radar</h1>
<div class="ae-2"><p></p></div>
</div>
<div class="fix-12-12">
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.economist.com/international/2019/11/04/why-are-so-many-countries-witnessing-mass-protests" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Why are so many countries witnessing mass protests?</h3>
<div class="description-74">"Blame economics, demography, a sense of powerlessness...and social media"</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://time.com/5618797/un-rohingya-bangladesh-refugee-crisis-alarm/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">The Rohingya Crisis</h3>
<div class="description-74">"...progress on alleviating the crisis that led more than 720,000 Rohingya Muslims to flee to neighboring Bangladesh has been slow and if there is no action it will be time to “ring the alarm bell."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.hongkongfp.com/2019/06/16/breaking-hongkongers-march-thousands-extradition-bill-calling-leader-resign/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Hong Kong protesters occupy roads around Gov’t HQ again, as huge anti-extradition law rally escalates</h3>
<div class="description-74">"Hongkongers marched in their thousands on Sunday to call for the withdrawal of a controversial extradition bill..."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://en.wikipedia.org/wiki/Dadaab" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Dadaab Refugee Camp</h3>
<div class="description-74">"Dadaab is a semi-arid town in Garissa County, Kenya. It is the site of a UNHCR base hosting 245,126 refugees in five camps as of April 2017, making it the second-largest such complex in the world."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.unhcr.org/syria-emergency.html" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Syria emergency</h3>
<div class="description-74">"Over 5.4 million people have fled Syria since 2011, seeking safety in Lebanon, Turkey, Jordan and beyond. Millions more are displaced inside Syria and, as war continues, hope is fading fast."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.vox.com/2018/3/13/17110210/national-school-walkout-free-speech-guns" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Students have a right to protest gun violence</h3>
<div class="description-74">"Students at more than 2,500 schools across the United States are planning to walk out of class at 10 am in each time zone Wednesday to protest congressional inaction on gun control."</div>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://en.wikipedia.org/wiki/Azraq_refugee_camp" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Azraq Refugee Camp</h3>
<div class="description-74">"36,883 refugees are currently in the camp, from a total of 41,505 persons of concern registered. 59.02% are children..."</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- We Love -->
<section class="slide whiteSlide" name="love">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="ae-1">We Love</h1>
<div class="ae-2"><p></p></div>
</div>
<div class="fix-12-12">
<ul class="grid grid-74 later equal left margin-top-5">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.footprintnetwork.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Global Footprint Network</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.sierraclub.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Sierra Club</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.earthhour.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Earth Hour</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="http://www.operationturkey.com/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Operation Turkey</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.freepress.net" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Free Press</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://sharethemeal.org" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Share The Meal</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://www.linuxfoundation.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Linux Foundation</h3>
</div>
</div>
</a>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1 ae-3 fromCenter">
<a href="https://futureoflife.org/" class="box-74">
<div class="name-74 equalElement table wide">
<div class="cell">
<h3 class="big">Future of Life Institute</h3>