-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2314 lines (2304 loc) · 114 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<meta
name="robots"
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"
/>
<!-- This site is optimized with the Yoast SEO plugin v20.12 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Facing Life - Multimedia Documentary</title>
<meta
name="description"
content="Eight people reentering society after serving life sentences in California prisons. Created by Pendarvis Harshaw and Brandon Tauszik."
/>
<link rel="canonical" href="index.html" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Facing Life | by Pendarvis Harshaw & Brandon Tauszik"
/>
<meta
property="og:description"
content="Multimedia documentary project profiling eight people reentering society after serving life sentences in California prisons."
/>
<meta property="og:url" content="https://facing.life/" />
<meta property="og:site_name" content="Facing Life" />
<meta
property="article:modified_time"
content="2022-12-16T22:24:16+00:00"
/>
<meta
property="og:image"
content="https://facing.life/wp-content/uploads/2022/04/facinglife_website_social_v2.jpg"
/>
<meta property="og:image:width" content="1989" />
<meta property="og:image:height" content="1119" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Facing Life | by Pendarvis Harshaw & Brandon Tauszik"
/>
<meta
name="twitter:description"
content="Multimedia documentary project profiling eight people reentering society after serving life sentences in California prisons."
/>
<meta
name="twitter:image"
content="https://facing.life/wp-content/uploads/2022/04/facinglife_website_social_v2.jpg"
/>
<script defer type="application/ld+json" class="yoast-schema-graph">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebPage",
"@id": "https://facing.life/",
"url": "https://facing.life/",
"name": "Facing Life - Multimedia Documentary",
"isPartOf": { "@id": "https://facing.life/#website" },
"about": { "@id": "https://facing.life/#organization" },
"primaryImageOfPage": {
"@id": "https://facing.life/#primaryimage"
},
"image": { "@id": "https://facing.life/#primaryimage" },
"thumbnailUrl": "https://facing.life/wp-content/uploads/2022/04/facinglife_website_social.jpg",
"datePublished": "2020-03-02T20:07:05+00:00",
"dateModified": "2022-12-16T22:24:16+00:00",
"description": "Eight people reentering society after serving life sentences in California prisons. Created by Pendarvis Harshaw and Brandon Tauszik.",
"breadcrumb": { "@id": "https://facing.life/#breadcrumb" },
"inLanguage": "en-US",
"potentialAction": [
{ "@type": "ReadAction", "target": ["https://facing.life/"] }
]
},
{
"@type": "ImageObject",
"inLanguage": "en-US",
"@id": "https://facing.life/#primaryimage",
"url": "https://facing.life/wp-content/uploads/2022/04/facinglife_website_social.jpg",
"contentUrl": "https://facing.life/wp-content/uploads/2022/04/facinglife_website_social.jpg",
"width": 2346,
"height": 1877
},
{
"@type": "BreadcrumbList",
"@id": "https://facing.life/#breadcrumb",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home" }
]
},
{
"@type": "WebSite",
"@id": "https://facing.life/#website",
"url": "https://facing.life/",
"name": "Facing Life",
"description": " Eight stories of life after life in California’s prisons.",
"publisher": { "@id": "https://facing.life/#organization" },
"inLanguage": "en-US"
},
{
"@type": "Organization",
"@id": "https://facing.life/#organization",
"name": "Facing Life",
"url": "https://facing.life/",
"logo": {
"@type": "ImageObject",
"inLanguage": "en-US",
"@id": "https://facing.life/#/schema/logo/image/",
"url": "https://facing.life/wp-content/uploads/2022/04/a67151141b087be2791ba27eaa35cade-response-content-.jpg",
"contentUrl": "https://facing.life/wp-content/uploads/2022/04/a67151141b087be2791ba27eaa35cade-response-content-.jpg",
"width": 1600,
"height": 1280,
"caption": "Facing Life"
},
"image": { "@id": "https://facing.life/#/schema/logo/image/" }
}
]
}
</script>
<!-- / Yoast SEO plugin. -->
<link
rel="alternate"
type="application/rss+xml"
title="Facing Life » Feed"
href="feed/index.html"
/>
<link
rel="alternate"
type="application/rss+xml"
title="Facing Life » Comments Feed"
href="comments/feed/index.html"
/>
<link
rel="icon"
href="wp-content/uploads/favicon/favicon.png"
type="image/png"
/>
<link
rel="stylesheet"
type="text/css"
href="index.css"
/>
<script
src="wp-content/themes/astra/assets/js/minified/flexibility.min.js"
id="astra-flexibility-js"
></script>
<script id="astra-flexibility-js-after">
flexibility(document.documentElement);
</script>
<script
defer
src="wp-includes/js/jquery/jquery.min.js"
id="jquery-core-js"
></script>
<script
defer
src="wp-includes/js/jquery/jquery-migrate.min.js"
id="jquery-migrate-js"
></script>
<link rel="https://api.w.org/" href="wp-json/" />
<link
rel="alternate"
type="application/json"
href="wp-json/wp/v2/pages/116"
/>
<link
rel="EditURI"
type="application/rsd+xml"
title="RSD"
href="https://facing.life/xmlrpc.php?rsd"
/>
<link
rel="wlwmanifest"
type="application/wlwmanifest+xml"
href="wp-includes/wlwmanifest.xml"
/>
<meta name="generator" content="WordPress 6.2.2" />
<link rel="shortlink" href="index.html" />
<link
rel="alternate"
type="application/json+oembed"
href="wp-json/oembed/1.0/embed"
/>
<link
rel="alternate"
type="text/xml+oembed"
href="wp-json/oembed/1.0/embed"
/>
<meta
name="generator"
content="Elementor 3.15.0; features: e_dom_optimization, e_optimized_assets_loading, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"
/>
</head>
<body
itemtype="https://schema.org/WebPage"
itemscope="itemscope"
class="home page-template page-template-elementor_header_footer page page-id-116 ast-desktop ast-page-builder-template ast-no-sidebar astra-2.3.1 ast-header-custom-item-inside ast-single-post ast-inherit-site-logo-transparent elementor-page-109 elementor-default elementor-template-full-width elementor-kit-13 elementor-page elementor-page-116 astra-addon-2.2.5"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-dark-grayscale">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 0.49803921568627" />
<feFuncG type="table" tableValues="0 0.49803921568627" />
<feFuncB type="table" tableValues="0 0.49803921568627" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-grayscale">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-purple-yellow">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR
type="table"
tableValues="0.54901960784314 0.98823529411765"
/>
<feFuncG type="table" tableValues="0 1" />
<feFuncB
type="table"
tableValues="0.71764705882353 0.25490196078431"
/>
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-blue-red">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 0.27843137254902" />
<feFuncB
type="table"
tableValues="0.5921568627451 0.27843137254902"
/>
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-midnight">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 0" />
<feFuncG type="table" tableValues="0 0.64705882352941" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-magenta-yellow">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.78039215686275 1" />
<feFuncG type="table" tableValues="0 0.94901960784314" />
<feFuncB
type="table"
tableValues="0.35294117647059 0.47058823529412"
/>
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-purple-green">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR
type="table"
tableValues="0.65098039215686 0.40392156862745"
/>
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0.44705882352941 0.4" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs></svg
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="
visibility: hidden;
position: absolute;
left: -9999px;
overflow: hidden;
"
>
<defs>
<filter id="wp-duotone-blue-orange">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "
/>
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.098039215686275 1" />
<feFuncG type="table" tableValues="0 0.66274509803922" />
<feFuncB
type="table"
tableValues="0.84705882352941 0.41960784313725"
/>
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<div class="hfeed site" id="page">
<a class="skip-link screen-reader-text" href="#content"
>Skip to content</a
>
<div
data-elementor-type="header"
data-elementor-id="160"
class="elementor elementor-160 elementor-location-header"
>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-3cdbe45 elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="3cdbe45"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-default">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-17e6634"
data-id="17e6634"
data-element_type="column"
>
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-62444d8 elementor-widget__width-initial elementor-fixed elementor-view-default elementor-widget elementor-widget-icon"
data-id="62444d8"
data-element_type="widget"
data-settings='{"_position":"fixed"}'
data-widget_type="icon.default"
>
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<a
class="elementor-icon elementor-animation-grow"
href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEyNDciLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"
>
<i aria-hidden="true" class="fas fa-stream"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div id="content" class="site-content">
<div class="ast-container">
<div
data-elementor-type="wp-page"
data-elementor-id="116"
class="elementor elementor-116"
>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-cdb7163 elementor-section-full_width elementor-section-height-min-height elementor-section-items-top elementor-section-height-default"
data-id="cdb7163"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b75b592"
data-id="b75b592"
data-element_type="column"
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-67a22bd elementor-widget elementor-widget-template"
data-id="67a22bd"
data-element_type="widget"
data-widget_type="template.default"
>
<div class="elementor-widget-container">
<div class="elementor-template">
<div
data-elementor-type="section"
data-elementor-id="1848"
class="elementor elementor-1848"
>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-70f792e elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="70f792e"
data-element_type="section"
data-settings='{"background_background":"classic"}'
>
<div
class="elementor-container elementor-column-gap-default"
>
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-349ad59"
data-id="349ad59"
data-element_type="column"
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-2fc4634 elementor-widget elementor-widget-heading"
data-id="2fc4634"
data-element_type="widget"
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h2
class="elementor-heading-title elementor-size-default"
>
Facing Life
</h2>
</div>
</div>
<div
class="elementor-element elementor-element-8f4119b elementor-widget elementor-widget-text-editor"
data-id="8f4119b"
data-element_type="widget"
data-widget_type="text-editor.default"
>
<div class="elementor-widget-container">
Eight stories of life after life in
California’s prisons.
</div>
</div>
<div
class="elementor-element elementor-element-02d2f75 elementor-widget elementor-widget-heading"
data-id="02d2f75"
data-element_type="widget"
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h4
class="elementor-heading-title elementor-size-default"
>
By Pendarvis Harshaw & Brandon
Tauszik
</h4>
</div>
</div>
<div
class="elementor-element elementor-element-9e0f418 elementor-nav-menu__align-center elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu"
data-id="9e0f418"
data-element_type="widget"
data-settings='{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}'
data-widget_type="nav-menu.default"
>
<div class="elementor-widget-container">
<nav
migration_allowed="1"
migrated="0"
role="navigation"
class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-none"
>
<ul
id="menu-1-9e0f418"
class="elementor-nav-menu"
>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-374"
>
<a
href="essay/"
class="elementor-item"
>Essay</a
>
</li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-375"
>
<a
href="credits/"
class="elementor-item"
>Credits</a
>
</li>
</ul>
</nav>
<div
class="elementor-menu-toggle"
role="button"
tabindex="0"
aria-label="Menu Toggle"
aria-expanded="false"
>
<i
aria-hidden="true"
role="presentation"
class="elementor-menu-toggle__icon--open eicon-menu-bar"
></i
><i
aria-hidden="true"
role="presentation"
class="elementor-menu-toggle__icon--close eicon-close"
></i>
<span class="elementor-screen-only"
>Menu</span
>
</div>
<nav
class="elementor-nav-menu--dropdown elementor-nav-menu__container"
role="navigation"
aria-hidden="true"
>
<ul
id="menu-2-9e0f418"
class="elementor-nav-menu"
>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-374"
>
<a
href="essay/"
class="elementor-item"
tabindex="-1"
>Essay</a
>
</li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-375"
>
<a
href="credits/"
class="elementor-item"
tabindex="-1"
>Credits</a
>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-ebc080e elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="ebc080e"
data-element_type="section"
data-settings='{"background_background":"classic"}'
>
<div
class="elementor-container elementor-column-gap-no"
>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6078f4f elementor-invisible"
style="cursor: pointer"
data-column-clickable="/travielle/"
data-column-clickable-blank="_self"
data-id="6078f4f"
data-element_type="column"
data-settings='{"background_background":"classic","animation":"fadeIn","animation_delay":200}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-background-overlay"
></div>
<div
class="elementor-element elementor-element-fcf0654 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="fcf0654"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h5
class="elementor-heading-title elementor-size-default"
>
<a href="travielle/">TRAVIELLE</a>
</h5>
</div>
</div>
<div
class="elementor-element elementor-element-266e7ed elementor-widget elementor-widget-video"
data-id="266e7ed"
data-element_type="widget"
data-settings='{"video_type":"hosted","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes"}'
data-widget_type="video.default"
>
<div class="elementor-widget-container">
<div
class="e-hosted-video elementor-wrapper elementor-open-inline"
>
<video
class="elementor-video"
src="wp-content/uploads/2022/04/travielle_thumb_v2.mp4"
autoplay=""
loop=""
muted="muted"
playsinline=""
controlsList="nodownload"
></video>
</div>
</div>
</div>
</div>
</div>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-46067f0 elementor-invisible"
style="cursor: pointer"
data-column-clickable="/lynn/"
data-column-clickable-blank="_self"
data-id="46067f0"
data-element_type="column"
data-settings='{"animation":"fadeIn","animation_delay":400}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-ae10644 elementor-widget elementor-widget-video"
data-id="ae10644"
data-element_type="widget"
data-settings='{"video_type":"hosted","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes"}'
data-widget_type="video.default"
>
<div class="elementor-widget-container">
<div
class="e-hosted-video elementor-wrapper elementor-open-inline"
>
<video
class="elementor-video"
src="wp-content/uploads/2022/04/lynn_thumb_v1.mp4"
autoplay=""
loop=""
muted="muted"
playsinline=""
controlsList="nodownload"
></video>
</div>
</div>
</div>
<div
class="elementor-element elementor-element-e541f66 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="e541f66"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h5
class="elementor-heading-title elementor-size-default"
>
<a href="lynn/">LYNN</a>
</h5>
</div>
</div>
</div>
</div>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-1e713cc elementor-invisible"
style="cursor: pointer"
data-column-clickable="/gary"
data-column-clickable-blank="_self"
data-id="1e713cc"
data-element_type="column"
data-settings='{"animation":"fadeIn","animation_delay":600}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-3da3b00 elementor-widget elementor-widget-video"
data-id="3da3b00"
data-element_type="widget"
data-settings='{"video_type":"hosted","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes"}'
data-widget_type="video.default"
>
<div class="elementor-widget-container">
<div
class="e-hosted-video elementor-wrapper elementor-open-inline"
>
<video
class="elementor-video"
src="wp-content/uploads/2022/04/gary_thumb_v3.mp4"
autoplay=""
loop=""
muted="muted"
playsinline=""
controlsList="nodownload"
></video>
</div>
</div>
</div>
<div
class="elementor-element elementor-element-39eee51 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="39eee51"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h5
class="elementor-heading-title elementor-size-default"
>
<a href="gary/">GARY</a>
</h5>
</div>
</div>
</div>
</div>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0055705 elementor-invisible"
style="cursor: pointer"
data-column-clickable="/fahim/"
data-column-clickable-blank="_self"
data-id="0055705"
data-element_type="column"
data-settings='{"animation":"fadeIn","animation_delay":800}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-36cfe40 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="36cfe40"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h5
class="elementor-heading-title elementor-size-default"
>
<a href="fahim/">FAHIM</a>
</h5>
</div>
</div>
<div
class="elementor-element elementor-element-18cd956 elementor-widget elementor-widget-video"
data-id="18cd956"
data-element_type="widget"
data-settings='{"video_type":"hosted","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes"}'
data-widget_type="video.default"
>
<div class="elementor-widget-container">
<div
class="e-hosted-video elementor-wrapper elementor-open-inline"
>
<video
class="elementor-video"
src="wp-content/uploads/2022/04/fahim_thumb_v1.mp4"
autoplay=""
loop=""
muted="muted"
playsinline=""
controlsList="nodownload"
></video>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-051c4f0 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="051c4f0"
data-element_type="section"
data-settings='{"background_background":"classic"}'
>
<div
class="elementor-container elementor-column-gap-no"
>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5d88579 elementor-invisible"
style="cursor: pointer"
data-column-clickable="/myra/"
data-column-clickable-blank="_self"
data-id="5d88579"
data-element_type="column"
data-settings='{"animation":"fadeIn","animation_delay":1000}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-e23c109 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="e23c109"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>
<div class="elementor-widget-container">
<h5
class="elementor-heading-title elementor-size-default"
>
<a href="myra/">MYRA</a>
</h5>
</div>
</div>
<div
class="elementor-element elementor-element-3d55864 elementor-widget elementor-widget-video"
data-id="3d55864"
data-element_type="widget"
data-settings='{"video_type":"hosted","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes"}'
data-widget_type="video.default"
>
<div class="elementor-widget-container">
<div
class="e-hosted-video elementor-wrapper elementor-open-inline"
>
<video
class="elementor-video"
src="wp-content/uploads/2022/04/myra_thumb_v1.mp4"
autoplay=""
loop=""
muted="muted"
playsinline=""
controlsList="nodownload"
></video>
</div>
</div>
</div>
</div>
</div>
<div
class="make-column-clickable-elementor elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-92b987f elementor-invisible"
style="cursor: pointer"
data-column-clickable="/jose/"
data-column-clickable-blank="_self"
data-id="92b987f"
data-element_type="column"
data-settings='{"animation":"fadeIn","animation_delay":1200}'
>
<div
class="elementor-widget-wrap elementor-element-populated"
>
<div
class="elementor-element elementor-element-77c1534 elementor-absolute elementor-invisible elementor-widget elementor-widget-heading"
data-id="77c1534"
data-element_type="widget"
data-settings='{"_animation":"fadeIn","_animation_delay":5,"_position":"absolute"}'
data-widget_type="heading.default"
>