-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullp.html
1146 lines (971 loc) · 259 KB
/
fullp.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Memory Picture</title>
<link rel="stylesheet" type="text/css" href="css/fullpage.min.css">
<link rel="stylesheet" type="text/css" href="css/fullp.css">
<link rel="manifest" href="manifest.webmanifest" />
<!-- 32×32 -->
<link rel="icon" href="favicon.ico" sizes="any">
<link rel="icon" href="icon.svg" type="image/svg+xml">
<!-- 180×180 -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- <link rel="manifest" href="manifest.webmanifest">-->
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-11XMB64EVV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-11XMB64EVV');
</script>
<body>
<!-- MODAL -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p class="modalp">Navigate left-to-right with the arrow keys to learn more.</p>
<br/>
<p class="modalp">Scroll or key down to see your other options.</p>
<br/>
<p class="modalp">If the text is hard to read, increase/ decrease its size and vizibility with the buttons in the bottom-left corner.</p>
</div>
</div>
<!-- END MODAL -->
<nav role="navigation" id="nav">
<ul>
<a href="index.html"><li id="indent">← Back to Quiz</li></a>
<a href="about.html"><li>About</li></a>
<a href="traditional/index.html"><li>Interactive Version</li></a>
<li> </li>
</ul>
</nav>
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html"><li id="indent">← Back to Quiz</li></a>
<a href="about.html"><li>About</li></a>
<a href="traditional/index.html"><li>Interactive Version</li></a>
<li> </li>
</ul>
</div>
<div id="acc">
<button class='btn' id='color'>
☼
</button>
<button class='btn' id='plus'>
+
</button>
<button class='btn' id='minus'>
-
</button>
</div>
<div id="fullpage">
<section class="section fp-noscroll fp-auto-height-responsive" data-anchor="standard">
<div class="slide">
<h2 id="one">Standard Burial</h2>
<p class='title'>A standard burial usually begins with embalming your body,</p>
<p>Embalming is common practice in the U.S. It is rarely done in other countries. The process involves draining all of the fluids and blood from the body and replacing them with a chemical solution to slow down decomposition. It's important to know that embalming is not required by law, nor does it “sanitize” a body, or make it safer to be around. Dead bodies pose no public health risk. Embalming can be a helpful option if a body needs to be sent to a different country, or a family needs extra time to arrange a funeral. As an alternative, refrigeration can be used to delay the decomposition process.
</p>
</div>
<div class="slide">
<p class="title">...then placing it in a casket,</p>
<p>Most caskets are made from hardwood, metals, and other synthetic materials. While some “sealer,” “protective,” or “gasketed” models may claim to preserve bodies by hermetically sealing them, the lack of air can create an environment that results in accelerated decomposition. No amount of embalming or special caskets can prevent decay; our bodies will eventually decompose as nature intended us to.</p>
</div>
<div class="slide">
<p class="title">which is then laid inside a concrete vault or grave liner,</p>
<p>Before a body is buried in a modern cemetery, a concrete vault or grave liner will be installed in the earth to prevent the ground above from moving, making it easier to maintain the landscape.</p>
</div>
<div class="slide">
<p class="title">and finally buried in a cemetery or graveyard.</p>
<p>Most cemeteries are independently owned businesses that can create their own rules and policies. This may include strict rules about the types of grave markers or tombstones that can be used, what types of items can be left at a grave and for how long, etc. </p>
</div>
<div class="slide">
<svg id="money" viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
<p class='title'>Traditional burial is rather expensive. </p>
<p>In addition to paying for a casket, a vault, and an embalming, there are cemetery costs and frequent hidden fees - making this option frequently cost between $8-12,000.</p>
</div>
<div class="slide">
<svg id="tree" viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
<p class='title'>
This is the least environmentally friendly way to be interred. It's also unsustainable.</p>
<p>Each year,Americans put into the ground:</p>
<ul>
<li>827,060 gallons of embalming fluid</li>
<li>2,700 tons of copper & bronze</li>
<li>30 million board feet of hardwoods</li>
<li>1,600,000 tons of reinforced concrete</li>
<li>14,000 tons of steel</li>
</ul>
</div>
<div class="slide">
<svg id="family" viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
<p class='title'>A primary appeal of traditional burial is the involvement of family and friends of the deceased.</p>
<p>Some feel alienated by the spectacle, especially that of the embalmed body.</p>
<p>Achieving a 'sense of closure' gets mixed results with traditional burial.</p>
</div>
<div class="slide">
<svg id="rel" viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
<p class='title'>Another appeal of traditional burial is its embrace and encouragement from American churches.</p>
<p >Many Christians consider traditional burial their only option - in fact, and the Catholic church required it until 1963.</p>
<p>Yet this is not an option for a Jewish Orthodox or Muslim burial, as embalming is required, and the interment usually takes more than 24 hours.</p>
</div>
<div class="slide">
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
<p class='title'>Traditional burial is ubiquitous across America.</p>
<p> That said, space in cemeteries and graveyards is running out, and the Earth is a finite resource.</p>
</div>
<div class="slide">
<p class="title">Interested? Then plan ahead:</p>
<p>60% of Americans can't name a funeral home they would choose for the unexpected death of a loved one.</p>
<p>Like any interment option, if this is your choice you should make it known and clearly state your intentions. There may be family plots, a shared church cemetery, tradition to follow. There may also be a strong cultural preference. Think about what's most important to you.</p>
</div>
<div class="slide">
<div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">What makes a burial 'standard?'</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Embalming, a hardwood or metal casket, a vault or grave liner, and interment in a cemetery.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">What advantages does a standard burial provide over other methods?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>More than any other method, it allows you to cede complete control to a Funeral Director, who takes the body away, arranges transportation, and has the bereaved choose between casket options.</p>
</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">If I forego standard burial, can I still have a religious service?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Absolutely, but you'll want to plan ahead.
</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">Does standard burial require upkeep of the gravesite?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Yes. This is usually in the form of a maintenance fee. </p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">What about Mausoleums?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Not recommended, unless you're a fan of <a href="https://www.vice.com/en/article/7b775g/how-to-avoid-being-an-exploding-corpse-814" target="_blank">burping coffins</a> or <a href="https://patents.google.com/patent/US5148627A/en" target="_blank">corpse flies</a>.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" data-anchor="cremation">
<div class="slide">
<h2 id="two">Cremation</h2>
<p class='title'>
Cremation uses fire to break down the muscles, tissues and bones of the human body.
</p>
<p>Embalming is not required by law. To ensure that the body is not unnecessarily embalmed be sure to talk to your family, your funeral director, or state your wishes in an advance directive.</p>
<p >Prior to cremation bodies are placed in a container. This can be a cardboard casket decorated by chosen family, a simple, wooden casket, or another casket of your choosing. </p>
</div>
<div class="slide">
<!-- <section class="section fp-noscroll fp-auto-height-responsive"> -->
<p class="title">There are several different options for cremation, depending on the level of involvement a family wants. </p>
<p><span class="bold">Direct Cremation</span> is the least expensive option. Your body will go directly to the crematory where it will be cremated, and the ashes returned to your family. No service or viewing of the body takes place, however, this option can allow families to create a memorial at a later date.</p>
<p><span class="bold">Cremation and Service</span> or a viewing can also be organized prior to cremation depending on your preferences and budget.</p>
<p><span class="bold">Witness Cremations</span> allow you to be present during the cremation. While this can be a wonderful option for people who want more of a hands-on experience, this may not be the best fit for everyone. For the most part crematories are industrial spaces and not designed with family involvement in mind, nor the space to accommodate more than a few people. Witness cremations can also come with additional costs from both the crematory and funeral home. </p>
</div>
<div class="slide">
<!-- </section> -->
<!-- <section class="section fp-noscroll fp-auto-height-responsive"> -->
<p class='title'>The container with the body is placed in a large machine called a retort, which can get up to temperatures of 1,800° fahrenheit. The cremation process takes about three hours. </p>
<p >The high temperatures dissolve the body's muscles and tissues, leaving behind ash and brittle bone fragments. These are carefully collected and then placed into a device called a cremulator which will pulverize the remaining material into “ashes,” a more uniform, powdery substance.</p>
</div>
<div class="slide">
<svg viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
<p class='title'>Cremation is rather affordable. </p>
<p>A direct cremation is the most affordable interment option, but doesn't include any memorialization, nor is it witnessed.</p>
</div>
<div class="slide">
<svg viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
<p class='title'>
While cremation is more environmentally sustainable than traditional burial, it's certainly not carbon-neutral. </p>
<p>A typical cremation releases about 534 pounds of CO2 into the atmosphere. That's equivalent to a 600-mile car trip.</p>
</div>
<div class="slide">
<p class='title'>
Cremation in America is rarely perfomed in the presence of loved ones. </p>
<p> While witness cremation is allowed, crematoriums are industrial spaces, not as welcoming as a funeral home.</p>
<svg id="family" viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
</div>
<div class="slide">
<svg viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
<p class='title'>
Many religions have strict limitations on cremation. </p>
<p>Traditional Muslim and Judaic beliefs bans cremation. Catholocism and other Christian religions previously banned cremation because of a belief in the reincarnation of the body.</p>
</div>
<div class="slide">
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
<p class='title'>
Cremation rates vary greatly by Country. </p>
<ul>
<li> It is ubiquitous in countries like Japan, with rates as high as 99.97%. </li>
<li> As of 2018, 53.1% of Americans are cremated. </li>
<li> There are legal limits on where the ashes can be spread, which vary by state. </li>
<li> Other than that, cremation is readily available everywhere in America. </li>
</ul>
</div>
<div class="slide">
<p class="title">If you'd prefer to be cremated, simply communicate that desire to your friends and loved ones.</p>
<p>If you're worried a family member may try to upend your plans, put it in writing - every will can contain a section on the Dispsition of Remains.</p>
</div>
<div class="slide">
<div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">How popular is cremation?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Cremation recently became the most common form of interment in the US. It's expected to account for nearly 60% of funerals this year.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">How can I ensure that I am cremated?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Share your wishes with a friend or loved one. Better yet, write them down, too. Even better: grant that person Power of Attorney upon your demise, and specify your preference for Disposition of Remains.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">What remains after cremation?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Bone fragments, which are pulverized in a cremulator to the consistency of ashes, or 'cremains.'</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">Does a body have to be embalmed for cremation?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Absolutely not. If a Funeral Director tells you otherwise, find a new one.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">Can I provide my own urn?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Certainly.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" data-anchor="green">
<div class="slide">
<h2 id="three">Green Burial</h2>
<p class='title'>A green burial involves burying an unembalmed body directly into the earth in a shroud or casket made of natural, biodegradable materials that won't harm the earth. </p>
<p>This is how people have been buried throughout human history; allowing the body to return to the earth so it can become part of nature. This method of burial remains an important part of funerary ritual for people of Muslim and Jewish faiths.</p>
</div>
<div class="slide">
<p class='title'>Unlike standard casketed burials, a green burial avoids embalming, vaults, tombstones, and caskets made from metals and synthetic materials.</p>
<p>Instead, a body can be shrouded, or a casket made from eco-friendly materials like wicker, cardboard, bamboo, or willow can be used.
</p>
</div>
<div class="slide">
<p class='title'>Green burial <span class="bold"> does not </span> require a vault or headstone.</p>
<p>Green or conservation cemeteries (green burial grounds that are protected by a land conservation trust) do not use tombstones or other monuments, in order to allow surrounding nature and wildlife to thrive. These spaces honor nature while acknowledging our place in it as human beings. </p>
</div>
<div class="slide">
<p class="title">Since the body and casket are completely biodegradeable, you become a part of the surrounding Earth.</p>
<p>If you visit a green cemetery, you will be overwhelmed by how lush the growth is.</p>
</div>
<div class="slide">
<svg viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
<p class="title">Green burial is roughly the same cost as a traditional burial.
</p>
<ul>
<li>There are no fees for embalming or vaults,</li>
<li>There are no cemetery costs or hidden fees.</li>
<li>Just cost of the casket, a funeral director and the cemetery.</li>
</ul>
</div>
<div class="slide">
<p class='title'>
This is the<em> most</em> environmentally friendly way to be interred.</p>
<p>
Only completely biodegradeable material is allowed to be buried.</p>
<p>No embalming, no vault of grave liner, no emissions.</p>
<svg viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
An appeal of green burial is the direct involvement of family and friends of the deceased.</p>
<p>There are numerous customizations allowed, such as personalizing the casket.</p>
<svg id="family" viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
</div>
<div class="slide">
<p class='title'>
There are no prominent religious objections to green burial.</p>
<p>Strict Islam and Judaism actually <em>require</em> a 'green' burial.</p>
<svg viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
There are only a few hundred green cemeteries in America.</p>
<p>So unlike tradiational burial or cremation, green burial <em>requires advance planning.</em></p>
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
</div>
<div class="slide">
<p class="title">If Green Burial interests you, plan ahead.</p>
<p>That's true for any unique interment option, but Green Burial allows you to write a script for your final passage.</p>
<p>The <a href='https://www.greenburialcouncil.org/' target="_blank">Green Burial Council</a> is your source for all the info you'll need.</p>
</div>
<div class="slide"> <div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">Where can I find a green burial ground near me?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>The Green Burial Council's <a href="https://www.greenburialcouncil.org/">website</a> has an interactive map of all of the green burial sites in the U.S.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">What makes a burial 'green?'</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Green burials minimize the impact on the land and environment by avoiding embalming, hardwood or metal caskets, and vaults or grave liners. Instead, dry ice helps preserve the body, a biodegradable casket or shroud replaces a casket, and the body is interred directly into the ground.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">What are the different types of green cemeteries?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p><span class="bold">Hybrid Cemeteries</span> are traditional cemeteries with a 'green' section.</p>
<p><span class="bold">Natural Burial Grounds</span> are dedicated exclusively to green burials and minimizing environmental impact.</p>
<p><span class="bold">Conservation Burial Grounds</span> are natural cemeteries that have partnered with a conservation group to assure the land stays wild.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">What does a green cemetery look like?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Instead of neat rows of headstones on a flat tract of land, green burial sites look more like lush gardens.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">How can a burial site be found without a headstone?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Small stone markers or plaques can be used in lieu of headstones. GPS can also be used to locate interred remains!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" data-anchor="aquamation">
<div class="slide">
<h2 id="four">Aquamation</h2>
<p class='title'>Aquamation, aka water cremation or alkaline hydrolysis, is an eco-friendly alternative to flame-based cremation. </p>
<p>Instead of fire, a combination of alkalized water and heat work to reduce the body to ashes.</p>
</div>
<div class="slide">
<p class='title'>Bodies are placed into a metal cradle before being inserted into the aquamation chamber.</p>
<p>There is no need for a casket or embalming.</p>
</div>
<div class="slide">
<p class='title'>The chamber fills with water, and is heated to 300 °F for about 4 hours. Elevated pressure prevents the solution from boiling. The lye gradually breaks down the body into its chemical components, leaving bone fragments.</p>
<p>After eight hours only brittle bones and ash remain, similar to flame cremation.</p>
</div>
<div class="slide">
<p class='title'>
Aquamation costs about $2,000 and up.
</p>
<svg viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
<p>But there are no additional costs for emlbalming, a casket, a cemetery plot or anything else. So Aquamation is actually on the cheaper side of your interment options.</p>
</div>
<div class="slide">
<p class='title'>
Aquamation is a greener alternative as it can cut energy use by 90%, and cut greenhouse gas emissions by 35%.
</p>
<svg viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
<ul id='natural' class='endnote'>
<li>The process uses about one-tenth the energy a crematorium does.</li>
<li>Emissions are much lower than the alternatives.</li>
<li>It does not incinerate implants, mercury or other pollutants.</li>
<li>The process uses about 300 gallons of water. </li>
<li>Upon completion, the solution, made up of 82% fresh water, 4% KOH and 14% hydrolized human remains, is drained into the municipal sewer system, much like the blood and organs removed during the embalming process.</li>
</ul>
</div>
<div class="slide">
<p class='title'>
Like cremation, there is usually no witness for Aquamation. </p>
<svg viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
<ul class='endnote'>
<li> While there is limited or no family participation in the process, families can still have a service separate from the procedure. </li>
<li> The traditional tray can be replaced with a rented casket, if desired. </li>
<li> Remains may be returned to families, much like in cremation. </li>
<li> The remains from Aquamation can also be used as fertilizer.</li>
</ul>
</div>
<div class="slide">
<p class='title'>
Not all religions have an offical stance on Aquamation. </p>
<svg viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
<ul class='endnote'>
<li> While Christian faiths accept cremation as a means of disposal, 'water cremation' remains somewhat controversial. </li>
<li> Some American Catholic diocese consider the process a denigration of the human body. </li>
<li> A Catholic Conference in Ohio successfully prevented legislation legalizing Aquamation on these grounds.
</li>
</ul>
</div>
<div class="slide">
<p class='title'>
Aquamation is only legal in 18 states. </p>
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
<p>The number of Funeral Directors offering Aquamation is further limited by the cost of purchasing and installing a resomator: usually around $400,000.</p>
</div>
<div class="slide">
<p class="title">Still Reading?</p>
<p class="summarytext">As Aquamation is greatly limited by geography, it'd be a good idea to find where it is available nearest to you. This is a plan-ahead option, probably requiring an explicit request in one's will or <a href="Appointment_of_Agent_to_Control_Disposition_of_Remains.pdf" target="_blank" >Manner of Disposition</a>.</p>
<p class="summarytext">
Not your thing? Check out the other options linked above.
</p>
</div>
<div class="slide">
<div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">What are the ingredients in a 'water cremation?'?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Warm water mixed with caustic lye dissolves body tissue over the course of a few hours.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">What remains are there after this procedure?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Much like cremation, only bone fragments survive the process. These are ground up into 'ashes' that can be taken home.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">Is Alkaline Hydrolysis legal where I live?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Only New Hampshire has a law banning Alkaline Hydrolysis, but no one offers the service in Idaho, Kansas, Maryland, or Vermont.</p>
<p>It is both legal and available in Alabama, California, Connecticut, Florida, Illinois, Michigan, Minnesota, Nevada, North Carolina, Oregon, Utah, and Washington.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">Can I still have a memorial service?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Of course! But you obviously wouldn't need embalming, a casket, a vault or your best outfit.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">What happens to the water solution at the end of the process?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Like the removed blood and viscera from an embalming, it is drained into the municipal sewer system.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" data-anchor="donation">
<div class="slide">
<h2 id="five">Body Donation</h2>
<p class='title'>
You can choose to donate your whole body after death to research and education at little to no cost.
</p>
<p >While this option is considered a generous gift and body donations are vital to advancing medical science, it also comes with risks.
</p>
</div>
<div class="slide">
<p class='title'>
At this time there is no federal oversight or regulation, allowing for-profit businesses to buy, sell and use an individual's remains in ways that you and your family may not be comfortable with. </p>
<p>Each donation program has different requirements for bodies depending on their needs, so things like age, weight, cause of death, etc. may disqualify a body for donation. </p><p>It's key to do your research and ask as many questions as possible to find the right fit. Start by checking with local universities which may have a donor program in place. It's important to understand an institution's policies and arrange donation beforehand to avoid misunderstandings and to have an alternative plan.</p>
</div>
<div class="slide">
<p class="title">That said, donation is needed for Medical and Physical Therapy programs, as well as research.</p>
<p >Donated bodies are usually used for 2-18 months.</p>
</div>
<div class="slide">
<p class="title">Students recognize the selflessness of donation, and treat bodies with the utmost respect. Many schools have 'Gratitude Ceremonies' at the end of the Academic year to honor those who gave so generously.</p>
<p>In most cases remains will be embalmed and later cremated and returned to the family.</p>
</div>
<div class="slide">
<p class='title'>
Body Donation is usually free.
</p>
<p>
A lab or University may require a small fee for processing the body, but this cost pales in comparison to other interment options.
</p>
<svg viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
</div>
<div class="slide">
<p class="title"> Embalming and cremation of the body will still result in carcinogens being added to both the land and the air.
</p>
<p>
But the 'recycling' of the body helps mitigate the environmental issues. </p>
<svg viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
</div>
<div class="slide">
<p class='title'> This is not an option for those who want a memorial service with the body present. </p>
<p>The body is donated immediately upon death. Cremains may eventually be returned to the family.
</p>
<svg viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
</div>
<div class="slide">
<p class='title'>
Most religions are supportive of body donation. </p>
<ul>
<li>Most Christian religions consider body donation a charitable act of love.
</li>
<li>Judaism and Buddhism are supportive of it too.
</li>
<li>Hinduism does not prevent body donation, and considers it a personal choice.
</li>
<li>Islam prefers organ donation over whole body donation.
</li>
</ul>
<svg viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
There is no geographic limitation on body donation, but arrangements for donation must be made in advance. </p>
<p> Most bodies are donated locally, rather than crossing state lines.</p>
<p> Many alumni prefer to donate their bodies directly to their University's medical school.</p>
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
</div>
<div class="slide">
<p class="title">Body Donation is uniquely appealing to a small number of individuals. </p>
<p>If you're one of them, <a href="https://ieds.online/body-donation-programs-by-state/" target="_blank">here's</a> a list of universities with body donation programs, and <a href="https://www.elon.edu/u/academics/health-sciences/anatomical-gift/" target="_blank">here's</a> an example program that gives a sense of the process of anatomical body donation.</p>
</div>
<div class="slide">
<div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">How can I control who 'gets' my body?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Donate your body to a specific institution, such as a University or medical school.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">What happens to the body before it gets 'used?'</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>It is cleaned and embalmed.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">How many Americans donate their bodies to science?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>The exact number is unknown, but it is estimated that 20,000 Americans donate their bodies each year.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">What could exclude me from participating?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Some transmissible diseases, such as hepatitis, tuberculosis or HIV, prevent donation. So does an autopsy.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">How is body donation different from organ donation?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Organ donors are harvested at the hospital after being declared brain-dead. Organ donation does not play a role in research or education.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" data-anchor="home">
<div class="slide">
<h2>Home Burial</h2>
<p class='title'>Home funerals are performed by family and friends.
<p >They allow us to spend time with the deceased in a familiar and comfortable setting, and create an opportunity for more meaningful involvement including decorating a coffin or shroud, arranging flowers, memorial making, and holding a funeral service that is family and community led, instead of funeral industry led.</p>
</div>
<div class="slide">
<p class="title">The right to care for your own dead is a safe, legal, and low cost option in every U.S. state.</p>
<p><em>Burials on private property</em> are legal in most states with the exception of California, Indiana, Washington, and the District of Columbia.</p>
<p>There may be local regulations on where a grave is dug, including distance requirements from public roads, power and water sources.</p>
<p>While legal, if there isn't a cemetery legally established on your property, you will need to contact your local zoning board regarding regulations, permits, and more.</p>
</div>
<div class="slide">
<p class="title">Participants wash, dress, and bury the body themselves.</p>
<p>Once a location is selected a grave can be dug by hand, allowing for additional family or community involvement. There is no vault or grave liner, and the grave can be marked however you wish.</p>
</div>
<div class="slide">
<p class='title'>
Home Burial can vary in cost.
</p>
<p>
But it avoids the outsized costs of a casket, a vault, and embalming.</p>
<svg viewBox="0 0 700 500">
<path id="money_icon" d="m398.51 177.98c2.082-3.5508 4.25-7.6953 6.0195-12.152 2.5977-6.5625 5.6328-16.398 5.3633-26.141 0.19531-7.8125-2.3594-14.934-7.1953-20.125-3.5898-3.8359-10.191-8.4844-21.285-8.8555-6.8672-0.21875-13.758-0.027344-20.441 0.15625-4.4141 0.125-8.8242 0.25391-13.195 0.25391-8.9609 0-25.711 0.44141-32.008 0.61719l-3.707 0.16406c-11.344 1.6523-17.102 7.8398-19.926 12.738-7.6836 13.301-2.3906 31.516 1.4453 41.176 1.8594 4.6992 4.1602 9.0625 6.3398 12.719-65.828 20.73-113.6 81.105-113.6 152.21 0 79.656 61.215 127.2 163.74 127.2 102.52 0 163.74-47.551 163.74-127.2 0.007813-71.727-48.582-132.55-115.29-152.77zm-88.355-42.93c0.33594-0.57031 1.082-1.875 4.3789-2.4648 0.45312-0.011719 1.0547-0.027344 1.7852-0.054688 6.2266-0.16406 22.773-0.59375 31.461-0.59375 4.5703 0 9.1797-0.12891 13.789-0.26172 6.6523-0.19141 12.926-0.36328 19.176-0.15625 2.1914 0.074218 5.1406 0.51562 6.7656 2.25 1.4297 1.5273 1.6523 3.8711 1.5977 5.5625l-0.023438 0.375 0.023438 0.37109c0.16406 4.8711-1.2148 11.289-3.9102 18.078-2.4141 6.082-5.9141 11.602-8.1914 14.875-8.7656-1.4219-17.758-2.1992-26.918-2.1992-9.8008 0-19.395 0.89453-28.719 2.5156-2.2852-3.2266-5.9414-8.8867-8.4336-15.199-4.543-11.426-4.6719-19.832-2.7812-23.098zm39.91 302.07c-42.973 0-142.93-10.375-142.93-106.39 0-76.715 64.113-139.1 142.93-139.1 78.805 0 142.93 62.391 142.93 139.1 0 96.023-99.961 106.39-142.93 106.39z"/>
<path id="money_icon2" d="m338.44 288.8c0-5.4414 4.1328-8.1523 10.422-8.1523 8.2812 0 21.699 5.5938 32.25 12.723l9.8555-24.633c-8.418-6.4414-19.539-11.195-31.254-12.719v-14.414h-18.973v14.582c-18.285 3.5742-29.691 16.625-29.691 35.492 0 42.074 52.656 29.848 52.656 50.047 0 6.2891-4.832 9.6641-12.555 9.6641-10.414 0-25.977-7.4648-36.25-17.988l-10.137 24.277c9.5547 9.3203 22.547 15.949 35.965 18.145v16.984h18.961v-16.805c17.98-2.8945 31.395-15.113 31.395-35.973 0.019531-42.738-52.645-31.551-52.645-51.23z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
Like green burial, this is the most environmentally friendly way to be interred. </p>
<p>
No embalming fluid, casket, vault, or carbon footprint. </p>
<svg viewBox="0 0 700 500">
<path id="tree1" d="m537.1 461.44h-65.297c-4.1992-23.688-6.9453-73.078-7.7852-140.84 4.0898 1.2891 8.457 1.9609 13.047 1.9609 2.6875 0 5.4336-0.22266 8.2305-0.67188 16.129-2.5742 32.258-12.879 37.688-23.465 11.09-2.8555 18.031-10.586 19.543-22.062 1.5664-11.648-3.0781-25.984-8.6797-32.984 3.3047-9.5195 8.625-31.641-0.44922-46.48-3.5859-5.8789-10.863-12.824-25.367-13.945-2.8555-4.8711-7.4492-8.7344-13.215-11.031-5.0391-2.0156-10.586-2.7422-15.848-2.1289 0.83984-11.535-0.39062-23.91-6.4961-33.879-6.8867-11.199-18.48-17.359-34.551-18.258-4.5352-8.3438-12.824-14.504-23.352-17.137-10.191-2.5195-20.945-1.2891-29.008 3.0781-6.2148-6.832-18.48-16.465-32.703-16.465h-0.55859c-8.5117 0.16797-20.441 3.9766-30.688 20.719-9.0156-2.8008-18.535-2.0703-26.375 2.1289-8.2305 4.4258-14.168 12.602-16.07 21.672-7.6719-0.55859-17.695 1.457-24.473 7.6172-4.5352 4.1445-8.9023 11.258-7.3906 22.625-7.168 2.0156-13.105 6.6094-16.855 10.473-5.9922-2.9102-13.609-3.6406-21-1.793-7.7266 1.9023-13.887 6.3281-17.414 12.375-14.504 1.0625-21.785 8.0625-25.367 13.945-9.0703 14.895-3.7539 36.961-0.44922 46.48-5.6016 7-10.246 21.281-8.6797 32.984 1.5664 11.426 8.457 19.152 19.543 22.062 5.4336 10.586 21.617 20.832 37.688 23.465 2.8008 0.44922 5.543 0.67188 8.2305 0.67188 4.5352 0 8.9023-0.67188 12.992-1.9609-0.50391 43.289-2.2383 109.93-7.7852 140.84l-65.301 0.003906c-3.1367 0-5.7109 2.5742-5.7109 5.7109 0 3.1367 2.5742 5.7109 5.7109 5.7109h374.3c3.1367 0 5.7109-2.5742 5.7109-5.7109-0.10547-3.1914-2.625-5.7109-5.8164-5.7109zm-59.754-279.78c4.0898-1.0625 8.9609-0.83984 13.16 0.83984 2.9102 1.1758 6.7773 3.5273 8.5117 8.0625 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 9.5195 0.054688 15.848 2.9102 19.32 8.625 7.8945 12.992-0.22266 36.734-1.625 39.48-0.67187 1.3984-0.78516 2.9688-0.28125 4.4258 0.50391 1.3984 1.457 2.5195 2.7422 3.1914 2.7422 2.2383 9.0156 16.297 6.3281 27.105-1.5117 6.0469-5.7109 9.5742-12.879 10.809-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-1.6797 5.8242-14.449 16.238-29.902 18.703-9.5742 1.5664-23.129 0.39062-32.816-13.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-1.625-0.22266-3.2461 0.28125-4.4805 1.3438-4.4805 3.8633-17.305 11.367-28.281 9.8555-0.89453-0.11328-1.7344-0.33594-2.5742-0.55859 20.832-4.5352 40.824-17.922 47.098-31.473 15.008-3.5859 24.359-13.719 26.375-28.953 2.1836-15.961-4.6484-36.344-12.32-44.969 1.5117-4.0898 3.4727-10.473 4.8711-17.922zm-250.1 19.824c3.5273-14.055 14.559-23.633 28.785-25.031 1.793-0.16797 3.3594-1.1758 4.3125-2.6875s1.1211-3.3594 0.50391-5.0391c-3.6953-9.6328-3.1914-16.742 1.5664-21.055 5.8789-5.375 16.406-5.4336 19.266-4.0312 1.793 0.89453 3.9219 0.78516 5.6016-0.33594 1.6797-1.0625 2.6875-2.9688 2.6328-4.9297-0.16797-7.3359 4.1992-14.895 10.754-18.367 6.1055-3.2461 14-3.2461 21.055 0.054687 2.7422 1.2891 6.0469 0.16797 7.4492-2.5195 6.5508-12.488 14.449-18.871 23.352-19.039h0.39062c12.938 0 24.695 12.434 26.543 15.625 0.83984 1.457 2.2969 2.5195 3.9766 2.8008 1.6797 0.28125 3.4141-0.16797 4.7031-1.2891 5.375-4.6484 14.895-6.2734 23.742-4.0898 8.2891 2.0703 14.504 7.0547 17.078 13.719 0.83984 2.1836 2.9102 3.6406 5.2656 3.6406 13.945 0.11328 23.297 4.3125 28.559 12.938 5.8789 9.5742 5.8242 22.848 4.0898 34.215-0.054688 0.28125-0.11328 0.50391-0.11328 0.78516-1.7344 10.863-5.0391 19.824-5.9922 21.84-0.67188 1.3984-0.83984 2.9688-0.33594 4.4258 0.50391 1.457 1.5117 2.6328 2.9102 3.2461 3.6953 2.2969 13.273 22.121 10.023 38.641-2.0156 10.191-8.5664 16.016-19.938 17.922-2.1836 0.33594-3.9219 1.9609-4.5352 4.0312-2.5195 8.793-20.551 23.855-43.176 27.496-2.5742 0.39062-5.375 0.72656-8.2891 0.72656h-0.33594c-12.656 0.16797-27.609-4.1445-38.977-20.832-0.89453-1.3438-2.3516-2.2383-3.9766-2.4062-0.22266-0.054687-0.50391-0.054687-0.72656-0.054687-1.3438 0-2.6875 0.50391-3.6953 1.3984-3.8086 3.2461-11.258 8.0078-19.824 11.145-0.11328 0.054687-0.28125 0.11328-0.39062 0.11328-0.22266 0.054687-0.39062 0.16797-0.61719 0.22266-0.28125 0.054687-0.55859 0.16797-0.78516 0.28125-7.168 2.4062-14.953 3.5859-22.062 1.8477-8.8477-2.1289-15.344-8.5117-19.77-19.375-0.72656-1.8477-2.4062-3.1914-4.3672-3.4727-1.9609-0.33594-3.9766 0.44922-5.2656 1.9609-3.0781 3.5859-7.8398 5.375-12.152 4.5938-2.8008-0.50391-11.312-2.1289-14.895-20.105-0.28125-1.5117-1.1758-2.8008-2.4062-3.6406-19.875-13.055-23.125-32.598-19.934-45.367zm-10.695 109.14c-15.457-2.4648-28.281-12.938-29.902-18.703-0.61719-2.1289-2.3516-3.6953-4.5352-4.0312-7.168-1.1758-11.367-4.7031-12.879-10.809-2.6875-10.809 3.5859-24.863 6.3281-27.105 1.2891-0.67188 2.2969-1.793 2.7422-3.1914 0.50391-1.457 0.39062-3.0781-0.28125-4.4258-1.3984-2.7422-9.5195-26.488-1.625-39.48 3.4727-5.7109 9.8008-8.5664 19.32-8.625 2.3516 0 4.4258-1.457 5.2656-3.6406 1.6797-4.3125 5.7695-7.5586 11.258-8.9023 4.1445-1.0078 8.3984-0.78516 11.871 0.44922-3.5859 4.7617-6.2734 10.359-7.8398 16.633-5.207 20.887 3.5859 42.727 22.512 56.281 4.5352 19.266 15.176 25.199 23.465 26.77 5.7109 1.0625 11.648-0.054687 16.633-3.0781 4.9844 8.8477 11.703 14.84 20.105 17.977-2.8008 4.5938-6.3828 7.3906-10.922 8.5117-11.145 2.6875-25.367-5.4336-30.184-9.5195-1.2305-1.0625-2.8555-1.5664-4.4805-1.3438-1.625 0.22266-3.0234 1.1211-3.9766 2.4062-9.7461 14.219-23.242 15.34-32.875 13.828zm23.242 150.81c5.375-32.312 7.168-95.984 7.6719-146.55 2.8008-1.9609 5.375-4.3125 7.7852-7 2.7422 1.793 6.2148 3.7539 10.191 5.375 0.44922 43.176 2.0156 113.73 7.7266 148.18zm76.27 0h-31.359c-5.6562-31.754-7.3359-100.86-7.8398-144.82 4.5352 0.72656 9.2383 0.78516 13.832-0.33594 5.375-1.2891 12.375-4.7031 17.754-13.328 3.6406 1.793 7.7266 2.4062 11.762 1.625 1.9609-0.39063 3.8086-1.0625 5.4883-1.9023-0.95703 56.949-3.4766 125.32-9.6367 158.76zm11.539 0c6.3828-36.961 8.793-109.93 9.6328-167.78 5.9375-2.5195 11.09-5.4883 14.84-8.0625 3.2461 3.9766 6.832 7.3359 10.754 10.191 0.83594 56.949 3.2422 129.08 9.5703 165.65zm87.75 0h-31.359c-6.2148-33.488-8.6797-102.59-9.6875-159.1 6.1602 2.5742 12.824 3.9766 19.879 4.2578 4.7031 5.7695 10.922 9.2969 18.199 10.305 3.6406 0.50391 7.2812 0.28125 10.809-0.28125-0.50391 43.902-2.1836 113.06-7.8398 144.82zm11.535 0c5.7109-34.441 7.2812-105.05 7.7266-148.23 3.9219-1.625 7.4492-3.5859 10.191-5.375 2.3516 2.7422 4.9844 5.0391 7.7266 7 0.55859 50.68 2.3516 114.35 7.7266 146.55l-33.371-0.003907z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
A primary appeal of home burial is the involvement of family & friends of the deceased. </p>
<p>
Those that have participated in a home burial emphasize the strong sense of closure created by being directly involved. </p>
<svg id="family" viewBox="0 0 700 500">
<path d="m486,662.12c-1.02-.47-2.03-.93-3.05-1.4-.02-.27,0-.54.05-.8,4.67.3,9.34.6,14,.91,33,0,66,0,99,0,29.66,0,59.32,0,88.98,0,.98,0,1.96,0,2.94,0-.04.18,0,.35.09.51-1.33.26-2.67.52-4,.78-66,0-132,0-198.01,0Z" fill="#c8c8c8"/><path d="m688.1,414.94c.3.35.61.7.91,1.06-.06,54-.11,108-.17,162-.23,0-.45,0-.68,0-.02-54.35-.04-108.7-.06-163.06Z" fill="#9f9f9f"/><path d="m688.16,578c.23,0,.45,0,.68,0,.11,26.67.22,53.33.33,80l-1.16,3.35c-.1-.16-.13-.32-.09-.51.08-27.61.16-55.23.24-82.84Z" fill="#9f9f9f"/><path d="m610.16,137.9l.86,2.1c.02.33.04.67.06,1-.32,6.03-.65,12.05-.97,18.08.02-7.06.03-14.12.05-21.18Z" fill="#8f8f8f"/><path d="m514,44.87c1.03.33,2.05.67,3.08,1-6.06-.01-12.11-.03-18.17-.04.7-.31,1.4-.63,2.09-.94,4.33,0,8.67-.01,13-.02Z" fill="#979797"/><path d="m188.93,45.89c.69-.33,1.38-.66,2.07-.99,4.67,0,9.33-.02,14-.02.7.32,1.39.63,2.09.95-6.05.02-12.11.04-18.16.06Z" fill="#9b9b9b"/><path d="m94.96,141l.92-1.13c.09,1.38.18,2.75.26,4.13,0,3,0,6,0,9-.09,1.38-.18,2.76-.26,4.13-.3-.38-.6-.75-.91-1.13,0-5,0-10,0-15Z" fill="#5e5e5e"/><path d="m497,660.83c-4.67-.3-9.34-.6-14-.91l-.94-31.94c-.44-3.29-.88-6.58-1.31-9.88,5.18-3.61-.19-4.32-1.68-6.1-.37-1.28-.75-2.56-1.12-3.83.22-3.69,3.38-8.61-3.85-9.17l-.3-.19s.07-.35.07-.35c3.09-12.11-20.04-38.11-33.13-37.23l.07.06c.33-4.34-2.4-3.76-5.13-3.18-8.61-3.59-17.21-7.18-25.82-10.77.03-1.2.52-3.19.01-3.49-13.9-8.16-28.9-11.88-45.03-10.72l.08.02c-.33-.94-.67-1.89-1-2.83-1.01.58-2.03,1.17-3.04,1.75-5.64.28-11.29.55-16.93.83-45.83,12.92-92.57,24.69-114.05,74.54-3.4,7.9-4.06,16.97-5.99,25.5-.33,10-.67,20-1,30-.64-.04-1.28-.07-1.92-.11-1.45-1.24-2.89-3.57-4.34-3.57-35.88.09-71.75.43-107.63.73-1.8-.67-3.6-1.9-5.41-1.91-19.53-.14-39.06-.09-58.59-.09h-21c-.67-1.48-1.9-2.96-1.92-4.45-.76-51.96-2.57-103.95-1.63-155.89.52-29.13,3.33-58.14-1.56-87.12.06-.51.12-1.03.17-1.54,7.97-2.96,7.39-7.21,1.85-12.21.38-1.93.77-3.86,1.15-5.79,2.6-3.78,5.91-7.26,7.68-11.4,5.32-12.43,10.03-25.12,14.99-37.71.4-.64.79-1.28,1.19-1.93,1.68.24,3.36.48,5.04.72-.32-1.9-.65-3.81-.97-5.71.29-.34.59-.68.88-1.02,14.05-4.64,23.67-14.44,31.13-26.75.29-.16.59-.32.88-.48,1.88,3.08,3.42,5.48,8.12,3.41,17.48-7.68,35.07-15.16,52.9-21.99,4.21-1.62,9.84.65,14.24-.72,19.43-6.02,39.39-3.88,59-3.49,20.43.4,40.8,3.85,61.19,5.96.89.34,1.78.68,2.67,1.03.73,4.77,3.83,2.26,6.2,2.02,1.27.42,2.53.85,3.8,1.27.12,3.77,1.55,4.29,4.23,1.7,2.93,1.33,5.86,2.66,8.79,3.99-.72,2.17-2.21,6.16-2.04,6.23,6.44,2.73,12.66,8.3,20.15,2.56.29.16.58.31.87.47-.26,15.16,17.48,9.98,22.34,19.54.28.56,3.54-.4,5.42-.66.97.29,1.95.57,2.92.86,2.14-.27,4.86.2,6.31-.95,8.17-6.46,19.3-7.06,26.98-15.94,3.15-3.64,16.09,1.65,14.89-11.38,4.69-1.93,9.38-3.86,14.07-5.79,8.63,3.51,14.64-.77,20.07-6.76.31-.09.61-.19.92-.28,1.51.76,3.21,2.4,4.52,2.14,28.33-5.68,56.85-8.75,85.73-6.05,19.08,1.78,38.12,4,57.17,6.02,0,0,.38-.13.38-.13l.29.27c1.65.7,1.53,6.47,5.07,1.77,1.32.45,2.63.89,3.95,1.34-1.74,11.24,7.88,10.13,13.98,12.86,2.33,1.33,4.67,2.67,7,4,10.44-.5,14.16,15.04,26.11,10.92l-.04-.04c-2.28,10.06,3.18,12.61,11.77,12.11.7.77,1.41,1.53,2.11,2.3-3.07,8.42,5.84,12.07,7.71,18.65.56,1.96,5.32,2.73,8.15,4.05,2.1,4.32,4.21,8.63,6.31,12.95-2.68,3.79-.93,5.81,2.8,7.04.4,1.17.8,2.34,1.2,3.51-1.83,10.87.94,20.87,5.72,30.5.08.66.16,1.31.24,1.97-4.76,1.18-4.06,5.08-4.06,8.46-.03,77.52-.02,155.04-.02,232.57-24.53.33-49.06.58-73.59,1.08-4.48.09-8.94,1.25-13.41,1.92-1.85-1-3.7-2.86-5.56-2.87-29.3-.18-58.61-.05-87.91-.21-4.54-.02-6.05,1.73-5.53,5.91Zm-163.88-304.63h.02c-3.38-.96-7.15-3.41-10.07-2.63-18.76,4.99-31.59,17.11-42.19,33.39-22.77,34.96-11.17,95.23,24.25,115.95,52.98,30.99,129.21,3.33,131.43-68.3,1.32-42.65-33.81-89.03-73.84-80.48-5.27.25-10.54.49-15.81.74-2.3,0-4.61-.01-6.91-.02-1.41-1.6-2.82-3.19-4.23-4.79-.88,2.05-1.77,4.1-2.65,6.14Z" fill="#010101"/><path d="m220.97,662.84c.64.04,1.28.07,1.92.11,0,0,.47.03.47.03h.47c-2.04.34-4.08.99-6.12.99-64.62.05-129.24.05-193.85,0-2.05,0-4.11-.62-6.16-.94.14-.19.3-.21.48-.06,29.94-.04,59.88-.08,89.82-.12,37.66,0,75.31,0,112.97,0Z" fill="#7f7f7f"/><path d="m440.73,561.24c13.09-.88,36.22,25.11,33.13,37.23-8.1-15.03-19.23-27.36-33.13-37.23Z" fill="#010101"/><path d="m364.83,533.14c16.14-1.16,31.14,2.56,45.03,10.72.5.3.01,2.29-.01,3.49-15.01-4.74-30.01-9.47-45.02-14.21Z" fill="#010101"/><path d="m482.06,627.98c.31,10.65.63,21.3.94,31.94-.06.26-.07.53-.05.8-.3-10.92-.59-21.83-.89-32.75Z" fill="#4a4a4a"/><path d="m223.84,662.98h-.47s-.47-.03-.47-.03c.33-10,.67-20,1-30-.02,10.01-.04,20.02-.05,30.03Z" fill="#6d6d6d"/><path d="m474.09,599c7.23.56,4.08,5.48,3.85,9.17-1.28-3.06-2.57-6.11-3.85-9.17Z" fill="#010101"/><path d="m343.93,532.9c5.64-.28,11.29-.55,16.93-.83.13.24.22.49.26.75-5.73.02-11.46.05-17.19.07Z" fill="#7e7e7e"/><path d="m479.06,612.01c1.49,1.78,6.86,2.49,1.68,6.1-.56-2.03-1.12-4.07-1.68-6.1Z" fill="#010101"/><path d="m435.67,558.12c2.73-.58,5.46-1.16,5.13,3.18-1.71-1.06-3.42-2.12-5.13-3.18Z" fill="#010101"/><path d="m361.12,532.83c-.04-.27-.13-.52-.26-.75,1.01-.58,2.03-1.17,3.04-1.75.33.94.67,1.89,1,2.83-1.26-.11-2.52-.22-3.78-.33Z" fill="#010101"/><path d="m108,662.83c-29.94.04-59.88.08-89.82.12-.1-81.66-.19-163.32-.29-244.98.33-2.48.67-4.95,1-7.43,4.88,28.98,2.08,57.99,1.56,87.12-.94,51.94.87,103.92,1.63,155.89.02,1.49,1.25,2.97,1.92,4.45h21c19.53,0,39.06-.05,58.59.09,1.81.01,3.61,1.25,5.41,1.91-.33.94-.67,1.89-1,2.83Z" fill="#010101"/><path d="m278.33,289.89c-20.39-2.11-40.76-5.56-61.19-5.96-19.61-.38-39.57-2.53-59,3.49-4.4,1.36-10.03-.9-14.24.72-17.82,6.83-35.41,14.31-52.9,21.99-4.69,2.06-6.24-.33-8.12-3.41,62.71-33.95,128.1-36.81,195.45-16.83Z" fill="#010101"/><path d="m584.33,289.89c-19.06-2.02-38.09-4.24-57.17-6.02-28.89-2.7-57.4.36-85.73,6.05-1.31.26-3-1.38-4.52-2.14,46.62-14.04,93.32-13.02,140.09-.76,2.44.96,4.89,1.91,7.33,2.87Z" fill="#010101"/><path d="m401.86,300.62c1.2,13.03-11.74,7.74-14.89,11.38-7.69,8.88-18.81,9.48-26.98,15.94-1.45,1.14-4.17.67-6.31.95,16.06-9.42,32.12-18.85,48.18-28.27Z" fill="#010101"/><path d="m44.73,341.89c-4.95,12.59-9.67,25.28-14.99,37.71-1.77,4.14-5.08,7.62-7.68,11.4,3.81-18.1,11.54-34.39,22.67-49.11Z" fill="#010101"/><path d="m82,307.2c-7.46,12.31-17.08,22.11-31.13,26.75,10.38-8.92,20.76-17.83,31.13-26.75Z" fill="#010101"/><path d="m350.76,328.03c-1.87.25-5.13,1.21-5.42.66-4.86-9.56-22.6-4.38-22.34-19.54l27.76,18.88Z" fill="#010101"/><path d="m322.12,308.68c-7.49,5.74-13.72.17-20.15-2.56-.17-.07,1.33-4.07,2.04-6.23,6.04,2.93,12.07,5.86,18.11,8.79Z" fill="#010101"/><path d="m435.99,288.06c-5.43,5.99-11.43,10.28-20.07,6.76,6.69-2.25,13.38-4.51,20.07-6.76Z" fill="#010101"/><path d="m20.91,396.79c5.55,5,6.13,9.25-1.85,12.21.62-4.07,1.23-8.14,1.85-12.21Z" fill="#010101"/><path d="m49.99,334.97c.32,1.9.65,3.81.97,5.71-1.68-.24-3.36-.48-5.04-.72,1.36-1.67,2.71-3.33,4.07-5Z" fill="#010101"/><path d="m287.2,292.93c-2.36.24-5.47,2.75-6.2-2.02,2.07.67,4.13,1.34,6.2,2.02Z" fill="#010101"/><path d="m295.23,295.9c-2.68,2.6-4.11,2.07-4.23-1.7,1.41.57,2.82,1.13,4.23,1.7Z" fill="#010101"/><path d="m96.14,153c0-3,0-6,0-9,1.42-1.26,4.23-2.78,4.04-3.73-1.95-10.08,3.72-18.41,5.99-27.47.8-3.18,14.12-6.52-.46-8.9.83-1.63,1.66-3.27,2.49-4.9,9.75-8.2,21.83-14.5,23.76-29.08.35-.3.7-.61,1.05-.91,5.77,2.34,6.54-2.21,7.99-5.81,1.67-1.06,3.34-2.13,5.01-3.19,5.77,3.16,9.4,2.09,9.98-5.03h-.02c20.12-.49,39.93-7.03,60.31-3.01,9.33,1.84,18.74,3.27,28.12,4.89,42.2,17.66,67.89,76.58,52.41,120.17-7.14,10.5-15.5,20.45-20.71,31.84-1.63,3.55-17.18,2.83-5.13,11.79l-1.33,1.34c-5.11-1.92-7.08-.35-5.61,5.04l.02-.02c-13.18,5.05-27.02,8.84-37.03,19.81-.52.1-1.04.2-1.56.3-2.52.44-6.31-4.28-7.45,1.81-2.48.38-4.96.76-7.45,1.14-2.89,3.62-7.94-17.56-9.55.83-2,0-4,0-6,0-1.95-13.89-6.16-1.56-9.37-.8-3.59-.59-7.17-1.18-10.76-1.77-1.51-8.38-9.48-7.63-14.89-10.21-9.86-4.71-20.03-8.76-30.08-13.09-3.3-3.35-6.6-6.7-9.9-10.05-.22-2.13.15-4.54-.74-6.34-5.5-11.17-11.7-22.02-16.81-33.36-3.16-7,.66-16.19-6.31-22.29Z" fill="#010101"/><path d="m244.39,56.85c-9.38-1.62-18.79-3.05-28.12-4.89-20.38-4.02-40.18,2.52-60.31,3.02,10.99-3.03,21.98-6.06,32.97-9.09,6.05-.02,12.11-.04,18.16-.06,13.09,1.45,25.73,4.42,37.3,11.02Z" fill="#010101"/><path d="m96.14,153c6.97,6.1,3.15,15.29,6.31,22.29,5.12,11.34,11.31,22.19,16.81,33.36.89,1.8.52,4.21.74,6.34-14.3-16.68-22.44-35.92-24.13-57.85.09-1.38.18-2.76.26-4.13Z" fill="#010101"/><path d="m270.96,220.66c-12.05-8.97,3.51-8.24,5.13-11.79,5.21-11.39,13.57-21.34,20.71-31.84-4.58,16.94-13.25,31.45-25.84,43.63Z" fill="#010101"/><path d="m129.9,225.04c10.04,4.33,20.22,8.38,30.08,13.09,5.41,2.58,13.38,1.83,14.89,10.21-17.08-3.73-32.04-11.57-44.97-23.3Z" fill="#010101"/><path d="m227.01,246.83c10.01-10.97,23.85-14.76,37.03-19.81-10.81,9.47-23.1,16.17-37.03,19.81Z" fill="#010101"/><path d="m201,250.92c1.61-18.39,6.66,2.79,9.55-.83-3.18.28-6.37.55-9.55.83Z" fill="#010101"/><path d="m185.63,250.11c3.21-.75,7.41-13.08,9.37.8-3.12-.27-6.24-.54-9.37-.8Z" fill="#010101"/><path d="m264.02,227.04c-1.47-5.39.5-6.96,5.61-5.04-1.87,1.68-3.74,3.36-5.61,5.04Z" fill="#010101"/><path d="m218,248.95c1.15-6.09,4.93-1.37,7.45-1.81-2.48.6-4.97,1.21-7.45,1.81Z" fill="#010101"/><path d="m610.16,137.9c-.02,7.06-.03,14.12-.05,21.18-2.42,9.31-4.83,18.63-7.25,27.94-.93,2.06-1.86,4.12-2.79,6.19.13.35.03.61-.3.79-9.71,4.53-16.6,11.01-15.78,22.82-3.11,3.06-6.22,6.12-9.33,9.18-11.46,6.76-27.06,6.28-34.65,19.82-6.57,1.43-13.13,2.86-19.7,4.28-2.89,2.76-6.99-8.3-9.32.81-2.33,0-4.67,0-7,0-1.95-9.68-5.94,1.73-8.58-.83-5.48-1.07-10.96-2.15-16.44-3.22-9.97-11.05-23.6-15.26-37.05-19.81l.03.02c-5.33-16.19-17.62-27.24-28.87-39.07-2.07-7.2-4.14-14.4-6.21-21.6-.99-2.01,7.76-5.52-.97-6.35,0,0,.02.06.02.06,0-7.75-.01-15.5-.02-23.25l-.03.07c7.57-1.31-.77-4.96,1.05-7.12.19-1.33.39-2.65.58-3.98,7.16-1.79,2.69-7.12,3.32-10.9l6.36-14.94c9.22-6.14,19.44-11.53,18.77-25.07,1.02-.97,2.03-1.95,3.05-2.92,5.56,4.99,5.51-2.25,7.94-3.78,22.42-14.17,46.76-20.1,73.02-16.29,13.41,1.94,26.6,5.35,39.9,8.1,29.81,17.52,45.79,43.98,50.28,77.86Z" fill="#010101"/><path d="m559.89,60.04c-13.29-2.75-26.49-6.15-39.9-8.1-26.26-3.81-50.6,2.12-73.02,16.29-2.43,1.54-2.38,8.78-7.94,3.78,17.04-15.4,37.12-23.84,59.88-26.18,6.06.01,12.11.03,18.17.04,15.29,1.64,29.73,5.84,42.81,14.16Z" fill="#010101"/>
<path d="m413.09,188c11.24,11.83,23.53,22.88,28.87,39.07-13.04-10.5-22.76-23.45-28.87-39.07Z" fill="#010101"/><path d="m441.93,227.04c13.45,4.55,27.08,8.76,37.05,19.81-13.9-3.71-26.25-10.3-37.05-19.81Z" fill="#010101"/><path d="m540.02,245.81c7.59-13.53,23.19-13.06,34.65-19.82-9.93,9.44-21.69,15.68-34.65,19.82Z" fill="#010101"/><path d="m435.98,74.93c.67,13.54-9.56,18.93-18.77,25.07l18.77-25.07Z" fill="#010101"/><path d="m584,216.82c-.81-11.81,6.08-18.29,15.78-22.82-5.26,7.61-10.52,15.21-15.78,22.82Z" fill="#010101"/><path d="m410.84,114.94c-.63,3.78,3.85,9.11-3.32,10.9,1.11-3.63,2.21-7.27,3.32-10.9Z" fill="#010101"/><path d="m405.91,136.86c0,7.75.01,15.5.02,23.25,0-7.75-.01-15.5-.02-23.25Z" fill="#010101"/><path d="m495.42,250.07c2.64,2.56,6.63-8.85,8.58.83-2.86-.28-5.72-.55-8.58-.83Z" fill="#010101"/><path d="m511,250.91c2.33-9.11,6.43,1.95,9.32-.81-3.11.27-6.21.54-9.32.81Z" fill="#010101"/><path d="m405.91,160.05c8.73.83-.03,4.33.97,6.35-.32-2.12-.65-4.23-.97-6.35Z" fill="#010101"/><path d="m406.94,129.82c-1.82,2.16,6.51,5.81-1.05,7.12.35-2.37.7-4.75,1.05-7.12Z" fill="#010101"/><path d="m600.08,193.2c.93-2.06,1.86-4.12,2.79-6.19-.93,2.06-1.86,4.12-2.79,6.19Z" fill="#010101"/><path d="m683,655c0-77.52,0-155.04.02-232.57,0-3.39-.69-7.28,4.06-8.46.34.32.67.65,1.01.97.02,54.35.04,108.7.06,163.06-.08,27.61-.16,55.23-.24,82.84-.98,0-1.96,0-2.94,0-.66-1.94-1.32-3.89-1.98-5.83Z" fill="#010101"/><path d="m641.11,320.92c-11.95,4.11-15.68-11.42-26.11-10.92-2.33-1.33-4.67-2.67-7-4-6.1-2.72-15.71-1.62-13.98-12.86,17.7,5.86,33.49,14.98,47.09,27.78Z" fill="#010101"/><path d="m670.81,358c-2.83-1.32-7.59-2.09-8.15-4.05-1.87-6.58-10.78-10.23-7.71-18.65,5.29,7.57,10.57,15.13,15.86,22.7Z" fill="#010101"/><path d="m686.85,412c-4.78-9.63-7.55-19.64-5.72-30.5,1.91,10.17,3.81,20.34,5.72,30.5Z" fill="#010101"/><path d="m652.84,333c-8.59.5-14.05-2.05-11.77-12.11,3.92,4.04,7.85,8.08,11.77,12.11Z" fill="#010101"/><path d="m679.93,377.99c-3.73-1.23-5.48-3.26-2.8-7.04.93,2.35,1.87,4.7,2.8,7.04Z" fill="#010101"/><path d="m590.07,291.81c-3.54,4.7-3.42-1.07-5.07-1.77,1.69.59,3.38,1.18,5.07,1.77Z" fill="#010101"/><path d="m105.71,103.9c14.58,2.38,1.26,5.72.46,8.9-2.27,9.06-7.94,17.39-5.99,27.47.18.95-2.62,2.47-4.04,3.73-.09-1.38-.18-2.75-.26-4.13.72-12.69,4.01-24.67,9.84-35.96Z" fill="#010101"/><path d="m131.97,69.92c-1.93,14.59-14.01,20.89-23.76,29.08,5.84-11.39,13.74-21.11,23.76-29.08Z" fill="#010101"/><path d="m155.99,54.97c-.58,7.12-4.21,8.19-9.98,5.03l9.98-5.03Z" fill="#010101"/><path d="m141,63.2c-1.45,3.6-2.22,8.15-7.99,5.81,2.66-1.94,5.32-3.87,7.99-5.81Z" fill="#010101"/><path d="m497,660.83c-.52-4.19.99-5.94,5.53-5.91,29.3.16,58.61.03,87.91.21,1.86.01,3.71,1.87,5.56,2.87,0,.94,0,1.89,0,2.83-33,0-66,0-99,0Z" fill="#010101"/><path d="m596,660.83c0-.94,0-1.89,0-2.83,4.47-.67,8.93-1.83,13.41-1.92,24.53-.51,49.06-.75,73.59-1.08.66,1.94,1.32,3.89,1.98,5.83-29.66,0-59.32,0-88.98,0Z" fill="#010101"/><path d="m362.72,354.13c40.03-8.55,75.16,37.83,73.84,80.48-2.22,71.63-78.45,99.29-131.43,68.3-35.42-20.72-47.02-80.99-24.25-115.95,10.61-16.28,23.43-28.4,42.19-33.39,2.92-.78,6.69,1.67,10.07,2.63-15.65,4.6-29.31,12.38-39.96,24.98-2.07,2.93-4.15,5.86-6.22,8.79-3.69,9.65-7.38,19.29-11.07,28.94,0,8.39.02,16.78.03,25.18,6.83,36.54,39.16,66.93,70,65.79,6.37-.28,12.74-.56,19.1-.84,13.01-2.56,25.2-7.08,35.9-15.13,1.98-1.68,3.96-3.36,5.94-5.03,12.41-11.83,19.61-26.42,22.9-43.09.04-9.57.09-19.14.13-28.71-10.28-36.8-36.28-61.03-66.78-62.21-.1-.25-.23-.5-.38-.72Z" fill="#010101"/><path d="m108,662.83c.33-.94.67-1.89,1-2.83,35.88-.3,71.75-.64,107.63-.73,1.44,0,2.89,2.33,4.34,3.57-37.66,0-75.31,0-112.97,0Z" fill="#010101"/><path d="m340,354.85c-2.29.45-4.58.9-6.88,1.35.88-2.05,1.77-4.1,2.65-6.14,1.41,1.6,2.82,3.19,4.23,4.79Z" fill="#010101"/>
<path d="m363.11,354.86c-5.4,0-10.8,0-16.2.01,5.27-.25,10.54-.49,15.81-.74.15.23.28.47.38.73Z" fill="#7c7c7c"/><path d="m608,306c2.33,1.33,4.67,2.67,7,4-2.33-1.33-4.67-2.67-7-4Z" fill="#010101"/><path d="m429.76,445.78c.04-9.57.09-19.14.13-28.71-.04,9.57-.09,19.14-.13,28.71Z" fill="#666"/><path d="m275.89,418.9c.06,4.03.12,8.07.19,12.1,0,.67,0,1.33,0,2l-.16,11.08c0-8.39-.02-16.78-.03-25.18Z" fill="#969696"/><path d="m345.92,509.86c6.37-.28,12.74-.56,19.1-.84-6.37.28-12.74.56-19.1.84Z" fill="#8f8f8f"/><path d="m293.18,381.17c-2.07,2.93-4.15,5.86-6.22,8.79,2.07-2.93,4.15-5.86,6.22-8.79Z" fill="#6c6c6c"/><path d="m400.92,493.9c1.98-1.68,3.96-3.36,5.94-5.03-1.98,1.68-3.96,3.36-5.94,5.03Z" fill="#7e7e7e"/>
</svg>
</div>
<div class="slide">
<p class='title'>
There are no specific religious doctrines pertaining to home burial.</p>
<p >Some religions prefer cremation, or burial in a specific location, like a church graveyard. </p>
<svg viewBox="0 0 700 500" >
<!-- four paths-->
<path id="god" d="M495,184.8h-48.7C441.8,136.6,400.4,98,350,98s-91.8,38.1-96.9,86.8h-48.7c-26.3,0-48.2,21.3-48.2,48.2v49.3
c0.6,5.6,5,10.1,10.6,10.1c5.6,0,10.1-4.5,10.1-10.1V233c0-15.1,12.3-27.4,27.4-27.4h48.7c5,48.7,46.5,86.8,96.9,86.8
s91.8-38.1,96.9-86.8h48.7c15.1,0,27.4,12.3,27.4,27.4v49.3c0,5.6,4.5,10.1,10.1,10.1c5.6,0,10.1-4.5,10.1-10.1V233
C543.2,206.6,521.9,184.8,495,184.8z M350,272.2c-42.6,0-76.7-34.7-76.7-76.7s34.2-76.7,76.7-76.7c42.6,0,76.7,34.7,76.7,76.7
C426.7,237.4,392.6,272.2,350,272.2z"/>
<path id="p3" d="M604.2,289.6L604.2,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6h0c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l1.1,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C616.6,295.8,611,289.6,604.2,289.6z"/>
<path id="p2" d="M421.1,289.6L421.1,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-4.7c12-3.4,21-14.5,21-27.5
c0-15.7-12.9-28.6-28.6-28.6c-15.7,0-28.6,12.9-28.6,28.6c0,13.1,8.9,24.2,21,27.5h-3.6c-39.8,0-45.4-63.8-45.4-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8c-6.7,0.6-12.3,6.7-11.8,13.4c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C433.4,295.8,427.8,289.6,421.1,289.6z"/>
<path id="p1" d="M238,289.6L238,289.6c-6.7-0.6-12.9,5-13.4,11.8c0,0.6-5,66.1-45.4,66.1h-3c11.1-3.9,19.2-14.6,19.2-27
c0-15.7-12.9-28.6-28.6-28.6s-28.6,12.9-28.6,28.6c-0.4,12.4,7.5,23.1,18.9,27h-1.6c-40.9,0-45.9-63.8-46.5-66.1
c-0.6-6.7-6.7-12.3-13.4-11.8C89,290.2,83.4,296.3,84,303c0,2.8,5,68.9,48.7,85.7l2.2,54.9c0,4.5,3.9,7.8,8.4,7.8h46.5
c4.5,0,8.4-3.4,8.4-7.8l2.2-54.9c43.7-17.4,48.7-82.9,48.7-85.7C249.8,295.8,244.7,289.6,238,289.6z"/>
</svg>
</div>
<div class="slide">
<p class='title'>
There are very strict rules on where one can be buried on their own land. </p>
<p>In addition to the previously mentioned restrictions, 10 states require the services of a licensed Funeral Director for home burial.</p>
<svg class="globe" viewBox="0 0 67.81 67.81">
<path id="globe" d="m5.65,20.67c1.41.31,2.93.68,4.22,1.1.91.29,1.77.62,2.44.99.33.18.67.41.95.69.27.27.62.75.62,1.41,0,.55-.15,1.38-.29,2.18,0,.04-.02.09-.02.13-.16.91-.35,1.96-.48,3.06-.26,2.27-.2,4.47.63,5.98.84,1.53,2.71,2.85,4.7,3.94.79.43,1.55.8,2.22,1.13.14.07.28.14.42.21.37.18.72.36,1,.52.14.08.29.17.42.27.08.06.2.15.32.27.05.01.11.04.22.07h.03c.34.11.91.29,1.48.68,1.27.86,2.19,2.46,2.49,5.43.25,2.37,1.23,3.71,2.39,4.62.96.75,2,1.2,3.06,1.65.33.14.67.29,1,.44,1.26.58,2.62,1.31,3.61,2.1.49.39.98.88,1.29,1.45.33.61.5,1.4.15,2.21-.27.64-.81.95-1.21,1.1-.39.15-.82.21-1.18.23-.48.04-1.08.04-1.65.03-.26,0-.52,0-.76,0-.83.01-1.58.07-2.19.23-.6.16-.93.4-1.11.69-.16.25-.33.71-.5,1.37,1.3.17,2.63.25,3.99.25,9.9,0,18.73-4.61,24.44-11.81-.94-.93-2.13-1.45-3.72-1.2-1.65.26-2.89.17-3.85-.27-1.01-.46-1.49-1.2-1.78-1.68-.04-.06-.07-.12-.1-.16-.06-.1-.1-.17-.14-.22-.13.02-.44.08-1.04.34-1.45.63-2.79,1.89-3.9,3.32-1.1,1.42-1.87,2.88-2.24,3.76-.23.55-.79.88-1.38.83s-1.08-.49-1.2-1.07c-.1-.49-.37-1.32-.8-2.12-.44-.82-.97-1.43-1.53-1.7-.4-.2-.68-.24-.89-.25-.21,0-.37.02-.63.06-.07.01-.14.02-.22.03-.35.05-.93.13-1.57-.1-.65-.24-1.15-.71-1.57-1.32-.83-1.18-1.21-2.55-1.51-3.78-.05-.19-.09-.37-.14-.55-.27-1.09-.52-2.11-.96-3.14-.49-1.14-.28-2.31.19-3.27.46-.95,1.22-1.81,2.09-2.48,1.65-1.27,4.22-2.25,6.43-1.14,1.06.53,1.9.7,2.79.88.23.05.47.1.71.15.57.13,1.2.31,1.82.67.64.37,1.19.89,1.67,1.62.27.41.53.79.77,1.12.1-.7.17-1.74.17-3.22,0-4.21,1-7.37,2.32-9.5.66-1.06,1.41-1.88,2.17-2.44.73-.53,1.63-.93,2.54-.83.18.02.65-.01,1.33-.18.64-.16,1.35-.41,1.98-.71.65-.31,1.09-.63,1.31-.88,0,0,.01-.01.02-.02-.12-.14-.35-.34-.76-.6-.5-.31-1.1-.6-1.76-.93-.06-.03-.12-.06-.18-.09-.68-.33-1.46-.72-2.07-1.16-.54-.39-1.38-1.13-1.38-2.27,0-.66.21-1.39.38-1.97.04-.14.08-.27.12-.4.15-.5.29-.96.39-1.44.27-1.25.11-1.81-.34-2.15-1.07-.81-2.99-2.04-5.15-3.01-2.19-.99-4.46-1.64-6.3-1.48-2.05.18-3.2.66-3.81,1.11-.49.37-.64.73-.68,1.02,0,0,0,0,0,.01.08.13.23.3.46.54.2.2.41.42.66.66.04.04.07.07.11.11.28.28.59.58.88.9.53.58,1.21,1.4,1.4,2.37.1.54.06,1.13-.23,1.69-.28.54-.73.96-1.25,1.28-1.7,1.06-5.09,2.34-8.05,2.98-1.47.32-2.98.51-4.18.37-.6-.07-1.26-.24-1.81-.64-.62-.46-.98-1.15-.98-1.96,0-.45-.02-1.04-.03-1.69-.03-1.32-.08-2.92-.01-4.27.05-1.02.16-2.08.43-2.92.23-.71.83-1.96,2.24-1.99.03-.03.1-.08.19-.21.23-.3.46-.76.73-1.35.05-.1.09-.21.14-.33.2-.46.43-.98.66-1.38.15-.25.36-.58.66-.83.31-.27.82-.56,1.48-.46.01,0,.07,0,.2-.02.19-.03.43-.08.74-.15.28-.07.58-.15.92-.23.03,0,.07-.02.1-.03.15-.04.3-.08.46-.12-11.63.74-21.52,7.86-26.23,17.89h0ZM42.49,3.91c-1.07.43-2.1.77-2.97.99-.49.12-.97.21-1.39.25-.37.03-.92.04-1.41-.18-.21-.1-.62-.16-1.3-.11-.65.05-1.4.2-2.17.38-.38.09-.76.19-1.13.29-.03,0-.07.02-.1.03-.33.09-.66.17-.96.24-.33.08-.66.15-.96.2-.12.02-.27.04-.42.05-.14.25-.28.56-.46.96-.06.14-.12.28-.2.44-.26.58-.6,1.3-1.05,1.88-.39.51-1.03,1.13-1.95,1.25-.02.04-.03.09-.05.15-.16.47-.26,1.23-.3,2.2-.06,1.27-.02,2.63.01,3.88.02.63.03,1.23.04,1.79.09.03.22.06.39.08.75.09,1.91-.03,3.29-.33,2.76-.6,5.83-1.79,7.18-2.63.14-.09.21-.15.25-.19-.05-.16-.24-.49-.72-1.02-.24-.26-.5-.52-.78-.79-.04-.03-.07-.07-.11-.1-.24-.24-.5-.49-.73-.73-.26-.27-.54-.59-.76-.92-.2-.3-.47-.79-.47-1.38,0-1.21.55-2.41,1.76-3.32,1.16-.88,2.88-1.45,5.2-1.65,2.54-.22,5.32.66,7.65,1.71,2.36,1.07,4.45,2.41,5.66,3.32,1.83,1.38,1.67,3.48,1.37,4.89-.13.59-.31,1.19-.46,1.7-.04.12-.07.23-.1.34-.15.52-.23.85-.26,1.06.04.04.12.11.25.21.39.28.95.57,1.67.92.06.03.13.06.19.09.63.31,1.35.66,1.98,1.05.66.41,1.44.99,1.85,1.82.59,1.17.08,2.24-.51,2.9-.57.64-1.38,1.14-2.16,1.52-.8.39-1.69.7-2.5.9-.77.19-1.61.32-2.29.25,0,0,0,0,0,0-.04,0-.26.05-.64.32-.43.32-.96.86-1.47,1.68-1.01,1.63-1.91,4.28-1.91,8.07,0,2.02-.12,3.48-.36,4.46-.12.49-.3.98-.6,1.37-.33.44-.86.8-1.54.8-.59,0-1.06-.27-1.34-.49-.3-.23-.57-.51-.8-.78-.44-.52-.88-1.18-1.25-1.73l-.02-.04c-.28-.41-.53-.63-.78-.78-.26-.15-.58-.26-1.06-.37-.16-.04-.35-.07-.54-.11-.91-.18-2.16-.43-3.57-1.14-.84-.42-2.26-.15-3.56.86-.61.47-1.06,1.02-1.3,1.52-.24.5-.22.82-.13,1.02.54,1.26.85,2.52,1.11,3.6.04.17.08.34.12.51.31,1.24.6,2.16,1.1,2.88.14.2.24.29.28.32.03,0,.11,0,.25-.03.04,0,.08-.01.12-.02.27-.04.72-.12,1.2-.1.61.02,1.28.16,2.03.54,1.23.61,2.08,1.72,2.64,2.72.34-.54.73-1.1,1.15-1.65,1.24-1.6,2.91-3.26,4.96-4.15,1.13-.49,2.21-.77,3.17-.39.5.2.83.53,1.05.82.16.21.31.47.41.63.02.03.03.06.05.08.21.35.34.5.57.61.28.13.92.28,2.31.06,2.46-.38,4.35.44,5.75,1.67,3.25-4.92,5.15-10.83,5.15-17.17,0-14.25-9.55-26.27-22.61-30h0Zm-8.18,46.39s0,0,0,0c0,0,0,0,0,0ZM26.07,10.43s0,.01-.02.03c.01-.03.02-.03.02-.03Zm-.5-2.52s0,0,.01,0c0,0-.01,0-.01,0Zm10.34,2.47s0,0,0,0c0,0,0,0,0,0Zm10.42,31.99s0,0-.01,0c0,0,.01,0,.01,0Zm-19.11,22.02c.22-.92.51-1.77.9-2.38.67-1.04,1.7-1.57,2.67-1.84.96-.27,2-.32,2.88-.33.36,0,.68,0,.97,0,.35,0,.67,0,.95,0-.07-.06-.14-.13-.23-.19-.72-.58-1.84-1.19-3.05-1.75-.22-.1-.47-.21-.75-.33-1.09-.47-2.58-1.1-3.85-2.1-1.7-1.33-3.09-3.32-3.42-6.47-.26-2.55-.97-3.23-1.31-3.47-.22-.15-.44-.22-.79-.33,0,0-.02,0-.03,0-.15-.05-.37-.11-.58-.21-.21-.09-.5-.25-.75-.54-.03-.02-.08-.05-.15-.09-.2-.11-.48-.26-.85-.44-.12-.06-.26-.13-.4-.19-.67-.33-1.49-.73-2.35-1.2-2.01-1.1-4.52-2.73-5.77-5.01-1.27-2.3-1.21-5.25-.94-7.59.14-1.2.34-2.32.5-3.22h0c.12-.68.2-1.15.24-1.48-.04-.03-.09-.05-.15-.09-.43-.24-1.1-.5-1.95-.78-1.34-.43-2.97-.82-4.46-1.13-1.22,3.33-1.88,6.93-1.88,10.69,0,14.94,10.5,27.43,24.53,30.48h0Zm-6.33-19.92s0,0,0,0c0,0,0,0,0,0ZM2.48,21.15C7.52,8.75,19.69,0,33.91,0c3.06,0,6.03.41,8.86,1.17,14.43,3.89,25.05,17.07,25.05,32.74,0,7.54-2.46,14.51-6.63,20.14-6.17,8.35-16.09,13.76-27.28,13.76-1.99,0-3.94-.17-5.84-.5C12.12,64.54,0,50.64,0,33.91c0-4.51.88-8.81,2.48-12.75h0Z" fill-rule="evenodd"/>
</svg>
</div>
<div class="slide">
<p class="title">If you're interested in Home Burial, you really need to do your homework ahead of time.</p>
<p>Every state is different, as is every county regulation. Assume you can do it, but also assume you'll need to plan for it.</p>
</div>
<div class="slide">
<div class="faq">
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false"><span class="accordion-title">Exactly how involved are the family and friends again?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>You wash and dress the body, place it in a coffin, and bury it.</p>
<p>While this may sound terrifying, those who participate report an overwhelming feeling of closure, especially when compared to standard burial.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false"><span class="accordion-title">How is the body preserved without embalming?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Dry ice can preserve a body for days before it's time for a ceremony.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false"><span class="accordion-title">How often does this actually happen?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>It is a frequent choice of those with terminal illnesses who are able to plan their own demise.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false"><span class="accordion-title">Where can I find the laws pertaining to Home Burial in my state?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>Here's a couple of <a href="https://www.nolo.com/legal-encyclopedia/home-funeral-laws" target="_blank">handy</a> <a href="https://www.romemonuments.com/home-burials" target="_blank">resources</a>.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false"><span class="accordion-title">Is this a new practice?</span><span class="icon" aria-hidden="true"></span></button>
<div class="accordion-content">
<p>It's the oldest burial practice known.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- COMPOSTING -->
<section class="section" data-anchor="composting">
<div class="slide">
<h2>Human Composting</h2>