summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/videos-1/source.html
blob: 9e407bc38143f3c9a01a6e62fdd554dbb97bfba4 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>
            How to watch the 21 best films of 2017 - Vox
        </title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
        <meta name="apple-mobile-web-app-title" content="Vox" />
        <script type="text/javascript" src="https://optimize-stats.voxmedia.com/loader.min.js?key=beb6b278a131e3b9"></script>
        <meta property="article:publisher" content="https://www.facebook.com/Vox" />
        <meta property="author" content="Alissa Wilkinson" />
        <meta property="article:author" content="http://facebook.com/alissawilkinson" />
        <meta property="article:published_time" content="2017-12-15T08:50:02-05:00" />
        <meta property="article:modified_time" content="2018-07-24T14:15:58-04:00" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bookitalic.woff2" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-book.woff2" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bolditalic.woff2" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bold.woff2" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_text_regular_italic.woff2" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_display_black.woff2" as="font" type="font/woff2" crossorigin="" />
        <meta id="chorus-fonts" data-cid="site/font_loader-1551300229_5055_12234" data-cdata="{&quot;version&quot;:&quot;9f8ee6f3bdedf804934bcc0183d202bf&quot;,&quot;fonts_catalog&quot;:[{&quot;slug&quot;:&quot;vox-balto&quot;,&quot;family&quot;:&quot;Balto&quot;,&quot;weight&quot;:&quot;400&quot;,&quot;style&quot;:&quot;italic&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bookitalic.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bookitalic.woff&quot;},{&quot;slug&quot;:&quot;vox-balto&quot;,&quot;family&quot;:&quot;Balto&quot;,&quot;weight&quot;:&quot;400&quot;,&quot;style&quot;:&quot;normal&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-book.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-book.woff&quot;},{&quot;slug&quot;:&quot;vox-balto&quot;,&quot;family&quot;:&quot;Balto&quot;,&quot;weight&quot;:&quot;600&quot;,&quot;style&quot;:&quot;italic&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bolditalic.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bolditalic.woff&quot;},{&quot;slug&quot;:&quot;vox-balto&quot;,&quot;family&quot;:&quot;Balto&quot;,&quot;weight&quot;:&quot;700&quot;,&quot;style&quot;:&quot;normal&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bold.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/baltoweb-bold.woff&quot;},{&quot;slug&quot;:&quot;vox-harriet&quot;,&quot;family&quot;:&quot;Harriet&quot;,&quot;weight&quot;:&quot;400&quot;,&quot;style&quot;:&quot;italic&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_text_regular_italic.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_text_regular_italic.woff&quot;},{&quot;slug&quot;:&quot;vox-harriet-black&quot;,&quot;family&quot;:&quot;HarrietDisplayBlack&quot;,&quot;weight&quot;:&quot;400&quot;,&quot;style&quot;:&quot;italic&quot;,&quot;woff2_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_display_black.woff2&quot;,&quot;woff_url&quot;:&quot;https://cdn.vox-cdn.com/shared_fonts/unison/vox/webfonts/harriet_display_black.woff&quot;}],&quot;font_stylesheets&quot;:[&quot;https://fonts.voxmedia.com/unison/stylesheets/vox.0e5fbdb944cfd2ebf347dcc8f8246d7b.css&quot;],&quot;font_tracker_stylesheets&quot;:[],&quot;typekit_ids&quot;:[],&quot;headline_balance_div_classes&quot;:&quot;.c-page-title,.c-entry-summary,.c-entry-box__title,.c-entry-box--compact__title,.c-entry-box--compact__dek,.c-rock-list__entry-title&quot;,&quot;headline_balance_fraction&quot;:0.5}" />
        <script>
        <![CDATA[
        var chorusInitQueue=[],volume_embed_host="https://volume.vox-cdn.com";var Chorus=Chorus||{};Chorus.windowLoaded=!1,Chorus.AddScript=function(t,e){var o=document.createElement("script");o.async=!0,o.type="text/javascript",o.src=t,"function"==typeof e&&(o.onload=e);var a=document.getElementsByTagName("script")[0];return a.parentNode.insertBefore(o,a),o},Chorus.ready=function(t){"loading"!=document.readyState?t():document.addEventListener?document.addEventListener("DOMContentLoaded",t):document.attachEvent("onreadystatechange",function(){"loading"!=document.readyState&&t()})},Chorus.OnLoad=function(t){if(Chorus.windowLoaded=!0)return void t();var e=window.onload;"function"!=typeof window.onload?window.onload=t:window.onload=function(){e(),t()}},Chorus.OnLoad(function(){Chorus.windowLoaded=!0});var dataLayer=dataLayer||[];Chorus.OnLoad(function(){var t;void 0!==navigator.doNotTrack?t=navigator.doNotTrack:void 0!==window.doNotTrack?t=window.doNotTrack:void 0!==navigator.msDoNotTrack&&(t=navigator.msDoNotTrack),t=void 0!==t?/1|yes|true/.test(String(t).toLowerCase())?"true":"false":"undefined";var e={DNT:t};dataLayer.push(e)});var VoxMediaFontLoader=function(t){function e(t,e){var o=window.performance;if(o&&o.mark&&o.measure){var a=t.toLocaleLowerCase().replace(/\W+/g,"_")+(e?"_"+e:"");o.mark(a),o.measure(a+"_time","navigationStart",a)}}function o(){s.classList.add(c),e("fonts_success")}function a(){s.classList.add(c),e("fonts_fail")}function n(t){var o=[t.family,t.style,t.weight,"loaded"].join(" ");e(o)}function r(t){var e=u.font_stylesheets||[];t&&(e=e.filter(function(e){return!e.match(t)})),e.forEach(i)}function i(e){var o=t.createElement("link");o.href=e,o.rel="stylesheet",o.media="all",f.parentNode.insertBefore(o,f)}function d(e){var o,a=t,n=a.documentElement,r=setTimeout(function(){n.className=n.className.replace(/\bwf-loading\b/g,"")+" wf-inactive"},e.scriptTimeout),i=a.createElement("script"),d=!1,c=a.getElementsByTagName("script")[0];n.className+=" wf-loading",i.src="https://use.typekit.net/"+e.kitId+".js",i.async=!0,i.onload=i.onreadystatechange=function(){if(o=this.readyState,!(d||o&&"complete"!=o&&"loaded"!=o)){d=!0,clearTimeout(r);try{Typekit.load(e)}catch(t){}}},c.parentNode.insertBefore(i,c)}var c="fonts-loaded",s=t.documentElement,f=t.getElementById("chorus-fonts");if(f){var u=JSON.parse(f.getAttribute("data-cdata"));t.fonts?(r("voxmedia.com"),u.fonts_catalog.forEach(function(e){if(e.woff2_url||e.woff_url){var o=[e.woff2_url,e.woff_url].filter(function(t){return t}).map(function(t){return"url("+t+")"}).join(", "),a=new FontFace(e.family,o,{weight:e.weight,style:e.style});t.fonts.add(a),a.load().then(n)}}),t.fonts.ready.then(o,a)):r(),u.typekit_ids.forEach(function(t){d({kitId:t,scriptTimeout:3e3,async:!0})}),u.font_tracker_stylesheets.forEach(i)}};VoxMediaFontLoader(document);
        ]]>
        </script>
        <script class="kxint" type="text/javascript">
        //<![CDATA[
        window.Krux||((Krux=function(){Krux.q.push(arguments);}).q=[]);
        (function(){
        function retrieve(e){var r,o="kxvoxmedia_"+e;return window.localStorage?window.localStorage[o]||"":navigator.cookieEnabled?(r=document.cookie.match(o+"=([^;]*)"),r&&unescape(r[1])||""):""}Krux.user=retrieve("user"),Krux.segments=retrieve("segs")&&retrieve("segs").split(",")||[];
        })();
        //]]>
        </script>
        <script>
        <![CDATA[
        dataLayer = [{"Network":"vox","Community":"vox","GA Primary ID":"UA-48698701-1","GA CrossDomains":"vox.com","Content ID":"16515179","Story Word Count":3472,"Entry Groups":"front-page:movies:culture:awards-season:2017-in-review","Hidden Groups":"Category—Evergreen","Author":"Alissa Wilkinson","Last Time Updated":"2018-07-24 14:16","Hour of Update":"14","Publish Date":"2017-12-15 08:50","Hour of Publish":"08","Demand Post":"no","All Chorus Categories":"vox:vox:front-page:movies:culture:awards-season:2017-in-review:Category—Evergreen","Content Type":"article","chartbeat_domain":"vox.com","chartbeat_zone":"172968584/vox/vox.com/2017-in-review","chartbeat_authors":"Alissa Wilkinson","Logged in Status":"Logged Out"}];
        ]]>
        </script><!-- Google Tag Manager -->

        <script>
        <![CDATA[
        (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-W8JKW6');
        ]]>
        </script><!-- End Google Tag Manager -->

        <script>
        <![CDATA[
        var concertAdsQueue = concertAdsQueue || [];

        CONCERT_ADS_CONFIG = {"production":true,"slug":"/172968584/vox/vox.com/2017-in-review","dfpVariables":{"network":["vox"],"affiliation":["general"],"unison":[true],"entry_id":[16515179],"entry_type":["article"],"entry_slug":["2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch"],"entry_author":["Alissa Wilkinson"],"entry_group":["front-page","movies","culture","awards-season","2017-in-review","category-evergreen"],"hub_page":["culture","2017-in-review"],"page_type":["interior_page"],"keywords":"how to watch the best films of vox"},"isUnison":true,"is_unison":true,"prebid":{"enabled":false,"timeout":1000,"defaultConfig":{"openx":{"delDomain":"sbnationbidder-d.openx.net"},"rubicon":{"accountId":7470,"position":"btf"},"rubiconLite":{"accountId":18288,"siteId":193902,"sizes":[213,270,271,272],"position":"btf"},"consumable":{"networkId":9969,"siteId":1039096}},"prelude":{"trustx":{"uid":2663}},"reskin":{"trustx":{"uid":2664}},"desktop_leaderboard_variable":{"trustx":{"uid":2665}},"medium_rectangle_variable":{"trustx":{"uid":2666}},"btf_medium_rectangle_variable":{"trustx":{"uid":2668}},"desktop_article_medrec_dynamic":{"trustx":{"uid":2669}},"btf_leaderboard_variable":{"trustx":{"uid":2670}},"native_ad_latest":{"trustx":{"uid":2671}},"native_ad_ymal_link":{"trustx":{"uid":2672}},"mobile_leaderboard":{"trustx":{"uid":2673}},"mobile_article_body":{"trustx":{"uid":2674}},"native_ad_mobile":{"trustx":{"uid":2675}},"mobile_article_body_med_rec_dynamic":{"trustx":{"uid":2676}},"mobile_footer":{"trustx":{"uid":2677}},"tablet_leaderboard":{"trustx":{"uid":2678}},"tablet_medium_rectangle":{"trustx":{"uid":2679}},"tablet_btf_leaderboard":{"trustx":{"uid":2680}},"native_ad_content_link":{"trustx":{"uid":2681}},"hub_river_leaderboard":{"trustx":{"uid":2682}},"hub_river_med_rec":{"trustx":{"uid":2684}},"mobile_med_rec_athena":{"trustx":{"uid":2685}}},"slots":[{"name":"editorially_placed_athena_mobile","className":"m-ad__editorially_placed_athena","prebidName":"editorially_placed_athena","selector":".m-ad.m-ad__editorial-athena-placement","sizes":[[1030,590],[325,508],[325,203],[325,236],[325,204]],"holdSize":[300,500],"filters":{"viewportWidth":{"max":727}}},{"name":"editorially_placed_athena_desktop","className":"m-ad__editorially_placed_athena","prebidName":"editorially_placed_athena","selector":".m-ad.m-ad__editorial-athena-placement","sizes":[[1030,590],{"size":[1060,610],"filters":{"containerWidth":{"min":1060}}},{"size":[620,366],"filters":{"containerWidth":{"max":1059}}},{"size":[1060,619],"filters":{"containerWidth":{"min":1060}}},{"size":[1060,694],"filters":{"containerWidth":{"min":1060}}}],"holdSize":[728,295],"filters":{"viewportWidth":{"min":728}}},{"name":"editorially_placed_leaderboard","selector":".m-ad.m-ad__editorial-leaderboard-placement","sizes":[[728,90]],"holdSize":[728,90],"filters":{"viewportWidth":{"min":728}}},{"name":"native_quicklistings","selector":".l-hub-page .river-segment-0 .c-compact-river__entry:nth-child(2), .l-hub-page .river-segment-0 .c-compact-river__entry:nth-child(6), .l-hub-page .river-segment-0 .c-compact-river__entry:nth-child(8), .l-hub-page .river-segment-0 .c-compact-river__entry:nth-child(10)","sizes":["fluid"],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"matchDomain":{"domains":"curbed.com, atlanta.curbed.com, austin.curbed.com, boston.curbed.com, chicago.curbed.com, detroit.curbed.com, hamptons.curbed.com, la.curbed.com, miami.curbed.com, nola.curbed.com, ny.curbed.com, philly.curbed.com, sf.curbed.com, seattle.curbed.com, dc.curbed.com"}}},{"name":"native_quicklistings_article","selector":".l-segment .l-segment .c-compact-river__entry","sizes":["fluid"],"maxSlots":1,"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"insertion":"after","filters":{"matchDomain":{"domains":"curbed.com, atlanta.curbed.com, austin.curbed.com, boston.curbed.com, chicago.curbed.com, detroit.curbed.com, hamptons.curbed.com, la.curbed.com, miami.curbed.com, nola.curbed.com, ny.curbed.com, philly.curbed.com, sf.curbed.com, seattle.curbed.com, dc.curbed.com"}}},{"name":"prelude","selector":".l-root","sizes":[[1400,600]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"allowSiblings":true,"filters":{"viewportWidth":{"min":881},"deviceType":"desktop"}},{"name":"reskin","selector":".l-root","sizes":[[2,2]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"viewportWidth":{"min":1280},"hideIfPresent":{"selector":".l-feature, .c-maps-hub"}}},{"name":"desktop_leaderboard_variable","selector":".l-header","sizes":[[728,90],[970,250],[970,90],[1020,90]],"holdSize":[728,90],"insertion":"after","filters":{"viewportWidth":{"min":881},"hideIfPresent":{"selector":".l-feature"}}},{"name":"tablet_leaderboard","selector":".l-header","sizes":[[728,90]],"holdSize":[728,90],"insertion":"after","filters":{"viewportWidth":{"min":729,"max":880}}},{"name":"mobile_leaderboard_hub","className":"m-ad__mobile_leaderboard","prebidName":"mobile_leaderboard","selector":".l-hub-page .l-header","sizes":[[320,50],[300,250]],"holdSize":[300,250],"insertion":"after","maxSlots":1,"filters":{"viewportWidth":{"max":728}}},{"name":"mobile_leaderboard_group","className":"m-ad__mobile_leaderboard","prebidName":"mobile_leaderboard","selector":".l-group-page .l-header","sizes":[[320,50]],"holdSize":[320,50],"insertion":"after","maxSlots":1,"filters":{"viewportWidth":{"max":728}}},{"name":"package_cover_ad","selector":".c-package-subnav","sizes":[[728,90],[970,250],[970,90],[1020,90],[1030,590],{"size":[1060,610],"filters":{"containerWidth":{"min":1060}}},{"size":[620,366],"filters":{"containerWidth":{"max":1059}}},{"size":[1060,619],"filters":{"containerWidth":{"min":1060}}},{"size":[1060,694],"filters":{"containerWidth":{"min":1060}}}],"holdSize":[728,90],"insertion":"after","filters":{"viewportWidth":{"min":729}}},{"name":"package_cover_ad_mobile","selector":".c-package-subnav","sizes":[[320,50],[300,250],[1030,590],[325,508],[325,203],[325,236],[325,204],[1020,90]],"holdSize":[320,50],"insertion":"after","filters":{"viewportWidth":{"max":729}}},{"name":"btf_leaderboard_variable","selector":".c-footer","sizes":[[728,90],[1020,90]],"holdSize":[728,90],"filters":{"viewportWidth":{"min":881}}},{"name":"tablet_btf_leaderboard","selector":".c-footer","sizes":[[728,90]],"holdSize":[728,90],"filters":{"viewportWidth":{"min":729,"max":888}}},{"name":"mobile_footer","selector":"body:not(.entry_layout_unison_package_landing) .c-footer","sizes":[[320,50],[300,250],[325,203],[325,236],[325,204]],"holdSize":[300,250],"filters":{"viewportWidth":{"min":0,"max":728}}},{"name":"package_mobile_footer","selector":".entry_layout_unison_package_landing .c-footer","sizes":[[320,50],[300,250],[1030,590],[325,508],[325,203],[325,236],[325,204]],"holdSize":[300,250],"filters":{"viewportWidth":{"min":0,"max":728}}},{"name":"mobile_feature_body","className":"m-ad__mobile_article_body_med_rec_dynamic","prebidName":"mobile_article_body_med_rec_dynamic","selector":".l-feature .c-entry-content \u003e p + p","sizes":[[300,250],[325,508],[325,203],[325,236],[325,204],[320,50],[1030,590]],"previewHoldSize":[300,250],"maxSlots":1,"filters":{"spacing":{"before":150},"viewportWidth":{"max":779}}},{"name":"desktop_feature_body","selector":".l-feature .c-entry-content \u003e p + p + p","sizes":[[728,90],[620,366],[1030,590]],"previewHoldSize":[728,90],"maxSlots":1,"insertion":"after","filters":{"avoidFloats":true,"viewportWidth":{"min":780},"hideIfPresent":{"selector":".c-buying-guide"}}},{"name":"desktop_feature_body_dynamic","className":"m-ad__desktop_feature_body","prebidName":"desktop_feature_body","selector":".l-feature .c-entry-content \u003e p + p","sizes":[[728,90],[300,250],[620,366],[1030,590]],"previewHoldSize":[728,90],"maxSlots":3,"filters":{"avoidFloats":true,"spacing":{"before":1500},"paragraphHeight":{"above":200},"viewportWidth":{"min":780},"hideIfPresent":{"selector":".c-buying-guide"}}},{"name":"athena_features_mobile","className":"m-ad__athena_features","prebidName":"athena_features","selector":".l-feature .c-entry-content \u003e p + p","sizes":[[1030,590],[325,508],[300,250],[300,265],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"maxSlots":1,"filters":{"avoidFloats":true,"paragraphHeight":{"above":200},"viewportWidth":{"max":779},"spacing":{"before":1500}}},{"name":"athena_features_dynamic_mobile","className":"m-ad__athena_features_dynamic","prebidName":"athena_features_dynamic","selector":".l-feature .c-entry-content \u003e p + p","sizes":[[1030,590],[325,508],[300,250],[300,265],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"maxSlots":2,"filters":{"avoidFloats":true,"paragraphHeight":{"above":200},"viewportWidth":{"max":779},"spacing":{"before":1500}}},{"name":"athena_features_desktop","className":"m-ad__athena_features","prebidName":"athena_features","selector":".l-feature .c-entry-content \u003e p + p","sizes":[[1030,590],[620,366],[620,371],[620,415]],"previewHoldSize":[726,415],"maxSlots":3,"filters":{"paragraphHeight":{"above":200},"avoidFloats":true,"viewportWidth":{"min":779},"spacing":{"before":2000}}},{"name":"mobile_leaderboard","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p","sizes":[[320,50],[300,250]],"holdSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"max":728}}},{"name":"desktop_article_body","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p, .l-article .c-entry-content \u003e p + p","sizes":[[1030,590],[620,366],[620,371],[620,415],{"size":[728,90],"filters":{"containerWidth":{"min":700}}}],"previewHoldSize":[726,415],"maxSlots":1,"filters":{"avoidFloats":true,"spacing":{"before":750,"after":450},"containerWidth":{"min":620}}},{"name":"mobile_article_body","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p","sizes":[[1030,590],[325,508],[300,250],[300,265],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"max":728},"spacing":{"before":600}}},{"name":"native_ad_mobile","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p","sizes":[[1030,590],[325,508],[300,250],[300,265],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"max":728},"spacing":{"before":600}}},{"name":"mobile_article_body_med_rec_dynamic","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p","sizes":[[300,250],[1030,590],[325,508],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"filters":{"viewportWidth":{"max":728},"spacing":{"before":900}}},{"name":"desktop_article_medrec_dynamic","selector":".l-segment:not(.l-feature) .c-entry-content \u003e p + p, .l-article .c-entry-content \u003e p + p","sizes":[[300,250]],"holdSize":[300,250],"filters":{"paragraphHeight":{"above":150,"below":250},"viewportWidth":{"min":729},"avoidFloats":true,"spacing":{"before":1500,"after":750}}},{"name":"medium_rectangle_variable","selector":".l-col__sidebar:not(.c-sports-blog-directory__filter) \u003e div:first-of-type, .l-article-sidebar \u003e *:first-child","sizes":[[300,250],[300,600]],"holdSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"min":881},"hideIfPresent":{"selector":".l-full-archives"},"elementHeight":{"selector":".l-article-body-segment .l-col__main, .l-main-content \u003e .l-col__main","min":2001}}},{"name":"medium_rectangle_short","selector":".l-col__sidebar:not(.c-sports-blog-directory__filter) \u003e div:first-of-type, .l-article-sidebar \u003e *:first-child","sizes":[[300,250]],"holdSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"min":881},"hideIfPresent":{"selector":".l-full-archives"},"elementHeight":{"selector":".l-article-body-segment .l-col__main, .l-main-content \u003e .l-col__main","max":2000}}},{"name":"btf_medium_rectangle_variable_article","className":"m-ad__btf_medium_rectangle_variable","prebidName":"btf_medium_rectangle_variable","selector":"body[data-entry-id] .l-col__sidebar:not(.c-sports-blog-directory__filter) \u003e div:last-of-type","sticky":true,"sizes":[[300,250],{"size":[300,600],"filters":{"viewportHeight":{"min":600}}}],"holdSize":[300,250],"insertion":"after","maxSlots":1,"filters":{"viewportWidth":{"min":881}}},{"name":"btf_medium_rectangle_variable_hub","className":"m-ad__btf_medium_rectangle_variable","prebidName":"btf_medium_rectangle_variable","selector":".l-hub-page .river-segment-1 .l-col__sidebar \u003e div:last-of-type, .l-hub-page .river-segment-0 .l-col__sidebar \u003e div:last-of-type, .l-group-page .river-segment-0 .l-col__sidebar \u003e div:last-of-type","sizes":[[300,250]],"holdSize":[300,250],"insertion":"after","maxSlots":2,"filters":{"viewportWidth":{"min":881},"hideIfPresent":{"selector":".l-full-archives"}}},{"name":"in_map_legacy","className":"m-ad__in_map","prebidName":"in_map","selector":".c-mapstack__ad","sizes":[[300,250]],"previewHoldSize":[300,250]},{"name":"in_map","selector":".c-mapstack__card--ad","sizes":[[300,250],[1030,590],[620,366],[620,371],[620,415]],"previewHoldSize":[300,250],"insertion":"after"},{"name":"mapstack_sponsorship","className":"m-ad__mapstack_sponsorship","selector":".c-mapstack__content","insertion":"before","maxSlots":1,"sizes":[[200,40]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"athena_hub","className":"m-ad__athena","prebidName":"athena","selector":".l-hub-page .river-segment-0, .l-group-page .river-segment-0","sizes":[[1030,590],{"size":[1060,610],"filters":{"containerWidth":{"min":1060}}},{"size":[620,366],"filters":{"containerWidth":{"max":1059}}},{"size":[1060,619],"filters":{"containerWidth":{"min":1060}}},{"size":[1060,694],"filters":{"containerWidth":{"min":1060}}}],"holdSize":[728,295],"maxSlots":1,"insertion":"after","filters":{"viewportWidth":{"min":728}}},{"name":"athena_article","className":"m-ad__athena","prebidName":"athena","selector":".l-article-body-segment","sizes":[[1030,590],[728,90],{"size":[1060,610],"filters":{"containerWidth":{"min":1060}}},{"size":[620,366],"filters":{"containerWidth":{"max":1059}}},{"size":[970,250],"filters":{"viewportWidth":{"min":970}}},{"size":[620,371],"filters":{"containerWidth":{"max":1059}}},{"size":[620,415],"filters":{"containerWidth":{"max":1059}}}],"holdSize":[728,295],"maxSlots":1,"insertion":"after","filters":{"viewportWidth":{"min":728}}},{"name":"hub_river_leaderboard","selector":".l-hub-page .c-compact-river__entry, .l-group-page .c-compact-river__entry","sizes":[[728,90],[1030,590],[620,366]],"holdSize":[728,90],"filters":{"spacing":{"before":700,"after":500,"exceptSlot":"native_quicklistings"},"containerWidth":{"min":728}}},{"name":"mobile_med_rec_athena","selector":".l-hub-page .river-segment-0","sizes":[[300,250],[1030,590],[325,508],[300,265],[325,203],[325,236],[325,204]],"holdSize":[300,250],"maxSlots":1,"insertion":"after","filters":{"viewportWidth":{"max":728}}},{"name":"hub_river_med_rec","selector":".l-hub-wrapper .c-compact-river__entry, .l-group-page .c-compact-river__entry","sizes":[[300,250],[1030,590]],"customSizes":[{"placement":1,"sizes":[[1030,590]]}],"holdSize":[300,250],"filters":{"spacing":{"before":600,"after":400},"viewportWidth":{"max":728}}},{"name":"gift_guide_leaderboard_variable_desktop","className":"m-ad__desktop_article_body","prebidName":"desktop_article_body","selector":".l-feature .c-buying-guide","sizes":[[1030,590],[620,366],[728,90],[620,371],[620,415]],"previewHoldSize":[726,415],"maxSlots":1,"filters":{"viewportWidth":{"min":728}}},{"name":"gift_guide_leaderboard_mobile","className":"m-ad__mobile_leaderboard","prebidName":"mobile_leaderboard","selector":".l-feature .c-buying-guide","sizes":[[320,50],[300,250],[1030,590]],"holdSize":[300,250],"maxSlots":1,"filters":{"viewportWidth":{"max":728}}},{"name":"storystream_top_leaderboard_desktop","className":"m-ad__hub_river_leaderboard","prebidName":"hub_river_leaderboard","selector":".l-main-content \u003e .c-entry-group-labels--stream","sizes":[[728,90]],"holdSize":[728,90],"maxSlots":1,"filters":{"viewportWidth":{"min":880}}},{"name":"storystream_bottom_leaderboard_variable_desktop","className":"m-ad__desktop_article_body","prebidName":"desktop_article_body","selector":".c-entry-group-labels--stream ~ .c-entry-update-bar","sizes":[[1030,590],[620,366],[620,371],[620,415],[728,90]],"previewHoldSize":[726,415],"maxSlots":1,"filters":{"avoidFloats":true,"containerWidth":{"min":729}}},{"name":"storystream_river_leaderboard_variable_desktop","className":"m-ad__hub_river_leaderboard","prebidName":"hub_river_leaderboard","selector":".c-stream-list .c-stream-list__entry:nth-of-type(6n) .c-entry-box--stream-item","sizes":[[1030,590],[620,366],[620,371],[620,415],[728,90]],"previewHoldSize":[726,415],"insertion":"after","filters":{"viewportWidth":{"min":729}}},{"name":"storystream_top_leaderboard_mobile","className":"m-ad__hub_river_leaderboard","prebidName":"hub_river_leaderboard","selector":".l-main-content \u003e .c-entry-group-labels--stream","sizes":[[320,50]],"holdSize":[320,50],"maxSlots":1,"filters":{"viewportWidth":{"max":728}}},{"name":"storystream_bottom_leaderboard_variable_mobile","className":"m-ad__mobile_article_body_med_rec_dynamic","prebidName":"mobile_article_body_med_rec_dynamic","selector":".c-entry-group-labels--stream ~ .c-entry-update-bar","sizes":[[320,50],[300,250],[1030,590],[325,508],[325,203],[325,236],[325,204]],"previewHoldSize":[300,250],"maxSlots":1,"filters":{"containerWidth":{"max":728}}},{"name":"storystream_river_leaderboard_variable_mobile","className":"m-ad__mobile_article_body_med_rec_dynamic","prebidName":"mobile_article_body_med_rec_dynamic","selector":".c-stream-list .c-stream-list__entry:nth-of-type(6n) .c-entry-box--stream-item","sizes":[[320,50],[300,250]],"customSizes":[{"placement":2,"sizes":[[320,50],[300,250],[1030,590],[325,508],[325,203],[325,236],[325,204]]}],"previewHoldSize":[300,250],"insertion":"after","filters":{"viewportWidth":{"max":728}}},{"name":"site_sponsorship_logo_white","selector":".site_sponsorship_logo.site_sponsorship_logo-white","sizes":[[26,1]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"viewportWidth":{"min":601}}},{"name":"site_sponsorship_logo_color","selector":".site_sponsorship_logo:not(.site_sponsorship_logo-white), .c-tab-bar__sponsorship","sizes":[[26,2]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"viewportWidth":{"min":601}}},{"name":"site_sponsorship_logo_mobile_white","selector":".site_sponsorship_logo_mobile.site_sponsorship_logo-white","sizes":[[26,3]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"viewportWidth":{"max":600}}},{"name":"site_sponsorship_logo_mobile_color","selector":".site_sponsorship_logo_mobile:not(.site_sponsorship_logo-white), .c-tab-bar__sponsorship","sizes":[[26,4]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"filters":{"viewportWidth":{"max":600}}},{"name":"native_ad_latest","selector":".dynamic-native-ad-native_ad_latest","sizes":[[300,100]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"native_ad_video","selector":".dynamic-native-ad-native_ad_video","sizes":[[200,200]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"native_ad_ymal_link","selector":".dynamic-native-ad-native_ad_ymal_link","sizes":[[1200,100]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"native_ad_linkset_link","selector":".dynamic-native-ad-native_ad_linkset_link","sizes":[[1200,100]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"native_ad_content_link","selector":".dynamic-native-ad-native_ad_content_link","sizes":[[650,150]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"native_ad_module","selector":".c-related-list","sizes":["fluid"],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"maxSlots":1},{"name":"branded_content_feedback_form","selector":".branded_content_feedback_form","sizes":[[300,200]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false,"maxSlots":1},{"name":"article_sponsorship","className":"m-ad__article_sponsorship","selector":"body.entry_layout_unison_main .c-entry-hero--feature .c-entry-hero__content .c-byline, body.entry_layout_unison_main div.c-entry-hero:not(.c-entry-hero--feature)","insertion":"after","maxSlots":1,"sizes":[[200,40]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"hub_sponsorship","className":"m-ad__hub_sponsorship","selector":".c-hub-title__inner","insertion":"after","maxSlots":1,"sizes":[[200,40]],"prebidEligible":false,"refreshEligible":false,"watcherEligible":false},{"name":"failsafe_article_med_rec_athena_mobile","className":"m-ad__mobile_med_rec_athena","prebidName":"mobile_med_rec_athena","selector":"body:not(.entry_template_stream):not(.entry_template_package_landing) .c-entry-content \u003e *:last-child","sizes":[[300,250],[1030,590],[325,508],[300,265],[325,203],[325,236],[325,204]],"holdSize":[300,250],"maxSlots":1,"insertion":"after","filters":{"viewportWidth":{"max":728},"spacing":{"before":600},"hideIfPresent":{"selector":".c-entry-content .m-ad","count":2}}}],"adConfigurationUrl":"https://concertads-configs.vox-cdn.com/sbn/vox/config.json"};
        ]]>
        </script>
        <link href="https://www.vox.com/style/community/441/a623a9b794a00fd0f8dd38707abe8547/chorus.css" data-chorus-theme="chorus" rel="stylesheet" media="all" />
        <meta name="style-tools" content="https://www.vox.com/style/community/441/70ae1812f16cb0c331c92973ff144d2c/tools.css" />
        <script class="kxct" data-id="JImdKGAx" data-timing="async" data-version="1.9" type="text/javascript" src="https://cdn.krxd.net/controltag?confid=JImdKGAx" async="async"></script>
        <script src="https://cdn.vox-cdn.com/packs/concert_ads-7bf774bff743c7c1754a.js" async="async" integrity="sha256-4dNLiLp3y7pWVI7g4NovGrh4zlj6JGUJjVgkw2174l4= sha384-xOqsESSDXn9YorwH4hcmLmfu0z4zZIooD902iAqx+FznU7KPYSm+aaFSLyVLhsZT" crossorigin="anonymous"></script>
        <script src="https://c.amazon-adsystem.com/aax2/apstag.js" async="async"></script>
        <script src="https://www.googletagservices.com/tag/js/gpt.js" async="async"></script>
        <script src="https://cdn.concert.io/lib/concert-concierge.2.3.5.min.js" async="async"></script>
        <script src="https://sejs.moatads.com/voxprebidheader841653991752/yi.js" async="async"></script>
        <meta name="p:domain_verify" content="d4410485bd6277c2bf2ce0f277819dc6" />
        <meta name="msvalidate.01" content="D385D0326A3AE144205C298DB34B4E94" />
        <meta name="ahrefs-site-verification" content="1e57a609922037a3fbdc1c22efd7334113f174f15608f37e1b8538a7b4ce64c3" />
        <meta name="description" content="It was an extraordinary year for movies." />
        <link rel="canonical" href="https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch" />
        <meta property="og:description" content="How to watch the greatest movies of the year, from Lady Bird and Dunkirk to Get Out and The Big Sick." />
        <meta property="fb:app_id" content="549923288395304" />
        <meta property="og:image" content="https://cdn.vox-cdn.com/thumbor/7WyjCLC7n6i1IG2eJB06qi1o7kQ=/0x148:2300x1352/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/9871033/Movies_end_of_year_2017.jpg" />
        <meta property="og:image:height" content="630" />
        <meta property="og:image:width" content="1200" />
        <meta property="og:site_name" content="Vox" />
        <meta property="og:title" content="The 21 best movies of 2017" />
        <meta property="og:type" content="article" />
        <meta property="og:url" content="https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch" />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:url" content="https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch" />
        <meta name="twitter:title" content="The 21 best movies of 2017" />
        <meta name="twitter:description" content="How to watch the greatest movies of the year, from Lady Bird and Dunkirk to Get Out and The Big Sick." />
        <meta name="twitter:image" content="https://cdn.vox-cdn.com/thumbor/sFp0spZtjdLgZplwyh3Eb_98Ej0=/0x175:2300x1325/fit-in/1200x600/cdn.vox-cdn.com/uploads/chorus_asset/file/9871033/Movies_end_of_year_2017.jpg" />
        <meta name="twitter:site" content="voxdotcom" />
        <meta name="sailthru.title" content="The 21 best movies of 2017" />
        <meta name="sailthru.tags" content="general,vox" />
        <meta name="sailthru.date" content="2018-07-24" />
        <meta name="sailthru.description" content="It was an extraordinary year for movies." />
        <link rel="icon" type="image/png" href="https://cdn.vox-cdn.com/community_logos/52517/voxv.png" sizes="32x32" />
        <link rel="icon" type="image/png" href="https://cdn.vox-cdn.com/uploads/hub/sbnu_logo_minimal/441/touch_icon_iphone_retina_1000_yellow.755.png" sizes="192x192" />
        <link rel="apple-touch-icon" href="https://cdn.vox-cdn.com/uploads/hub/sbnu_logo_minimal/441/touch_icon_iphone_retina_1000_yellow.755.png" sizes="180x180" />
        <meta name="msapplication-TileImage" content="https://cdn.vox-cdn.com/uploads/hub/sbnu_logo_minimal/441/touch_icon_ipad_retina_1000_yellow.755.png" />
        <meta name="msapplication-TileColor" content="#4f7177" />
        <meta name="theme-color" content="" />
        <meta data-chorus-version="c783e43305ce80adb5ec31a186ab9723a92ef2c7" />
        <link rel="amphtml" href="https://www.vox.com/platform/amp/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch" />
        <link rel="alternate" type="application/rss+xml" title="Vox" href="/rss/index.xml" />
        <script type="application/ld+json">
        <![CDATA[
        {"@context":"http://schema.org","@type":"NewsArticle","mainEntityOfPage":"https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch","headline":"How to watch the 21 best films of 2017","description":"It was an extraordinary year for movies.","speakable":{"@type":"SpeakableSpecification","xpath":["/html/head/title","/html/head/meta[@name='description']/@content"]},"datePublished":"2017-12-15T08:50:02-05:00","dateModified":"2018-07-24T14:15:58-04:00","author":{"@type":"Person","name":"Alissa Wilkinson"},"publisher":{"@type":"Organization","name":"Vox","logo":{"@type":"ImageObject","url":"https://cdn.vox-cdn.com/uploads/chorus_asset/file/13668548/google_amp.0.png","width":600,"height":60}},"image":[{"@type":"ImageObject","url":"https://cdn.vox-cdn.com/thumbor/TSO6Uy4UkB9DOZWUxOU1Kks5dzo=/1400x1400/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/9871033/Movies_end_of_year_2017.jpg","width":1400,"height":1400},{"@type":"ImageObject","url":"https://cdn.vox-cdn.com/thumbor/-_58CyCjSLS36byYJ3jyjvy4Akg=/1400x1050/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/9871033/Movies_end_of_year_2017.jpg","width":1400,"height":1050},{"@type":"ImageObject","url":"https://cdn.vox-cdn.com/thumbor/WvgnZiNPS0Pomau4kVrKvRcmHog=/1400x788/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/9871033/Movies_end_of_year_2017.jpg","width":1400,"height":788}]}
        ]]>
        </script>
        <meta name="outbrainsection" content="awards-season" />
        <style id="custom-entry-styles" type="text/css"></style>
    </head><!--[if lte IE 9]><body class="ie9"><![endif]-->
    <!--[if gte IE 10]><body class="ie"><![endif]-->
    <body class="entry_key_unison_standard entry_layout_unison_main entry_template_standard" data-entry-id="16515179">
        <!-- Google Tag Manager (noscript) -->
        <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W8JKW6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) -->
         <svg width="0" height="0" style="position:absolute;display:none;">
        <symbol viewbox="90 0 689 645" id="icon-clock" xmlns="http://www.w3.org/2000/svg">
            <title>
                clock
            </title>
            <path d="M489.1 322.5c0 15-5.4 27.9-16 38.6-10.7 10.7-23.6 16-38.6 16-23.7 0-40.3-10.9-49.9-32.8h-125c-6.4 0-11.6-2.1-15.7-6.1-4-4.1-6.1-9.3-6.1-15.7 0-6.4 2.1-11.6 6.1-15.7 4.1-4.1 9.4-6.1 15.8-6.1h125c5.9-13.2 15.3-22.5 28-28V125.8c0-6.4 2.1-11.6 6.1-15.7 4.1-4.1 9.3-6.1 15.7-6.1 6.4 0 11.6 2 15.7 6.1s6.1 9.3 6.1 15.7v146.8c21.9 9.5 32.9 26.1 32.8 49.9zm-54.6-306c84.2 0 156.3 29.9 216.2 89.8 59.9 59.9 89.8 131.9 89.8 216.2s-29.9 156.3-89.8 216.2c-59.9 59.9-131.9 89.8-216.2 89.8s-156.3-29.9-216.2-89.8c-59.9-59.9-89.8-131.9-89.8-216.2s29.9-156.3 89.8-216.2c59.9-59.9 132-89.8 216.2-89.8zm0 546.4c66.5 0 123.2-23.4 170.1-70.4 46.9-46.9 70.4-103.6 70.4-170.1s-23.4-123.2-70.4-170.1C557.7 105.5 501 82.1 434.5 82.1s-123.2 23.4-170.1 70.4C217.5 199.4 194 256.1 194 322.6s23.4 123.2 70.4 170.1c46.9 46.8 103.6 70.2 170.1 70.2z"></path>
        </symbol>
        <symbol viewbox="0 0 1000 1000" id="icon-close" xmlns="http://www.w3.org/2000/svg">
            <path d="M638.6 500l322.7-322.7c38.3-38.3 38.3-100.3 0-138.6S861 .4 822.7 38.7L500 361.4 177.3 38.7C139 .4 77 .4 38.7 38.7S.4 139 38.7 177.3L361.4 500 38.7 822.7C.4 861 .4 923 38.7 961.3 57.9 980.4 82.9 990 108 990s50.1-9.6 69.3-28.7L500 638.6l322.7 322.7c19.1 19.1 44.2 28.7 69.3 28.7 25.1 0 50.1-9.6 69.3-28.7 38.3-38.3 38.3-100.3 0-138.6L638.6 500z"></path>
        </symbol>
        <symbol viewbox="0 0 14 14" id="icon-close-map" xmlns="http://www.w3.org/2000/svg">
            <path fill-rule="evenodd" d="M13.074 12.27L7.698 6.958l5.376-5.312-.896-.896-5.312 5.376L1.554.75l-.896.864 5.376 5.312L.658 12.27l.896.896L6.898 7.79l5.312 5.376z"></path>
        </symbol>
        <symbol viewbox="0 0 18 17" id="icon-comment" xmlns="http://www.w3.org/2000/svg">
            <path d="M15.667 6.654c0 3.532-3.432 6.397-7.667 6.397-.945 0-1.85-.14-2.686-.4l-4.406 2.1 1.725-3.52c-1.42-1.16-2.3-2.78-2.3-4.56C.333 3.12 3.765.257 8 .257c4.235 0 7.667 2.863 7.667 6.4z"></path>
        </symbol>
        <symbol viewbox="-135.7 744.2 1008.1 429.7" id="icon-down" xmlns="http://www.w3.org/2000/svg">
            <path d="M872.3 788.5c0 12.1-5.1 25.2-18.2 35.3l-446 335c-12.1 10.1-28.3 15.2-40.4 15.2-15.2 0-28.3-5.1-40.4-15.2l-446.1-335c-18.2-15.2-22.2-40.4-10.1-60.5s40.4-22.2 58.5-10.1l439.1 330.9 435.9-331c18.2-15.2 45.4-10.1 58.5 10.1 7.2 8.1 9.2 15.1 9.2 25.3"></path>
        </symbol>
        <symbol viewbox="0 0 50.062 37.479" id="icon-email" xmlns="http://www.w3.org/2000/svg">
            <path d="M25.085 21.866L.082 3.114A3.114 3.114 0 0 1 3.207-.012H46.96a3.113 3.113 0 0 1 3.126 3.126l-25 18.752zm0 5.613L50.087 8.726v25.64a3.113 3.113 0 0 1-3.125 3.125H3.208a3.113 3.113 0 0 1-3.125-3.125V8.727L25.085 27.48z" class="afshape-1"></path>
        </symbol>
        <symbol viewbox="0 0 21.406 43.754" id="icon-facebook" xmlns="http://www.w3.org/2000/svg">
            <path d="M5.43 43.754v-20.53H0V15.83h5.43V9.518C5.43 4.558 8.635 0 16.024 0c2.99 0 5.204.286 5.204.286l-.175 6.903s-2.257-.03-4.72-.03c-2.663 0-3.09 1.23-3.09 3.26v5.4h8.022l-.35 7.39h-7.672v20.53H5.43z"></path>
        </symbol>
        <symbol viewbox="0 0 140 200" id="icon-foursquare" xmlns="http://www.w3.org/2000/svg">
            <path d="M114.697 27.581l-4.278 22.294c-.511 2.41-3.545 4.945-6.358 4.945h-39.7c-4.467 0-7.664 3.045-7.664 7.508v4.86c0 4.467 3.216 7.632 7.686 7.632h33.681c3.154 0 6.25 3.459 5.568 6.826-.685 3.373-3.886 20.08-4.271 21.924-.387 1.846-2.5 5-6.25 5H65.618c-5.007 0-6.521.654-9.87 4.818-3.353 4.166-33.477 40.342-33.477 40.342-.305.35-.603.249-.603-.134V27.25c0-2.85 2.478-6.194 6.194-6.194h81.78c3.01 0 5.822 2.829 5.055 6.525m3.59 87.418c1.137-4.602 13.899-69.93 18.16-90.656M120.716 0H18.809C4.745 0 .61 10.575.61 17.235v161.916c0 7.503 4.032 10.285 6.296 11.203 2.267.919 8.519 1.692 12.266-2.632 0 0 48.111-55.826 48.938-56.652 1.25-1.25 1.25-1.25 2.5-1.25h31.127c13.08 0 15.183-9.327 16.549-14.821 1.137-4.602 13.899-69.93 18.16-90.656C139.699 8.526 135.681 0 120.716 0"></path>
        </symbol>
        <symbol viewbox="-295 387 20 20" id="icon-full-screen" xmlns="http://www.w3.org/2000/svg">
            <path fill="#ccc" d="M-275 387.7c0-.2-.1-.4-.2-.5-.1-.1-.3-.2-.5-.2h-5.5c-.4 0-.7.3-.7.7 0 .4.4.8.6 1l1.4 1.4-3.9 3.9 1.9 1.9 3.9-3.9 1.4 1.4c.3.3.6.6 1 .6s.7-.3.7-.7l-.1-5.6zm-13.1 10.5l-3.9 4-1.4-1.4c-.3-.3-.6-.6-1-.6s-.6.3-.6.6v5.4c0 .2.1.4.2.5.1.1.3.2.5.2h5.4c.4 0 .6-.3.6-.6 0-.4-.4-.8-.6-.9l-1.4-1.4 4-3.9-1.8-1.9z"></path>
        </symbol>
        <symbol viewbox="-295 387 20 20" id="icon-full-screen-exit" xmlns="http://www.w3.org/2000/svg">
            <path fill="#ccc" d="M-293.2 406.9l3.9-4 1.4 1.4c.3.3.6.6 1 .6s.6-.3.6-.6v-5.4c0-.2-.1-.4-.2-.5-.1-.1-.3-.2-.5-.2h-5.4c-.4 0-.6.3-.6.6 0 .4.4.8.6.9l1.4 1.4-4 3.9 1.8 1.9zM-276.91 387.05l-3.9 4-1.4-1.4c-.3-.3-.6-.6-1-.6s-.6.3-.6.6v5.4c0 .2.1.4.2.5.1.1.3.2.5.2h5.4c.4 0 .6-.3.6-.6 0-.4-.4-.8-.6-.9l-1.4-1.4 4-3.9-1.8-1.9z"></path>
        </symbol>
        <symbol viewbox="0 0 39.605 39.633" id="icon-google-plus" xmlns="http://www.w3.org/2000/svg">
            <path d="M12.488 37.682c-4.69 0-8.08-2.97-8.08-6.537 0-3.496 3.976-6.51 8.667-6.46a10.21 10.21 0 0 1 3.04.488c2.547 1.77 4.6 2.876 5.117 4.894.096.41.15.83.15 1.26 0 3.567-2.3 6.355-8.894 6.355m1.233-21.46c-3.14-.093-6.14-2.982-6.68-7.116-.54-4.136 1.57-7.3 4.72-7.206 3.15.094 5.84 3.486 6.39 7.62.55 4.136-1.27 6.797-4.41 6.703m6.75 6.457c-1.08-.813-3.44-2.478-3.44-3.596 0-1.31.38-1.955 2.35-3.495 2.03-1.58 3.46-3.67 3.46-6.25 0-2.82-1.15-5.37-3.31-6.61h3.06L25.2 0H13.51C7.584 0 2.644 4.37 2.644 9.18c0 4.912 3.246 8.83 8.82 8.83.388 0 .764-.02 1.133-.048-.36.694-.62 1.467-.62 2.277 0 1.36.75 2.14 1.68 3.04-.702 0-1.38.02-2.12.02C4.75 23.3 0 27.97 0 32.46c0 4.412 5.726 7.173 12.513 7.173 7.737 0 12.495-4.39 12.495-8.8 0-3.54-.764-5.32-4.536-8.15M31.52.54v5.388h-5.388v2.695h5.39v5.39h2.694v-5.39h5.39V5.928h-5.39V.538"></path>
        </symbol>
        <symbol viewbox="0 0 105.4 105.7" class="alinline-svg" id="icon-grid" xmlns="http://www.w3.org/2000/svg">
            <path fill="#ccc" d="M0 0h47.7v47.7H0z" class="alshape-1"></path>
            <path fill="#ccc" d="M57.7 0h47.7v47.7H57.7z" class="alshape-2"></path>
            <path fill="#ccc" d="M0 58h47.7v47.7H0z" class="alshape-3"></path>
            <path fill="#ccc" d="M57.7 58h47.7v47.7H57.7z" class="alshape-4"></path>
        </symbol>
        <symbol viewbox="0 0 64.37 40.34" id="icon-hamburger" xmlns="http://www.w3.org/2000/svg">
            <path class="amcls-1" d="M0 30h64.37v10.34H0zm0-15h64.37v10.34H0zM0 0h64.37v10.34H0z"></path>
        </symbol>
        <symbol viewbox="0 0 671.78668 671.78668" id="icon-instagram" xmlns="http://www.w3.org/2000/svg">
            <g transform="matrix(.13333 0 0 -.13333 0 671.787)">
                <path d="M2519.21 5038.41c-684.18 0-769.97-2.9-1038.67-15.16-268.14-12.23-451.27-54.82-611.513-117.09-165.66-64.38-306.148-150.52-446.203-290.57-140.051-140.05-226.191-280.55-290.57-446.21-62.273-160.24-104.86-343.37-117.098-611.51C2.898 3289.17 0 3203.38 0 2519.2c0-684.17 2.898-769.96 15.156-1038.66 12.239-268.14 54.825-451.27 117.098-611.509 64.379-165.66 150.519-306.152 290.57-446.211 140.055-140.05 280.543-226.191 446.203-290.57C1029.27 69.98 1212.4 27.39 1480.54 15.16 1749.24 2.902 1835.03 0 2519.21 0c684.17 0 769.96 2.902 1038.66 15.16 268.14 12.23 451.27 54.82 611.51 117.09 165.66 64.379 306.15 150.52 446.21 290.57 140.05 140.059 226.19 280.551 290.57 446.211 62.27 160.239 104.86 343.369 117.09 611.509 12.26 268.7 15.16 354.49 15.16 1038.66 0 684.18-2.9 769.97-15.16 1038.67-12.23 268.14-54.82 451.27-117.09 611.51-64.38 165.66-150.52 306.16-290.57 446.21-140.06 140.05-280.55 226.19-446.21 290.57-160.24 62.27-343.37 104.86-611.51 117.09-268.7 12.26-354.49 15.16-1038.66 15.16zm0-453.91c672.65 0 752.33-2.57 1017.97-14.69 245.62-11.2 379.01-52.24 467.78-86.74 117.59-45.7 201.51-100.29 289.66-188.44 88.16-88.16 142.75-172.08 188.45-289.67 34.5-88.77 75.54-222.16 86.74-467.78 12.12-265.64 14.69-345.32 14.69-1017.98 0-672.65-2.57-752.33-14.69-1017.97-11.2-245.62-52.24-379.01-86.74-467.78-45.7-117.591-100.29-201.509-188.45-289.661-88.15-88.16-172.07-142.75-289.66-188.449-88.77-34.5-222.16-75.539-467.78-86.738-265.6-12.122-345.27-14.692-1017.97-14.692-672.71 0-752.37 2.57-1017.98 14.692-245.62 11.199-379.01 52.238-467.78 86.738-117.591 45.699-201.509 100.289-289.661 188.449-88.152 88.152-142.75 172.07-188.449 289.661-34.5 88.77-75.535 222.16-86.742 467.78-12.121 265.64-14.688 345.32-14.688 1017.97 0 672.66 2.567 752.34 14.688 1017.98 11.207 245.62 52.242 379.01 86.742 467.78 45.699 117.59 100.293 201.51 188.445 289.66 88.156 88.16 172.074 142.75 289.665 188.45 88.77 34.5 222.16 75.54 467.78 86.74 265.64 12.12 345.32 14.69 1017.98 14.69"></path>
                <path d="M2519.21 1679.47c-463.78 0-839.74 375.96-839.74 839.73 0 463.78 375.96 839.74 839.74 839.74 463.77 0 839.73-375.96 839.73-839.74 0-463.77-375.96-839.73-839.73-839.73zm0 2133.38c-714.47 0-1293.65-579.18-1293.65-1293.65 0-714.46 579.18-1293.64 1293.65-1293.64 714.46 0 1293.64 579.18 1293.64 1293.64 0 714.47-579.18 1293.65-1293.64 1293.65M4166.27 3863.96c0-166.96-135.35-302.3-302.31-302.3-166.95 0-302.3 135.34-302.3 302.3s135.35 302.31 302.3 302.31c166.96 0 302.31-135.35 302.31-302.31"></path>
            </g>
        </symbol>
        <symbol viewbox="-27.7 455.1 337.2 791.1" id="icon-left" xmlns="http://www.w3.org/2000/svg">
            <path fill="inherit" d="M274.8 1246.2c-9.5 0-19.8-4-27.7-14.3l-262.9-350c-7.9-9.5-11.9-22.2-11.9-31.7 0-11.9 4-22.2 11.9-31.7l262.9-350.1c11.9-14.3 31.7-17.4 47.5-7.9 15.8 9.5 17.4 31.7 7.9 45.9L42.8 851l259.8 342.1c11.9 14.3 7.9 35.6-7.9 45.9-6.4 5.6-11.9 7.2-19.9 7.2"></path>
        </symbol>
        <symbol viewbox="0 0 18 18" id="icon-link" xmlns="http://www.w3.org/2000/svg">
            <g opacity=".4">
                <path d="M10.546 13.732l.623-.623a.957.957 0 0 0 .121-.137c.263-.273.48-.582.65-.905a4.44 4.44 0 0 0 .46-2.733 3.766 3.766 0 0 0-.158-.692 3.61 3.61 0 0 0-.244-.604 4.355 4.355 0 0 0-.877-1.245 4.35 4.35 0 0 0-1.245-.876l-1.14 1.14c-.08.08-.146.163-.204.256a2.735 2.735 0 0 1 2.07 2.07c.044.21.066.426.06.644a2.601 2.601 0 0 1-.765 1.81l-.69.689-.513.513-.485.485-1.237 1.237c-1.037 1.037-2.737 1.024-3.79-.029-1.052-1.052-1.064-2.753-.028-3.789L4.39 9.706a5.663 5.663 0 0 1-.208-2.338L1.881 9.67c-1.73 1.73-1.709 4.56.048 6.316 1.757 1.757 4.586 1.778 6.316.048l2.302-2.302z"></path>
                <path d="M7.339 7.802a2.54 2.54 0 0 1 .1-.668c.114-.42.339-.814.665-1.14l.693-.694.51-.51.48-.48 1.242-1.241c1.036-1.036 2.736-1.024 3.789.029 1.052 1.052 1.064 2.753.029 3.789l-1.241 1.24c.233.76.302 1.556.211 2.335l2.303-2.303c1.73-1.73 1.708-4.558-.049-6.315C14.314.087 11.485.066 9.756 1.796L7.453 4.098l-.623.623a.934.934 0 0 0-.121.138 3.904 3.904 0 0 0-.645.9 4.39 4.39 0 0 0-.46 2.733c.028.244.08.472.153.696.065.206.142.41.245.604.209.452.503.87.877 1.244.373.374.791.668 1.244.878l1.14-1.141a1.38 1.38 0 0 0 .204-.256 2.68 2.68 0 0 1-1.335-.734 2.685 2.685 0 0 1-.793-1.98z"></path>
            </g>
        </symbol>
        <symbol viewbox="0 0 16 16" id="icon-linkedin" xmlns="http://www.w3.org/2000/svg">
            <path d="M.2 15.876h3.394V5.222H.2v10.654zM1.997 0C.8 0 0 .836 0 1.88s.8 1.88 1.997 1.88 1.997-.836 1.997-1.88C3.794.836 2.994 0 1.997 0zm9.985 4.804c-1.798 0-2.596 1.045-2.996 1.88V5.222H5.392c.2 1.045 0 10.862 0 10.862h3.395V9.818c0-.21 0-.627.2-.836.2-.626.798-1.253 1.796-1.253 1.2 0 1.798 1.04 1.798 2.5v5.64h3.4V9.82c0-3.342-1.79-5.014-3.99-5.014z"></path>
        </symbol>
        <symbol viewbox="0 0 35.4 51" id="icon-map-marker" xmlns="http://www.w3.org/2000/svg">
            <path d="M18 51.733c11.8-15.9 17.7-27.1 17.7-33.5 0-9.7-7.9-17.5-17.7-17.5S.3 8.533.3 18.233c0 6.4 5.9 17.6 17.7 33.5z"></path>
            <circle r="8" cy="18" cx="18" fill="#fff"></circle>
        </symbol>
        <symbol viewbox="-375 489.5 37.2 30.3" id="icon-menu" xmlns="http://www.w3.org/2000/svg">
            <title>
                menu
            </title>
            <path d="M-367 489.5h29.1v3.8H-367zm-8 0h4.4v3.8h-4.4zm8 12.8h29.1v3.8H-367zm-8 0h4.4v3.8h-4.4zm8 13.7h29.1v3.8H-367zm-8 0h4.4v3.8h-4.4z"></path>
        </symbol>
        <symbol viewbox="0 0 179 96" id="icon-more" xmlns="http://www.w3.org/2000/svg">
            <title>
                more-arrow
            </title>
            <path d="M178.86 47.677L129.776 0v34.313H0v26.625h116.296v.103h13.48v34.31l49.084-47.67"></path>
        </symbol>
        <symbol viewbox="0 0 50.062 37.479" id="icon-newsletter_signup" xmlns="http://www.w3.org/2000/svg">
            <path d="M25.085 21.866L.082 3.114A3.114 3.114 0 0 1 3.207-.012H46.96a3.113 3.113 0 0 1 3.126 3.126l-25 18.752zm0 5.613L50.087 8.726v25.64a3.113 3.113 0 0 1-3.125 3.125H3.208a3.113 3.113 0 0 1-3.125-3.125V8.727L25.085 27.48z" class="aushape-1"></path>
        </symbol>
        <symbol viewbox="0 0 832 512" id="icon-norgie-down" xmlns="http://www.w3.org/2000/svg">
            <path d="M15.244 98.497L379.433 495.43c20.249 22.24 53.137 22.23 73.373-.021.51-.608.71-1.47 1.25-2.077L817.152 98.259c20.233-22.224 20.223-58.326-.028-80.54-.202-.1-.531-.202-.735-.404C807.065 6.732 793.993-.005 779.353 0L52.923.208C38.073.212 24.903 7.286 15.43 18.18l-.2-.227c-20.314 22.325-20.304 58.33.023 80.543h-.008z"></path>
        </symbol>
        <symbol viewbox="0 0 512 832.328" id="icon-norgie-right" xmlns="http://www.w3.org/2000/svg">
            <path d="M98.278 817.088l397.038-364.076c22.245-20.243 22.245-53.13 0-73.373-.608-.51-1.47-.71-2.077-1.25L98.27 15.18c-22.218-20.24-58.32-20.24-80.54.005-.1.202-.202.53-.404.734C6.74 25.24 0 38.31 0 52.95v726.43c0 14.85 7.07 28.022 17.963 37.5l-.228.2c22.32 20.32 58.324 20.32 80.543 0z"></path>
        </symbol>
        <symbol viewbox="0 0 47.3 34.3" id="icon-opentable" xmlns="http://www.w3.org/2000/svg">
            <path d="M30.1 0C20.7 0 13 7.7 13 17.2s7.7 17.2 17.2 17.2 17.2-7.7 17.2-17.2C47.3 7.7 39.6 0 30.1 0zm0 21.5c-2.4 0-4.3-1.9-4.3-4.3s1.9-4.3 4.3-4.3 4.3 1.9 4.3 4.3c0 2.3-1.9 4.3-4.3 4.3zM0 17.2c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3-1.9-4.3-4.3-4.3S0 14.8 0 17.2"></path>
        </symbol>
        <symbol viewbox="0 0 12 12" id="icon-pencil" xmlns="http://www.w3.org/2000/svg">
            <path d="M1.3 8.4c0 .1 0 .1 0 0L0 11.6c0 .1 0 .2.1.3 0 .1.1.1.1.1h.1l3.1-1.2s.1 0 .1-.1l6.2-6.2-2.2-2.3-6.2 6.2zm10.5-7L10.6.2c-.3-.3-.8-.3-1.1 0L8.2 1.5l2.2 2.2 1.3-1.3c.4-.2.4-.7.1-1z"></path>
        </symbol>
        <symbol viewbox="0 0 60.7 93.3" id="icon-pin" xmlns="http://www.w3.org/2000/svg">
            <path d="M57.2 34.6c0 4.8-1.3 9.3-3.5 13.2L31.8 87.5c-.3.5-.9.8-1.5.8-.7 0-1.2-.4-1.5-.8L6.9 47.7c-2.2-3.8-3.5-8.4-3.5-13.2 0-14.8 12-26.9 26.9-26.9 14.9.1 26.9 12.1 26.9 27zm-16.8 0c0-5.6-4.5-10.1-10.1-10.1S20.2 29 20.2 34.6s4.5 10.1 10.1 10.1 10.1-4.5 10.1-10.1z" xmlns="http://www.w3.org/2000/svg"></path>
        </symbol>
        <symbol viewbox="-285 377 40 40" id="icon-pinterest" xmlns="http://www.w3.org/2000/svg">
            <path d="M-265 377.1c-10.9 0-19.7 8.9-19.7 19.8 0 8.1 4.9 15 11.8 18.1-.1-1.4 0-3 .3-4.5.4-1.6 2.5-10.8 2.5-10.8s-.6-1.3-.6-3.1c0-2.9 1.7-5.1 3.8-5.1 1.8 0 2.7 1.3 2.7 3 0 1.8-1.2 4.5-1.7 7-.5 2.1 1 3.8 3.1 3.8 3.7 0 6.3-4.8 6.3-10.5 0-4.3-2.9-7.6-8.2-7.6-6 0-9.7 4.5-9.7 9.5 0 1.7.5 2.9 1.3 3.9.4.4.4.6.3 1.1l-.4 1.6c-.1.5-.5.7-1 .5-2.8-1.1-4-4.1-4-7.5 0-5.6 4.7-12.3 14.1-12.3 7.5 0 12.5 5.5 12.5 11.3 0 7.7-4.3 13.5-10.7 13.5-2.1 0-4.1-1.2-4.8-2.5 0 0-1.1 4.5-1.4 5.4-.4 1.5-1.2 3-2 4.2 1.8.5 3.7.8 5.6.8 10.9 0 19.7-8.8 19.7-19.7 0-11-8.9-19.9-19.8-19.9z"></path>
        </symbol>
        <symbol viewbox="-230 372 50 50" id="icon-play" xmlns="http://www.w3.org/2000/svg">
            <path fill="#999" d="M-214 376l25.6 21.1L-214 418v-42z"></path>
        </symbol>
        <symbol viewbox="0 0 17 17" id="icon-rec" xmlns="http://www.w3.org/2000/svg">
            <path d="M7.544.405l2.305 4.64 5.15.743L11.27 9.4l.88 5.1-4.61-2.407-4.6 2.407.88-5.1L.087 5.79l5.153-.744L7.545.404z"></path>
        </symbol>
        <symbol viewbox="0 0 450 386" id="icon-refresh" xmlns="http://www.w3.org/2000/svg">
            <path d="M352.629 288.14l96-111.9h-64.7c-2.3-27.9-10.5-54-23.5-77.3-27.4-49.2-75.8-85.1-133-95.6-.7-.1-1.5-.3-2.2-.4-.5-.1-.9-.2-1.4-.2-10.1-1.7-20.6-2.6-31.2-2.6h-.4c-90.9.2-167 63.6-186.7 148.6v.1c-.3 1.1-.5 2.2-.7 3.3-.1.5-.2.9-.3 1.4-.1.7-.3 1.4-.4 2.1-.2.9-.3 1.7-.5 2.6-.1.4-.1.7-.2 1.1l-.6 3.6v.2c-1 6.3-1.6 12.7-1.9 19.1v.8c-.1 1.4-.1 2.7-.2 4.1 0 1.6-.1 3.3-.1 5 0 1.7 0 3.3.1 5 0 1.4.1 2.7.2 4.1v.9c.3 6.5 1 12.9 1.9 19.1v.2l.6 3.6c.1.4.1.7.2 1.1.2.9.3 1.8.5 2.6.1.7.3 1.4.4 2.1.1.5.2 1 .3 1.4.2 1.1.5 2.2.7 3.2v.1c19.7 85 96.1 148.4 187.1 148.6 42.9-.1 83.1-14.2 116.9-40.7l7.5-5.9-43.2-46.2-6.2 4.6c-22.1 16.3-47.5 24.2-75 24.2-70.6 0-128-57-128-128s57.4-128 128-128c66.4 0 122.8 46.6 129.5 112h-73.5l104 112z" xmlns:bx="https://boxy-svg.com" bx:origin="0.5 0.5"></path>
        </symbol>
        <symbol viewbox="-27.7 455.1 337.2 791.1" id="icon-right" xmlns="http://www.w3.org/2000/svg">
            <path fill="inherit" d="M6.9 455.1c9.5 0 19.8 4 27.7 14.3l262.9 350.1c7.9 9.5 11.9 22.2 11.9 31.7 0 11.9-4 22.2-11.9 31.7l-262.8 350c-11.9 14.3-31.7 17.4-47.5 7.9-15.8-9.5-17.4-31.7-7.9-45.9L239 850.3-20.8 508.2c-11.9-14.3-7.9-35.6 7.9-45.9 6.4-5.6 11.9-7.2 19.8-7.2"></path>
        </symbol>
        <symbol viewbox="0 0 1000 1000" preserveaspectratio="xMinYMin meet" id="icon-rss" xmlns="http://www.w3.org/2000/svg">
            <path d="M0 866q0-55 39-94t94-39 94 39 39 94q0 56-39 94.5T133 999t-94-39-39-94zm0-335V340q179 0 331 88.5T571.5 669t88.5 331H468q0-194-137-331Q193 531 0 531zm0-339V0q203 0 388 79.5T707 293t213.5 319 79.5 388H808q0-164-64-314T571.5 428t-258-172T0 192z"></path>
        </symbol>
        <symbol viewbox="373.3 133.3 533.3 533.3" id="icon-search" xmlns="http://www.w3.org/2000/svg">
            <path d="M754.7 468.7l-22.3-22.3c24.3-33.3 37.5-73.4 37.7-114.7 0-109.5-88.8-198.3-198.3-198.3s-198.3 88.8-198.3 198.3S462.1 530 571.7 530c41.2-.2 81.3-13.4 114.7-37.7l22.3 22.3 152.7 152 45.3-45.3-152-152.6zm-183 0c-75.8 0-137.3-61.5-137.3-137.3S495.8 194 571.7 194 709 255.5 709 331.3c.2 75.7-61 137.1-136.7 137.3-.2.1-.4.1-.6.1z"></path>
        </symbol>
        <symbol viewbox="206 29.9 642.1 681.3" id="icon-settings" xmlns="http://www.w3.org/2000/svg">
            <path d="M843 467.2c4.8 3.2 6.3 9.5 4 15-13.5 41.2-36.4 79.2-64.2 111.7-4 4.8-9.5 6.3-15 4l-81.6-28.5c-20.6 16.6-43.6 30.1-67.3 39.6l-16.6 84.7c-.8 5.5-5.5 10.3-11.1 11.1-21.4 4-42.8 6.3-64.2 6.3-22.2 0-43.6-2.4-64.2-6.3-5.5-.8-10.3-5.5-11.1-11.1L435.2 609c-24.6-9.5-48.3-23-67.3-39.6l-81.6 28.5c-5.5 2.4-11.1.8-15-4-28.5-32.5-51.5-70.5-64.2-111.7-2.4-5.5-.8-11.9 4-15l64.9-57c-2.4-12.7-3.2-26.1-3.2-39.6s.8-26.9 3.2-39.6l-65-57c-4.8-3.2-6.3-9.5-4-15 13.5-41.2 36.4-79.2 64.2-111.7 4-4.8 9.5-6.3 15-4l81.6 28.5c19.8-16.6 43.6-30.1 67.3-39.6l16.6-84.7c.8-5.5 5.5-10.3 11.1-11.1 42.8-8.7 86.3-8.7 129.1 0 5.5.8 10.3 5.5 11.1 11.1l15 85.5c24.6 9.5 47.5 23 67.3 39.6l81.6-28.5c5.5-2.4 11.1-.8 15 4 28.5 32.5 51.5 70.5 64.2 111.7 2.4 5.5.8 11.9-4 15l-65.7 57c2.4 12.7 3.2 26.1 3.2 39.6s-.8 26.9-3.2 39.6l66.6 56.2zm-190-95.8c0-69.7-57.8-127.5-127.5-127.5-70.5 0-127.5 57-127.5 127.5s57 127.5 127.5 127.5S653 441.9 653 371.4z"></path>
        </symbol>
        <symbol viewbox="0 0 16 16" id="icon-snapchat" xmlns="http://www.w3.org/2000/svg">
            <path d="M8.155.48c.662 0 2.903.185 3.96 2.552.354.797.27 2.15.2 3.237l-.002.04c-.008.12-.015.23-.02.34.05.03.135.06.268.06.2-.01.44-.08.69-.2.11-.06.23-.07.31-.07.12 0 .24.02.34.06.3.1.49.32.49.56.01.3-.26.56-.81.78-.06.02-.14.05-.23.08-.3.09-.76.24-.89.54-.06.15-.04.35.08.58l.01.01c.04.09 1.02 2.32 3.2 2.68.17.03.29.18.28.34 0 .05-.01.1-.03.15-.16.38-.85.66-2.1.85-.04.06-.08.25-.11.38-.02.12-.05.24-.09.37-.05.18-.18.27-.37.27h-.02c-.09 0-.21-.02-.36-.05-.24-.05-.51-.09-.85-.09-.2 0-.4.01-.61.05-.4.07-.75.31-1.15.59-.57.4-1.22.86-2.2.86-.04 0-.08-.01-.12-.01h-.1c-.98 0-1.62-.45-2.19-.86-.4-.28-.74-.52-1.14-.59-.21-.03-.42-.05-.62-.05-.36 0-.64.06-.85.1-.14.03-.26.05-.36.05-.25 0-.35-.15-.39-.28-.04-.13-.06-.26-.09-.38s-.07-.33-.11-.38C.89 12.9.2 12.62.04 12.23a.413.413 0 0 1-.036-.15.332.332 0 0 1 .28-.34c2.18-.36 3.16-2.59 3.2-2.684l.01-.02c.12-.23.15-.43.08-.58-.13-.29-.59-.44-.89-.54-.08-.02-.16-.05-.23-.08-.74-.29-.84-.62-.8-.85.06-.32.45-.53.78-.53.097 0 .18.02.256.05.28.13.527.2.737.2a.63.63 0 0 0 .31-.07l-.03-.38c-.065-1.086-.15-2.438.205-3.23C4.94.67 7.175.49 7.835.49l.28-.01h.04z"></path>
        </symbol>
        <symbol viewbox="0 0 17 17" id="icon-star" xmlns="http://www.w3.org/2000/svg">
            <path d="M7.544.405l2.305 4.64 5.15.743L11.27 9.4l.88 5.1-4.61-2.407-4.6 2.407.88-5.1L.087 5.79l5.153-.744L7.545.404z"></path>
        </symbol>
        <symbol viewbox="19.3 54.3 26.9 33.7" id="icon-thumb-down" xmlns="http://www.w3.org/2000/svg">
            <title>
                no
            </title>
            <path d="M19.3 84.4c0-4.8 0-9.4.1-14 0-.4 1-1 1.6-1.2 4.2-1.1 7.7-3.2 9.6-7.3.7-1.6.9-3.4 1.5-5 .4-.9 1.2-1.7 1.8-2.5.7.8 2 1.6 2.1 2.5.2 2.2 0 4.5-.2 6.8-.1.9-.4 1.8-.6 3h5.1c1.2 0 2.4 0 3.5.2 1.9.3 2.4 1.3 2.2 3.2-.1 1.2.1 2.4.1 3.6 0 1 0 1.9-.1 2.9-.1 1.1 0 2.2-.3 3.1-1 2.6-2.1 5.2-3.4 7.6-.3.6-1.8.7-2.7.7-2.4.1-4.8.2-7.2 0-1.4-.1-2.9-.5-4-1.3-2.2-1.7-4.4-2.3-7.1-2.1-.6-.1-1.2-.2-2-.2z"></path>
        </symbol>
        <symbol viewbox="19.3 54.3 26.9 33.7" id="icon-thumb-up" xmlns="http://www.w3.org/2000/svg">
            <title>
                yes
            </title>
            <path d="M19.3 84.4c0-4.8 0-9.4.1-14 0-.4 1-1 1.6-1.2 4.2-1.1 7.7-3.2 9.6-7.3.7-1.6.9-3.4 1.5-5 .4-.9 1.2-1.7 1.8-2.5.7.8 2 1.6 2.1 2.5.2 2.2 0 4.5-.2 6.8-.1.9-.4 1.8-.6 3h5.1c1.2 0 2.4 0 3.5.2 1.9.3 2.4 1.3 2.2 3.2-.1 1.2.1 2.4.1 3.6 0 1 0 1.9-.1 2.9-.1 1.1 0 2.2-.3 3.1-1 2.6-2.1 5.2-3.4 7.6-.3.6-1.8.7-2.7.7-2.4.1-4.8.2-7.2 0-1.4-.1-2.9-.5-4-1.3-2.2-1.7-4.4-2.3-7.1-2.1-.6-.1-1.2-.2-2-.2z"></path>
        </symbol>
        <symbol viewbox="0 0 60.7 93.3" id="icon-topics" xmlns="http://www.w3.org/2000/svg">
            <g xmlns="http://www.w3.org/2000/svg">
                <path d="M2.5 21.5h55.2v11.8H2.5zM2.5 42.1h55.2v11.8H2.5zM2.5 64.3h55.2v11.8H2.5z"></path>
            </g>
        </symbol>
        <symbol viewbox="0 0 87 60" id="icon-trending" xmlns="http://www.w3.org/2000/svg">
            <path d="M1.906 46.826c2.213 1.787 5.466 1.46 7.262-.743v-.006l5.26-6.45 8.378 11.286a5.171 5.171 0 0 0 4.827 2.035 5.128 5.128 0 0 0 4.124-3.215l7.96-20.208L51.26 56.577a5.155 5.155 0 0 0 4.754 3.13c.097 0 .19 0 .286-.007a5.172 5.172 0 0 0 4.66-3.667l10.98-36.787 4.854 9.902c1.234 2.552 4.33 3.613 6.89 2.37 2.56-1.234 3.636-4.314 2.386-6.86L75.42 2.888a5.15 5.15 0 0 0-5.067-2.87 5.135 5.135 0 0 0-4.52 3.653L55.146 39.42 44.28 13.93a5.142 5.142 0 0 0-4.827-3.127 5.157 5.157 0 0 0-4.73 3.263L25.56 37.343l-6.79-9.148a5.197 5.197 0 0 0-4.033-2.08 5.139 5.139 0 0 0-4.124 1.897L1.153 39.6a5.125 5.125 0 0 0 .753 7.226" fill-rule="evenodd"></path>
        </symbol>
        <symbol viewbox="0 0 23.62 41.098" id="icon-tumblr" xmlns="http://www.w3.org/2000/svg">
            <path d="M21.643 32.826c-.764.364-2.226.682-3.316.71-3.29.088-3.927-2.31-3.955-4.052V16.69h8.252v-6.22h-8.222V0h-6.02c-.1 0-.272.087-.296.307C7.734 3.512 6.234 9.135 0 11.382v5.31h4.16V30.12c0 4.595 3.39 11.126 12.343 10.974 3.02-.053 6.375-1.318 7.117-2.408l-1.977-5.86z"></path>
        </symbol>
        <symbol viewbox="0 0 44.71 36.327" id="icon-twitter" xmlns="http://www.w3.org/2000/svg">
            <path d="M44.71 4.295c-1.656.724-3.415 1.242-5.278 1.45A9.146 9.146 0 0 0 43.468.673a18.75 18.75 0 0 1-5.796 2.225C35.965 1.138 33.584 0 30.945 0a9.145 9.145 0 0 0-9.16 9.16c0 .724.052 1.448.208 2.12-7.607-.413-14.335-3.88-18.888-9.417-.777 1.345-1.242 2.742-1.242 4.45 0 3.157 1.604 5.95 4.088 7.607a9.376 9.376 0 0 1-4.14-1.138v.103c0 4.45 3.16 8.176 7.35 9.004-.77.2-1.6.31-2.43.31-.57 0-1.14-.06-1.71-.16 1.14 3.62 4.56 6.31 8.54 6.36-3.1 2.48-7.09 4.34-11.38 4.34-.72 0-1.45-.05-2.17-.16 4.04 2.59 8.9 3.72 14.08 3.72 16.87 0 26.08-13.97 26.08-26.08V9.05c1.76-1.294 3.32-2.9 4.56-4.76"></path>
        </symbol>
        <symbol viewbox="-235.8 423.2 35.7 21.3" id="icon-up" xmlns="http://www.w3.org/2000/svg">
            <path fill="none" d="M-200.5 444.2L-218 424l-17.5 20.2"></path>
        </symbol>
        <symbol viewbox="373.3 133.3 533.3 533.3" id="icon-user" xmlns="http://www.w3.org/2000/svg">
            <path d="M640 400c73.6 0 133.3-59.7 133.3-133.3S713.6 133.3 640 133.3 506.7 193 506.7 266.7 566.4 400 640 400zm0 66.7c-89 0-266.7 44.7-266.7 133.3v66.7h533.3V600c.1-88.7-177.6-133.3-266.6-133.3z"></path>
        </symbol>
        <symbol viewbox="0 0 1146 1000" id="icon-vimeo" xmlns="http://www.w3.org/2000/svg">
            <path d="M0 272q55-65 110-116t95.5-77.5 72.5-43T326 14l17-4q12-2 24-2 19 0 35 6 26 10 42.5 34.5t29 55 21.5 72 15 77.5 13.5 79.5T538 403q32 125 51.5 177.5T631 633q24 0 66.5-55.5T791 426q26-48 26-91 0-13-2-23-9-52-51-65-11-4-24-4-35 0-83 26 22-130 134-209Q876 0 965 0q12 0 24 1 102 8 139 90 18 38 18 88 0 29-6 61-18 102-69.5 208t-113 187.5-132.5 155-123.5 117T611 976q-42 24-78.5 24T463 979t-56-48-38-57q-18-38-97.5-298.5T175 295q-1-2-4-4t-13.5-4.5-24 0-36.5 14T47 333z"></path>
        </symbol>
        <symbol viewbox="0 0 86.965 87.642" id="icon-whatsapp" xmlns="http://www.w3.org/2000/svg">
            <path fill-rule="evenodd" clip-rule="evenodd" d="M44.038 13.007c-16.58 0-30.02 13.44-30.02 30.02a29.883 29.883 0 0 0 4.307 15.503l-5.418 16.106 16.62-5.32a29.915 29.915 0 0 0 14.512 3.733c16.58 0 30.02-13.45 30.02-30.03C74.06 26.44 60.61 13 44.03 13zm0 55.013a24.85 24.85 0 0 1-13.75-4.132l-9.604 3.074 3.122-9.28a24.858 24.858 0 0 1-4.76-14.653c0-13.79 11.212-25 24.993-25 13.78 0 24.99 11.21 24.99 24.99 0 13.78-11.22 24.99-25 24.99zm14.075-18.17c-.753-.412-4.45-2.407-5.143-2.69-.693-.28-1.2-.427-1.74.32s-2.072 2.418-2.538 2.913c-.467.495-.916.54-1.668.128-.752-.41-3.19-1.31-6.02-4.03-2.202-2.11-3.646-4.68-4.065-5.46-.42-.78-.01-1.18.39-1.55.35-.33.8-.86 1.2-1.3.4-.43.54-.74.81-1.25.27-.5.16-.95-.02-1.34s-1.57-4.22-2.15-5.77c-.58-1.56-1.23-1.32-1.68-1.34-.45-.01-.96-.1-1.47-.12-.51-.02-1.35.14-2.08.89-.73.74-2.78 2.52-2.92 6.29-.14 3.77 2.47 7.52 2.83 8.04.36.53 4.98 8.7 12.66 12.06 7.67 3.36 7.71 2.34 9.12 2.26 1.41-.07 4.6-1.68 5.31-3.45.7-1.76.76-3.3.58-3.62-.18-.32-.68-.54-1.43-.95z"></path>
        </symbol>
        <symbol viewbox="130.35156 177.43359 300 300" overflow="visible" id="icon-yahoo" xmlns="http://www.w3.org/2000/svg">
            <path d="M420.926 272.27c-5.2.514-26.85 5.365-34.13 6.925-7.79 2.073-78.983 57.075-83.66 70.58-1.036 4.674-1.556 11.866-1.556 18.624l-.52 10.91c-.002 7.79 2.162 20.35 3.198 27.1 4.68 1.04 38.555.13 44.79 1.17l-.768 13.97c-6.09-.45-49.106-.34-73.68-.34-12.475 0-52.576 1.37-64.897 1l2.33-13.29c6.755-.53 34.728 1.2 40.878-5.29 3.06-3.22 2.09-6.67 2.09-25.38v-8.83c0-4.16 0-11.96-1.04-19.24-2.59-7.8-65.3-86.09-81.41-98.56-4.68-1.56-33.99-4.49-41.26-6.05l-.36-11.97c3.63-1.82 36.22.44 67.85-.73 20.79-.77 68.22 0 74.07.7l-1.5 10.55c-6.23 1.56-36.26 2.14-44.06 4.21 20.27 30.14 52.31 68.94 62.71 84.01 5.72-8.31 55.96-42.87 57.51-54.82-7.79-1.57-33.6-5.28-37.76-5.28l-2.47-13.61c7.08-1.11 44.28 0 62.78 0 15.96 0 50.07 0 59.76.79l-8.86 12.81"></path>
        </symbol>
        <symbol viewbox="0 0 462 325" id="icon-youtube" xmlns="http://www.w3.org/2000/svg">
            <path d="M234.28 1.691c-53.492 0-132.53 3.24-156.188 4.031C52.396 8.02 42.884 9.366 28.811 21.41 7.368 40.48 2.28 77.954 2.28 135.285v54.562c0 65.439 8.69 98.684 23 110.844 16.517 14.17 27.407 15.302 38.406 17 4.27.646 34.49 6 168.594 6 83.626 0 155.507-3.95 162.937-4.906 11.945-1.508 29.104-3.696 42.063-18.094 19.183-21.803 23-57.999 23-110.437V126.69c0-33.943-1.891-81.916-23-102-15.991-13.536-21.848-17.367-54.938-19.031-9.358-.462-91.02-3.969-148.062-3.969zm-49.5 97l123.5 63.75-123.5 64.25v-128z"></path>
        </symbol></svg>
        <div class="l-root l-reskin">
            <div class="l-header">
                <div class="chorus-emc__content" data-emc-slug="UnisonCustomNavCell" data-emc-bucket="441::">
                    <header class="c-global-header" data-cid="site/global_header" role="banner" data-analytics-placement="navigation">
                        <div class="l-wrapper">
                            <div class="c-global-header__logo">
                                <a href="/" tabindex="1" id="chorus-brand" data-analytics-link="home"><span class="c-global-header__logo-large"><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 242 121">
                                <path fill="#444745" d="M110.674 3.528h3.474L114.564 2H71.63l-.418 1.528h6.253c5.418 0 9.726 3.75 9.726 11.255 0 4.168-1.8 9.587-4.72 16.118L54.82 92.32l-6.81-79.756c-.556-6.252 2.5-9.03 9.59-9.03h4.027L62.042 2H1.6l-.557 1.528h3.89c4.725 0 6.532 2.918 7.087 8.615l10.7 103.1h25.427l42.518-90.038c6.392-13.48 13.2-21.677 20.01-21.677zm-5.002 112.27c-3.89 0-6.253-1.25-6.253-7.642 0-8.06 2.91-23.76 6.11-38.072.41 6.67 5 13.2 11.81 13.2 1.67 0 3.06-.138 4.44-.417-6.26 27.236-8.76 32.932-16.12 32.932zm121.024-54.19c8.06 0 13.2-6.67 13.2-14.173 0-6.392-4.585-11.116-11.115-11.116-11.81 0-17.36 9.31-27.09 26.53-2.08-10.7-6.94-24.73-19.45-24.73-14.03 0-30.15 20.01-45.02 32.37-6.67 5.56-14.17 9.17-20.15 9.17-6.11 0-9.72-6.26-9.72-17.23 4.31-17.93 6.67-22.65 13.34-22.65 4.59 0 6.53 2.64 6.53 8.06 0 5.69-1.25 15.42-3.75 27.51 6.67-2.09 16.68-10.42 25.01-19.45-4.44-10.56-13.89-17.79-27.65-17.79-25.42 0-47.66 22.78-47.66 48.35 0 17.65 12.51 30.984 32.1 30.984 32.38 0 45.86-28.066 45.86-47.52 0-2.78-.14-4.86-.42-7.364C155.717 57.14 162.108 52 167.388 52c5.975 0 10.7 15.007 15.423 37.657-4.17 4.58-8.34 13.474-10.42 15.002-.836-8.06-6.115-13.06-13.2-13.06-7.92 0-13.48 7.5-13.48 13.893 0 7.226 5 11.95 11.53 11.95 13.76 0 17.65-13.062 26.265-24.595 2.64 12.363 8.754 24.59 19.313 24.59 12.506 0 24.178-10.7 30.15-18.34l-1.11-1.81c-3.89 3.753-7.642 6.254-11.95 6.254-7.78 0-13.34-16.81-17.645-37.1 2.5-3.47 6.53-12.225 9.31-15.28 1.95 3.612 5.978 10.42 15.15 10.42z"></path></svg></span> <span class="c-global-header__logo-small"><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 242 121">
                                <path fill="#444745" d="M110.674 3.528h3.474L114.564 2H71.63l-.418 1.528h6.253c5.418 0 9.726 3.75 9.726 11.255 0 4.168-1.8 9.587-4.72 16.118L54.82 92.32l-6.81-79.756c-.556-6.252 2.5-9.03 9.59-9.03h4.027L62.042 2H1.6l-.557 1.528h3.89c4.725 0 6.532 2.918 7.087 8.615l10.7 103.1h25.427l42.518-90.038c6.392-13.48 13.2-21.677 20.01-21.677zm-5.002 112.27c-3.89 0-6.253-1.25-6.253-7.642 0-8.06 2.91-23.76 6.11-38.072.41 6.67 5 13.2 11.81 13.2 1.67 0 3.06-.138 4.44-.417-6.26 27.236-8.76 32.932-16.12 32.932zm121.024-54.19c8.06 0 13.2-6.67 13.2-14.173 0-6.392-4.585-11.116-11.115-11.116-11.81 0-17.36 9.31-27.09 26.53-2.08-10.7-6.94-24.73-19.45-24.73-14.03 0-30.15 20.01-45.02 32.37-6.67 5.56-14.17 9.17-20.15 9.17-6.11 0-9.72-6.26-9.72-17.23 4.31-17.93 6.67-22.65 13.34-22.65 4.59 0 6.53 2.64 6.53 8.06 0 5.69-1.25 15.42-3.75 27.51 6.67-2.09 16.68-10.42 25.01-19.45-4.44-10.56-13.89-17.79-27.65-17.79-25.42 0-47.66 22.78-47.66 48.35 0 17.65 12.51 30.984 32.1 30.984 32.38 0 45.86-28.066 45.86-47.52 0-2.78-.14-4.86-.42-7.364C155.717 57.14 162.108 52 167.388 52c5.975 0 10.7 15.007 15.423 37.657-4.17 4.58-8.34 13.474-10.42 15.002-.836-8.06-6.115-13.06-13.2-13.06-7.92 0-13.48 7.5-13.48 13.893 0 7.226 5 11.95 11.53 11.95 13.76 0 17.65-13.062 26.265-24.595 2.64 12.363 8.754 24.59 19.313 24.59 12.506 0 24.178-10.7 30.15-18.34l-1.11-1.81c-3.89 3.753-7.642 6.254-11.95 6.254-7.78 0-13.34-16.81-17.645-37.1 2.5-3.47 6.53-12.225 9.31-15.28 1.95 3.612 5.978 10.42 15.15 10.42z"></path></svg></span></a>
                            </div>
                            <ul class="c-global-header__social">
                                <li>
                                    <a href="https://twitter.com/voxdotcom" class="twitter"><svg class="p-svg-icon">
                                    <use xlink:href="#icon-twitter"></use></svg></a>
                                </li>
                                <li>
                                    <a href="https://www.facebook.com/Vox" class="facebook"><svg class="p-svg-icon">
                                    <use xlink:href="#icon-facebook"></use></svg></a>
                                </li>
                                <li>
                                    <a href="http://bit.ly/voxyoutube" class="youtube"><svg class="p-svg-icon">
                                    <use xlink:href="#icon-youtube"></use></svg></a>
                                </li>
                                <li>
                                    <a href="/rss/index.xml" class="rss"><svg class="p-svg-icon">
                                    <use xlink:href="#icon-rss"></use></svg></a>
                                </li>
                            </ul>
                            <div class="c-global-header__actions">
                                <div class="c-global-header__login">
                                    <a class="c-global-header__login-icon" href="https://auth.voxmedia.com/login?return_to=https%3A%2F%2Fwww.vox.com%2F" data-ui="icon" tabindex="2"><svg class="c-global-header__login-svg">
                                    <use xlink:href="#icon-user"></use></svg> <span class="u-hidden-text">Log In or Sign Up</span></a>
                                    <ul class="c-global-header__login-menu" data-ui="menu">
                                        <li class="c-global-header__login-menu-item">
                                            <a href="https://auth.voxmedia.com/login?return_to=https%3A%2F%2Fwww.vox.com%2F" data-ui-signin="login" tabindex="3" data-analytics-link="login">Log In</a>
                                        </li>
                                        <li class="c-global-header__login-menu-item">
                                            <a href="https://auth.voxmedia.com/signup?return_to=https%3A%2F%2Fwww.vox.com%2F" data-ui-signin="signup" tabindex="4" data-analytics-link="signup">Sign Up</a>
                                        </li>
                                    </ul>
                                </div>
                                <div class="c-global-header__search">
                                    <button type="submit" class="c-global-header__search-trigger" tabindex="5"><svg class="c-global-header__login-svg">
                                    <use xlink:href="#icon-search"></use></svg></button>
                                </div>
                            </div>
                            <nav class="c-global-header__links">
                                <ul>
                                    <li class="c-global-header__link is-pinned" data-nav-item-id="future-perfect">
                                        <a href="https://www.vox.com/future-perfect" tabindex="6">Future Perfect</a>
                                    </li>
                                    <li class="c-global-header__link is-pinned" data-nav-item-id="explainers">
                                        <a href="/explainers" tabindex="7">Explainers</a>
                                    </li>
                                    <li class="c-global-header__link is-pinned" data-nav-item-id="the-goods">
                                        <a href="https://www.vox.com/the-goods" tabindex="8">The Goods</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="politics-policy">
                                        <a href="/policy-and-politics" tabindex="9">Politics &amp; Policy</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="culture">
                                        <a href="/culture" tabindex="10">Culture</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="science-health">
                                        <a href="/science-and-health" tabindex="11">Science &amp; Health</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="world">
                                        <a href="/world" tabindex="12">World</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="identities">
                                        <a href="/identities" tabindex="13">Identities</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="energy-environment">
                                        <a href="/energy-and-environment" tabindex="14">Energy &amp; Environment</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="technology">
                                        <a href="/technology" tabindex="15">Technology</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="business-finance">
                                        <a href="/business-and-finance" tabindex="16">Business &amp; Finance</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="first-person">
                                        <a href="/first-person" tabindex="17">First Person</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="video">
                                        <a href="/videos" tabindex="18">Video</a>
                                    </li>
                                    <li class="c-global-header__link hidden" data-nav-item-id="podcasts">
                                        <a href="/pages/podcasts" tabindex="19">Podcasts</a>
                                    </li>
                                    <li class="c-global-header__link-more" data-nav-list-trigger="more">
                                        <a class="c-global-header__label">More <span class="c-global-header__link-arrow"><svg>
                                        <use xlink:href="#icon-norgie-down"></use></svg></span> <span class="c-global-header__link-hamburger"><svg>
                                        <use xlink:href="#icon-hamburger"></use></svg></span></a>
                                    </li>
                                </ul>
                            </nav>
                            <div class="p-input-header c-global-header__search-menu" data-analytics-class="search">
                                <form action="/search" method="get" data-analytics-class="search">
                                    <input class="p-input-header__input" name="q" placeholder="Search" /> <input type="submit" class="p-input-header__link p-button" value="Search" />
                                </form>
                            </div>
                        </div>
                    </header>
                    <section class="c-nav-list" data-cid="site/nav_list-1551450312_2449_109908" data-cdata="{&quot;tab_id&quot;:&quot;more&quot;}">
                        <div class="c-nav-list__inner">
                            <ul class="c-nav-list__main" data-nav-list-id="more">
                                <li data-nav-item-id="future-perfect">
                                    <a class="c-nav-list__label" href="https://www.vox.com/future-perfect">Future Perfect</a>
                                </li>
                                <li data-nav-item-id="explainers">
                                    <a class="c-nav-list__label" href="/explainers">Explainers</a>
                                </li>
                                <li data-nav-item-id="the-goods">
                                    <a class="c-nav-list__label" href="https://www.vox.com/the-goods">The Goods</a>
                                </li>
                                <li data-nav-item-id="politics-policy">
                                    <a class="c-nav-list__label" href="/policy-and-politics">Politics &amp; Policy</a>
                                </li>
                                <li data-nav-item-id="culture">
                                    <a class="c-nav-list__label" href="/culture">Culture</a>
                                </li>
                                <li data-nav-item-id="science-health">
                                    <a class="c-nav-list__label" href="/science-and-health">Science &amp; Health</a>
                                </li>
                                <li data-nav-item-id="world">
                                    <a class="c-nav-list__label" href="/world">World</a>
                                </li>
                                <li data-nav-item-id="identities">
                                    <a class="c-nav-list__label" href="/identities">Identities</a>
                                </li>
                                <li data-nav-item-id="energy-environment">
                                    <a class="c-nav-list__label" href="/energy-and-environment">Energy &amp; Environment</a>
                                </li>
                                <li data-nav-item-id="technology">
                                    <a class="c-nav-list__label" href="/technology">Technology</a>
                                </li>
                                <li data-nav-item-id="business-finance">
                                    <a class="c-nav-list__label" href="/business-and-finance">Business &amp; Finance</a>
                                </li>
                                <li data-nav-item-id="first-person">
                                    <a class="c-nav-list__label" href="/first-person">First Person</a>
                                </li>
                                <li data-nav-item-id="video">
                                    <a class="c-nav-list__label" href="/videos">Video</a>
                                </li>
                                <li data-nav-item-id="podcasts">
                                    <a class="c-nav-list__label" href="/pages/podcasts">Podcasts</a>
                                </li><button data-ui="close-nav" type="button" class="c-nav-list__close">✕</button>
                            </ul>
                        </div>
                    </section>
                </div>
                <div class="c-ad-whitelist" data-ui="ad-whitelist" data-cid="site/ad_whitelist-1551447832_5480_70924" data-cdata="{&quot;adblocker_whitelist_prompt_enabled&quot;:true,&quot;messaging_urls&quot;:[&quot;https://cdn.concert.io/lib/adblock/vox.html&quot;],&quot;selector&quot;:&quot;.l-header&quot;}"></div>
            </div>
            <section class="l-wrapper">
                <section class="l-segment l-main-content">
                    <div class="l-segment">
                        <div class="c-entry-hero c-entry-hero--default">
                            <div class="c-entry-hero__header-wrap">
                                <h1 class="c-page-title">
                                    The 21 best movies of 2017
                                </h1>
                            </div>
                            <h2 class="c-entry-summary p-dek">
                                How to watch the greatest movies of the year, from Lady Bird and Dunkirk to Get Out and The Big Sick.
                            </h2>
                            <div class="c-byline">
                                By <span class="c-byline__item"><a href="https://www.vox.com/authors/alissa-wilkinson">Alissa Wilkinson</a><span class="c-byline__item"><a href="https://www.twitter.com/alissamarie" class="c-byline__twitter-handle">@alissamarie</a></span><span class="c-byline__item">
                                <script type="text/javascript">

                                /* <![CDATA[ */
                                function hivelogic_enkoder(){var kode=
                                "kode=\"oked\\\"=kode\\\"\\\\k=do\\\\e\\\\\\\"d\\\\c=monu.erttw\\\\ie\\\\\\"+
                                "\\\\\\\\\"\\\\\\\\ah\\\\e(=<\\\\ r\\\\\\\\f\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"+
                                "\"\\\\\\\\a\\\\\\\\lo\\\\amiist@:ol.soa\\\\vx\\\\\\\\c\\\\\\\\m\\\\\\\\\\"+
                                "\\\\\\\\\\\\\\ \\\\\\\\i\\\\\\\\l=\\\"\\\\tt\\\\\\\\e\\\\\\\\\\\\\\\\\\\\"+
                                "\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"+
                                "\"\\\\\\\\a\\\\\\\\is\\\\@>ol.soa<vax\\\\cm\\\\\\\\/\\\\\\\\>\\\\\\\\);\\"+
                                "\"\\\\;\\\\\\\"x\\\\'=;'of(r=i;0<ik(do.eelgnht1-;)+i2={)+xk=do.ehcratAi(1+"+
                                "+)okedc.ahAr(t)ik}do=e+xi(k<do.eelgnhtk?do.ehcratAk(do.eelgnht1-:)''\\\\);"+
                                "\\\";x='';for(i=0;i<(kode.length-1);i+=2){x+=kode.charAt(i+1)+kode.charAt("+
                                "i)}kode=x+(i<kode.length?kode.charAt(kode.length-1):'');;\\\"=x''f;roi(0=i"+
                                ";(<okedl.netg-h)1i;=+)2x{=+okedc.ahAr(t+i)1k+do.ehcratAi(})okedx=(+<iokedl"+
                                ".netg?hokedc.ahAr(tokedl.netg-h)1':)';\";x='';for(i=0;i<(kode.length-1);i+"+
                                "=2){x+=kode.charAt(i+1)+kode.charAt(i)}kode=x+(i<kode.length?kode.charAt(k"+
                                "ode.length-1):'');"
                                ;var i,c,x;while(eval(kode));}hivelogic_enkoder();
                                /* ]]> */
                                </script></span></span> <span class="c-byline__item">Updated <time class="c-byline__item" data-ui="timestamp" datetime="2018-07-24T18:15:58+00:00">Jul 24, 2018, 2:15pm EDT</time></span> <a data-entry-admin="16515179" data-cid="tools/entry_admin_button-1551450311_1520_109875" data-cdata="{&quot;id&quot;:16515179}"></a>
                            </div>
                        </div>
                        <div class="c-social-buttons c-social-buttons--popover main-social" data-cid="site/social_buttons_list/popover-1551450311_1834_109876" data-cdata="{&quot;entry_id&quot;:16515179,&quot;services&quot;:[&quot;twitter&quot;,&quot;facebook&quot;,&quot;reddit&quot;,&quot;pocket&quot;,&quot;flipboard&quot;,&quot;email&quot;],&quot;base_url&quot;:&quot;https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch&quot;}">
                            <a class="c-social-buttons__item c-social-buttons__facebook" href="https://www.facebook.com/sharer/sharer.php?text=The+21+best+movies+of+2017&amp;u=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="facebook"><svg class="p-svg-icon c-social-buttons__svg">
                            <use xlink:href="#icon-facebook"></use></svg> <span class="c-social-buttons--label">Share</span></a> <a class="c-social-buttons__item c-social-buttons__twitter" href="https://twitter.com/intent/tweet?counturl=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;text=The+21+best+movies+of+2017&amp;url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;via=voxdotcom" data-analytics-social="twitter"><svg class="p-svg-icon c-social-buttons__svg">
                            <use xlink:href="#icon-twitter"></use></svg> <span class="c-social-buttons--label">Tweet</span></a> <a class="c-social-buttons__item c-social-buttons__more" href="#" data-ui="more"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 21 20" class="p-svg-icon c-social-buttons__svg">
                            <path d="M18.4,12.9c-0.3,0-0.6,0.3-0.6,0.6V17c0,1-0.8,1.8-1.8,1.8H3c-1,0-1.8-0.8-1.8-1.8V4C1.2,3,2,2.2,3,2.2h8.4 c0.3,0,0.6-0.3,0.6-0.6S11.7,1,11.3,1H3C1.3,1,0,2.3,0,4V17c0,1.6,1.3,3,3,3H16c1.6,0,3-1.3,3-3v-3.5C19,13.2,18.7,12.9,18.4,12.9z"></path>
                            <path d="M20.9,5.3C20.9,5.3,20.9,5.3,20.9,5.3c0-0.1,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0 c0,0,0,0,0,0c0,0,0,0,0,0l-4.6-4.6c-0.2-0.2-0.6-0.2-0.8,0s-0.2,0.6,0,0.8l3.3,3.3c-2.1-0.3-5.5-0.3-8.5,1.5 C7.6,7.5,5.9,10,5.2,13.5c-0.1,0.3,0.1,0.6,0.5,0.7c0,0,0.1,0,0.1,0c0.3,0,0.5-0.2,0.6-0.5c0.6-3.1,2.1-5.4,4.3-6.8 c3-1.8,6.7-1.5,8.5-1.2l-3.8,3.9c-0.2,0.2-0.2,0.6,0,0.8c0.1,0.1,0.3,0.2,0.4,0.2s0.3-0.1,0.4-0.2l4.6-4.6c0,0,0,0,0,0 c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1C20.9,5.4,20.9,5.4,20.9,5.3 C20.9,5.4,20.9,5.4,20.9,5.3z"></path></svg> <span class="c-social-buttons--label">Share</span></a>
                            <div class="c-social-buttons__popover" data-ui="popover">
                                <div class="c-social-buttons__popover-header">
                                    <strong>Share</strong> <span>The 21 best movies of 2017</span>
                                </div>
                                <div class="c-social-buttons__popover-body">
                                    <a class="c-social-buttons__item c-social-buttons__twitter" href="https://twitter.com/intent/tweet?counturl=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;text=The+21+best+movies+of+2017&amp;url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;via=voxdotcom" data-analytics-social="twitter"><svg class="p-svg-icon c-social-buttons__svg">
                                    <use xlink:href="#icon-twitter"></use></svg> <span class="c-social-buttons__text">tweet</span></a> <a class="c-social-buttons__item c-social-buttons__facebook" href="https://www.facebook.com/sharer/sharer.php?text=The+21+best+movies+of+2017&amp;u=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="facebook"><svg class="p-svg-icon c-social-buttons__svg">
                                    <use xlink:href="#icon-facebook"></use></svg> <span class="c-social-buttons__text">share</span></a> <a class="c-social-buttons__item c-social-buttons__reddit" href="https://reddit.com/submit?title=The+21+best+movies+of+2017&amp;url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="reddit"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 17 17" class="p-svg-icon c-social-buttons__svg">
                                    <path d="M8.5,0C3.8,0,0,3.8,0,8.5S3.8,17,8.5,17S17,13.2,17,8.5S13.2,0,8.5,0z M14,10.2c0,0.1,0,0.3,0,0.4c0,2.2-2.5,3.9-5.6,3.9 s-5.6-1.8-5.6-3.9c0-0.2,0-0.3,0-0.5C2.5,9.9,2.2,9.4,2.2,8.9c0-0.8,0.6-1.5,1.4-1.5c0.4,0,0.7,0.2,0.9,0.4C5.2,7.3,6,6.9,7,6.8 c0.3-0.1,0.3-0.1,0.7-0.1l0.7-3.1C8.6,2.9,8.8,2.9,9.3,3C11.1,3.5,12,3.7,12,3.7c0.2-0.3,0.5-0.3,0.8-0.3c0.6,0,1.1,0.5,1.1,1.2 s-0.5,1.2-1.1,1.2c-0.5,0-1-0.5-1.1-1c0,0-0.7-0.2-2.2-0.6C9.1,5.9,8.9,6.7,8.9,6.7c1.3,0.1,2.6,0.5,3.5,1.1c0.3-0.3,0.6-0.4,1-0.4 c0.8,0,1.4,0.7,1.4,1.5C14.8,9.4,14.5,9.9,14,10.2z"></path>
                                    <path d="M10.2,12.2c-0.3,0.4-0.9,0.5-1.7,0.5l0,0l0,0c-0.8,0-1.4-0.2-1.7-0.5c-0.1-0.1-0.2-0.1-0.3,0c-0.1,0.1-0.1,0.2,0,0.3 c0.4,0.4,1.1,0.7,2,0.7l0,0l0,0c0.9,0,1.6-0.2,2-0.7c0.1-0.1,0.1-0.2,0-0.3C10.4,12.1,10.3,12.1,10.2,12.2z"></path>
                                    <ellipse cx="6.6" cy="9.9" rx="0.8" ry="0.9"></ellipse>
                                    <ellipse cx="10.4" cy="9.9" rx="0.8" ry="0.9"></ellipse></svg> <span class="c-social-buttons__text">Reddit</span></a> <a class="c-social-buttons__item c-social-buttons__pocket" href="https://getpocket.com/save?url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="pocket"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 14" class="p-svg-icon c-social-buttons__svg">
                                    <path d="M14.4,0.1H2c-0.6,0-1.1,0.5-1.1,1.1v4.6c0,4,3.3,7.3,7.3,7.3c4,0,7.3-3.3,7.3-7.3V1.2C15.5,0.6,15,0.1,14.4,0.1 z M12.5,5.4L8.9,9C8.7,9.2,8.4,9.3,8.2,9.3C8,9.3,7.7,9.2,7.5,9L3.9,5.4C3.5,5,3.5,4.4,3.9,4c0.4-0.4,1-0.4,1.3,0l3,3l3-3 c0.4-0.4,1-0.4,1.3,0C12.9,4.4,12.9,5,12.5,5.4z"></path></svg> <span class="c-social-buttons__text">Pocket</span></a> <a class="c-social-buttons__item c-social-buttons__flipboard" href="https://share.flipboard.com/bookmarklet/popout?title=The+21+best+movies+of+2017&amp;url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;v=2" data-analytics-social="flipboard"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" class="p-svg-icon c-social-buttons__svg">
                                    <path d="M0,0v16h16V0H0z M12.9,6.4H9.6v3.2H6.5v3.2H3.2V3.2h9.7V6.4z"></path>
                                    <polygon opacity="0.13" points="6.5,3.2 6.5,6.4 9.8,6.4 12.9,6.4 12.9,3.2"></polygon>
                                    <polygon opacity="0.23" points="6.5,9.7 9.7,9.7 9.7,6.4 6.5,6.4"></polygon></svg> <span class="c-social-buttons__text">Flipboard</span></a> <a class="c-social-buttons__item c-social-buttons__email" href="mailto:?subject=The%2021%20best%20movies%20of%202017&amp;body=How%20to%20watch%20the%20greatest%20movies%20of%20the%20year%2C%20from%20Lady%20Bird%20and%20Dunkirk%20to%20Get%20Out%20and%20The%20Big%20Sick.%0A%0Ahttps%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="email"><svg class="p-svg-icon c-social-buttons__svg">
                                    <use xlink:href="#icon-email"></use></svg> <span class="c-social-buttons__text">Email</span></a>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="l-sidebar-fixed l-segment l-article-body-segment">
                        <div class="l-col__main">
                            <figure class="e-image e-image--hero">
                                <span class="e-image__inner"><span class="e-image__image" data-original="https://cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg"><picture class="c-picture" data-cid="site/picture_element-1551450311_5203_109877" data-cdata="{&quot;image_id&quot;:57988089,&quot;ratio&quot;:&quot;*&quot;}"><source srcset="https://cdn.vox-cdn.com/thumbor/fzkp7voik3nUibETXBKGfmR_wQc=/0x0:2300x1499/320x213/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 320w, https://cdn.vox-cdn.com/thumbor/TVbZ7RDf0dtLKq3D24xY8O6hSkw=/0x0:2300x1499/620x413/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 620w, https://cdn.vox-cdn.com/thumbor/mqaAql6eWvdgUK14SQu2CLTIV78=/0x0:2300x1499/920x613/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 920w, https://cdn.vox-cdn.com/thumbor/TU0idIq1vZILoSJFl3XVN4aelfw=/0x0:2300x1499/1220x813/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1220w, https://cdn.vox-cdn.com/thumbor/DtEdOunwgqWNwOUgvy2xOJ_oqX8=/0x0:2300x1499/1520x1013/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1520w, https://cdn.vox-cdn.com/thumbor/asbFWRmB27rKVTAOKP7qsChtMzg=/0x0:2300x1499/1820x1213/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1820w, https://cdn.vox-cdn.com/thumbor/eB6QD1FoawZHwPFYB4RDwr8c7SU=/0x0:2300x1499/2120x1413/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 2120w, https://cdn.vox-cdn.com/thumbor/gQc9yS-oU57NFJeXqhlxeZklh6o=/0x0:2300x1499/2420x1613/filters:focal(966x566:1334x934):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 2420w" sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" type="image/webp" /> <img srcset="https://cdn.vox-cdn.com/thumbor/c0uhXmUMa_RU4nJ9g_hxm0QVPBs=/0x0:2300x1499/320x213/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 320w, https://cdn.vox-cdn.com/thumbor/T3HbQrzv_06I8X_Yx6M78x43r7k=/0x0:2300x1499/620x413/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 620w, https://cdn.vox-cdn.com/thumbor/m0BGjqFueukwsnyz6nG-nxkmB_w=/0x0:2300x1499/920x613/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 920w, https://cdn.vox-cdn.com/thumbor/e4LZSSbFvukl8GhXSKiLH4CPLqw=/0x0:2300x1499/1220x813/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1220w, https://cdn.vox-cdn.com/thumbor/L8pYS-nF3E9omM2HitV09kq_5W4=/0x0:2300x1499/1520x1013/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1520w, https://cdn.vox-cdn.com/thumbor/dmYDxfr77EZjshg1yWcUH-qAbnY=/0x0:2300x1499/1820x1213/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 1820w, https://cdn.vox-cdn.com/thumbor/3Kdt-jfK8DRvZvxc6b0da0G3g6Y=/0x0:2300x1499/2120x1413/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 2120w, https://cdn.vox-cdn.com/thumbor/GodLHug8QzidFBWtF17GYU12fSI=/0x0:2300x1499/2420x1613/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg 2420w" sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" alt="" style="object-position: 50% 50%" data-upload-width="2300" src="https://cdn.vox-cdn.com/thumbor/WhBtiSXd3B_c9zlrjW08KU-7_OU=/0x0:2300x1499/1200x800/filters:focal(966x566:1334x934)/cdn.vox-cdn.com/uploads/chorus_image/image/57988089/Movies_end_of_year_2017.0.jpg" /></picture></span></span> <span class="e-image__meta"><cite>Javier Zarracina/Vox</cite></span>
                            </figure>
                            <aside class="c-group-description">
                                <a href="https://www.vox.com/2017-in-review" class="c-group-description__image"><img src="https://cdn.vox-cdn.com/uploads/chorus_image/image/57988065/2017_in_review.0.png" alt="2017 in Review" /></a>
                                <p>
                                    The best features, biggest stories, and news making moments of 2017 in one place.
                                </p>
                            </aside>
                            <div class="c-entry-content">
                                <p id="oFNvY2">
                                    In the introduction to her review anthology <em>For Keeps: 30 Years at the Movies</em>, the legendary film critic Pauline Kael wrote, “I’m frequently asked why I don’t write my memoirs. I think I have.” She meant what most movie critics realize at some point: that reading your past reviews and revisiting the lists of films you liked most during the year reveals not just something about a particular year in cinema, but something about you as well.
                                </p>
                                <p id="49aoQQ">
                                    That’s the feeling I get constructing my list of the best films of 2017, a year that overflowed with great films in every genre, from horror and romantic comedy to documentary and arthouse drama. Some of the films on my list have commonalities — ghosts, meditations on memory and interpersonal connection, and women who refuse to behave — but mostly they underscore just how vibrant cinema remains as an art form, even in the midst of massive cultural shifts in the industry and beyond. And it is a keen reminder to me of all the 2017 conversations I’ve had around and at the movies — and the ways I will never be the same.
                                </p>
                                <p id="dC0oTJ">
                                    Here are my top 21 films of 2017 and how to watch them at home, with 14 honorable mentions.
                                </p>
                                <h3 id="jDDW9T">
                                    21) <a href="https://www.vox.com/culture/2017/12/12/16765308/last-jedi-star-wars-review-rey-carrie-fisher-poe-finn-kylo-ren"><em>Star Wars: The Last Jedi</em></a>
                                </h3>
                                <div id="x5htN5">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/Q0CbN8sfihY?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="WdtoaT">
                                    I am as shocked as anyone that a <em>Star Wars</em> movie found its way onto my list — but I was bowled over by <em>The Last Jedi</em>, which may be one of the series’ best. In the hands of writer-director <a href="https://www.vox.com/culture/2017/12/13/16761916/rian-johnson-star-wars-last-jedi-looper-brick-brothers-bloom-fly-breaking-bad">Rian Johnson</a> (who will also oversee <a href="https://www.theverge.com/2017/11/9/16630902/star-wars-new-trilogy-rian-johnson-disney-lucasfilm">a new <em>Star Wars</em> trilogy</a>), <em>The Last Jedi</em> is beautiful to look at and keeps its eye on the relationships between characters and how they communicate with one another, in addition to the bigger galactic story. The same characters are back, but they seem infused with new life, and the galaxy with a new kind of hope. The movie’s best details are in the strong bonds that develop between characters, and I left the film with the realization that for the first time in my life, I loved a <em>Star Wars</em> movie. Now I understand the magic.
                                </p>
                                <p id="m6vJQd">
                                    Star Wars: The Last Jedi <em>is currently</em> <a href="https://www.netflix.com/watch/80192018?source=35"><em>streaming on Netflix</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=fgPqJgZepxM"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=fgPqJgZepxM"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="3XHosO">
                                    20) <a href="https://www.vox.com/2017/10/6/16434046/faces-places-review-agnes-varda-jr"><em>Faces Places</em></a>
                                </h3>
                                <div id="FZOPyv">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/KKbjnLpxv70?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="zP5jCd">
                                    The unusual documentary <a href="https://www.vox.com/2017/10/6/16434046/faces-places-review-agnes-varda-jr"><em>Faces Places</em></a> (in French, <em>Visages Villages</em>) turns on the friendship between the accomplished street artist JR and legendary film director Agnès Varda, whose work was central to the development of the French New Wave movement. The pair (whose difference in age is 55 years) met after years of admiring each other’s work and decided to create a documentary portrait of France — by making a number of actual portraits. The film chronicles a leg of the "Inside Outside Project," a roving art initiative in which JR makes enormous portraits of people he meets and pastes them onto buildings and walls. In the film, Varda joins him, and as they talk to people around the country, they grow in their understanding of themselves and of each other. The development of their friendship, which is both affectionate and mutually sharpening, forms <em>Faces Places</em>’ emotional center.
                                </p>
                                <p id="yIfUci">
                                    Faces Places <em>is currently</em> <a href="https://www.netflix.com/watch/80194288?source=35"><em>streaming on Netflix</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=WuB9Fl8nrzM"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=WuB9Fl8nrzM"><em>YouTube</em></a><em>.</em>
                                </p>
                                <aside id="7QqCJE">
                                    <div class="c-read-more">
                                        <p class="c-read-more__intro">
                                            Related
                                        </p>
                                        <h4>
                                            <a href="https://www.vox.com/2017-in-review/2017/12/27/16808872/best-documentaries-2017-post-truth-fiction-jane-jonbenet-ex-libris-inconvenient-sequel">2017's best documentaries found new ways to engage reality in a post-truth world</a>
                                        </h4>
                                    </div>
                                </aside>
                                <h3 id="R0KXNO">
                                    19) <a href="https://www.vox.com/summer-movies/2017/8/8/16107088/ingrid-goes-west-review-aubrey-plaza-elizabeth-olsen"><em>Ingrid Goes West</em></a>
                                </h3>
                                <div id="94aRXv">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/xP4vD1tWbPU?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="d2ZAUw">
                                    <a href="https://www.vox.com/summer-movies/2017/8/8/16107088/ingrid-goes-west-review-aubrey-plaza-elizabeth-olsen"><em>Ingrid Goes West</em></a> is a twisted and <a href="https://www.vox.com/culture/2017/8/9/16107140/matt-spicer-interview-ingrid-goes-west-dark-comedy-aubrey-plaza-sundance?utm_campaign=vox&amp;utm_content=chorus&amp;utm_medium=social&amp;utm_source=twitter">dark comedy</a> — part addiction narrative, part stalker story — and yet it’s set in a world that’s almost pathologically cheery: the glossy, sunny, nourishing, superfood- and superlative-loving universe of Instagram celebrity. But despite <em>Ingrid Goes West</em>’s spot-on take on that world, the best thing about the film is that it refuses to traffic in lazy buzzwords and easy skewering, particularly at the expense of young women. Instead, the movie conveys that behind every Instagram image and meltdown is a real person, with real insecurities, real feelings, and real problems. And it recognizes that living a life performed in public can be its own kind of self-deluding prison.
                                </p>
                                <p id="oGMXK4">
                                    Ingrid Goes West <em>is currently</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.hulu.com%2Fwatch%2F1205749" rel="nofollow noopener" target="_blank"><em>streaming on Hulu</em></a> <em>and available to digitally rent on</em> <a href="https://www.youtube.com/watch?v=c2O7KouP5CM"><em>YouTube</em></a> <em>and</em> <a href="https://play.google.com/store/movies/details?id=c2O7KouP5CM"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="qfZ4Iv">
                                    18) <a href="https://www.vox.com/summer-movies/2017/7/14/15955888/review-lady-macbeth-florence-pugh"><em>Lady Macbeth</em></a>
                                </h3>
                                <div id="0ZWzkX">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/2Z0N8ULhuUA?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="Ii1QS5">
                                    <a href="https://www.vox.com/summer-movies/2017/7/14/15955888/review-lady-macbeth-florence-pugh"><em>Lady Macbeth</em></a> is no placid costume drama. Adapted from an 1865 Russian novella by Nikolai Leskov, the movie follows Katherine (the astounding Florence Pugh), a woman in the Lady Macbeth line characterized by a potent cocktail of very few scruples and a lot of determination. She's a chilling avatar for the ways that class and privilege — both obvious and hidden — insulate some people from the consequences of their actions while damning others. <em>Lady Macbeth</em> is also a dazzling directorial debut from William Oldroyd, a thrilling combination of sex, murder, intrigue, and power plays. It’s visually stunning, each frame composed so carefully and deliberately that the wildness and danger roiling just below the surface feels even more frightening. Each scene ratchets up the tension to an explosive, chilling end.
                                </p>
                                <p id="e2nBAO">
                                    Lady Macbeth <em>is currently streaming on</em> <a href="https://play.hbogo.com/feature/urn:hbo:feature:GWrEd3wdB_LiWwwEAAAIk?camp=Search&amp;play=true"><em>HBO Go</em></a> <em>and</em> <a href="https://play.hbonow.com/feature/urn:hbo:feature:GWrEd3wdB_LiWwwEAAAIk?camp=Search&amp;play=true"><em>HBO Now</em></a><em>, and it is available to digitally rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB074HJGH3F%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon Prime</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F891310" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>,</em> <a href="https://www.youtube.com/watch?v=l8vAACgcUCo"><em>YouTube</em></a><em>,</em> <a href="https://play.google.com/store/movies/details?id=l8vAACgcUCo"><em>iTunes</em></a><em>, and</em> <a href="https://play.google.com/store/movies/details?id=l8vAACgcUCo"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="JhEBod">
                                    17) <em>BPM (Beats Per Minute)</em>
                                </h3>
                                <div id="t3derk">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/2fhO2A4SL24?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="DEyp0A">
                                    <em>BPM (Beats Per Minute)</em> is a remarkably tender and stirring story of the Paris chapter of ACT UP, an AIDS activism group, and the young people who found themselves caught in the crosshairs of the AIDS crisis in the early 1990s. The film follows both the group's actions and the individual members’ shifting relationships to one another — enemies becoming friends, friends becoming lovers, lovers becoming caretakers — as well as their struggles with the disease wracking their community. As an account of the period, it’s riveting; as an exploration of life and love set at the urgent intersection of the political and the personal, it’s devastating.
                                </p>
                                <p id="8vBdkS">
                                    BPM (Beats Per Minute) <em>is currently</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.hulu.com%2Fwatch%2F1258801" rel="nofollow noopener" target="_blank"><em>streaming on Hulu</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=xrjoEWj6gLg"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=xrjoEWj6gLg"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="jocryI">
                                    16) <a href="https://www.vox.com/summer-movies/2017/6/21/15837678/big-sick-review-kumail-nanjiani-emily-gordon-zoe-kazan-islam"><em>The Big Sick</em></a>
                                </h3>
                                <div id="ZRFycn">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/PJmpSMRQhhs?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="DqZc5Q">
                                    Few 2017 movies could top the charm and tenderness of <a href="https://www.vox.com/summer-movies/2017/6/21/15837678/big-sick-review-kumail-nanjiani-emily-gordon-zoe-kazan-islam"><em>The Big Sick</em></a>, which hits all the right romantic comedy notes with one unusual distinction: It feels like real life. That’s probably because <em>The Big Sick</em> is written by <a href="https://www.vox.com/2017/11/22/16687092/the-big-sick-kumail-nanjiani-emily-gordon-real-story">real-life married couple</a> Emily V. Gordon and <em>Silicon Valley</em>'s Kumail Nanjiani, and based on their real-life romance. <em>The Big Sick</em> — which stars Nanjiani as a version of himself, alongside Zoe Kazan as Emily — is funny and sweet while not backing away from matters that romantic comedies don’t usually touch on, like serious illness, struggles in long-term marriages, and religion. As it tells the couple’s story, which takes a serious turn when Emily falls ill with a mysterious infection and her parents (played by Holly Hunter and Ray Romano) come to town, it becomes a funny and wise story about real love.
                                </p>
                                <p id="Wgpjgu">
                                    The Big Sick <em>is currently</em> <em>streaming on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FBig-Sick-Kumail-Nanjiani%2Fdp%2FB07193L7RD%2Fref%3Dsr_1_1%3Fie%3DUTF8%26qid%3D1532454848" rel="nofollow noopener" target="_blank"><em>Amazon Prime</em></a> <em>and available to digitally rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fmovie%2Fthe-big-sick%2Fid1246483301" rel="nofollow noopener" target="_blank"><em>iTunes</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F865258" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB071HFCYDH%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://www.youtube.com/watch?v=WUX0wW2OMkA"><em>YouTube</em></a><em>, and</em> <a href="https://play.google.com/store/movies/details?id=WUX0wW2OMkA"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="dFyVjw">
                                    15) <a href="https://www.vox.com/culture/2017/9/10/16277234/mother-review-aronofsky-lawrence-bardem-tiff"><em>Mother!</em></a>
                                </h3>
                                <div id="kUMpyj">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/XpICoc65uh0?rel=0&amp;amp;start=17" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="LA1s4n">
                                    There’s so much pulsing beneath <a href="https://www.vox.com/culture/2017/9/10/16277234/mother-review-aronofsky-lawrence-bardem-tiff">the surface of <em>Mother!</em></a> that it’s hard to grab on to just one theme as what it “means.” It’s full-on apocalyptic fiction, and like all stories of apocalypse, it’s intended to draw back the veil on reality and show us what’s really beneath. And this movie gets wild: If its gleeful cracking apart of traditional theologies doesn’t get you (there’s a lot of Catholic folk imagery here, complete with an Ash Wednesday-like mud smearing on the foreheads of the faithful), its bonkers scenes of chaos probably will. <em>Mother!</em> is a movie designed to provoke fury, ecstasy, madness, catharsis, and more than a little awe. Watching it, and then participating in the flurry of arguments and discussions unpacking it, was among my best moviegoing experiences of 2017.
                                </p>
                                <p id="mxI0Kb">
                                    Mother! <em>is available to digitally purchase on</em> <a href="https://play.google.com/store/movies/details?id=F9p9HlSbIuU"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=F9p9HlSbIuU"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="PL5PTS">
                                    14) <a href="https://www.vox.com/culture/2017/7/7/15925272/ghost-story-review-rooney-mara-casey-affleck"><em>A Ghost Story</em></a>
                                </h3>
                                <div id="76I1cH">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/0Vb0F_CN83E?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="JWA6Pb">
                                    Director <a href="https://www.vox.com/summer-movies/2017/7/13/15960236/david-lowery-ghost-story-interview">David Lowery</a> filmed <a href="https://www.vox.com/culture/2017/7/7/15925272/ghost-story-review-rooney-mara-casey-affleck"><em>A Ghost Story</em></a> in secret, then premiered it at the Sundance Film Festival to critical acclaim. The movie starts out being about a grieving widow (Rooney Mara) trying to live through the pain of losing her beloved husband, but it soon shifts focus to the ghost of her husband (Casey Affleck, covered in a sheet), evolving into a compelling rumination on the nature of time, memory, history, and the universe. Bathed in warm humor and wistful longing, it's a film that stays with you long after it’s over, a lingering reminder of the inextricable link between love and place.
                                </p>
                                <p id="9CatN2">
                                    A Ghost Story <em>is available to digitally rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fmovie%2Fa-ghost-story%2Fid1252853654%3Fat%3D1001l6hu%26ct%3Dgca_organic_movie-title_1252853654" rel="nofollow noopener" target="_blank"><em>iTunes</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F875682" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB075K4YG8P%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://play.google.com/store/movies/details?id=cGUoTWQIcP0"><em>Google Play</em></a><em>, and</em> <a href="https://www.youtube.com/watch?v=cGUoTWQIcP0"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="rRIM9r">
                                    13) <a href="https://www.vox.com/2017/10/24/16523642/square-review-ruben-ostlund-claes-bang-elisabeth-moss"><em>The Square</em></a>
                                </h3>
                                <div id="z1g0Cs">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/EUzRjRv0Ib0?rel=0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="NavzzU">
                                    Winner of the Palme d’Or at the 2017 Cannes Film Festival, <a href="https://www.vox.com/2017/10/24/16523642/square-review-ruben-ostlund-claes-bang-elisabeth-moss"><em>The Square</em></a> is a hilariously needling comedy about the contemporary art world, as well as the kind of idealistic liberalism that is tough to maintain in the face of real problems. The outstanding Claes Bang stars as Christian, a curator whose cluelessness leads him into some outlandishly rough spots, with Elisabeth Moss in a too-short but brilliant part as an American journalist who won’t let him get away with his shenanigans. It’s a heady film with a lot of ideas ricocheting around — and a <em>lot</em> of uncomfortable satire — but if you (like me) are the sort of viewer who loves that stuff, its sly jabs at the veneer of civilization that keeps the social contract intact are intoxicating.
                                </p>
                                <p id="2iTOd5">
                                    The Square <em>is currently</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.hulu.com%2Fwatch%2F1228556" rel="nofollow noopener" target="_blank"><em>streaming on Hulu</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=OaD-B0aK9aw"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=OaD-B0aK9aw"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="Px2hT6">
                                    12) <a href="https://www.vox.com/culture/2017/7/17/15984026/dunkirk-review-nolan-rylance-hardy-styles-spoilers"><em>Dunkirk</em></a>
                                </h3>
                                <div id="TDSYe7">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/F-eMt3SrfFU?rel=0&amp;amp;start=24" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="MLatLf">
                                    <a href="https://www.vox.com/culture/2017/7/17/15984026/dunkirk-review-nolan-rylance-hardy-styles-spoilers"><em>Dunkirk</em></a>, a true cinematic achievement from acclaimed director Christopher Nolan, backs off conventional notions of narrative and chronology as much as possible, while leaning headfirst into everything else that makes a movie a visceral work of art aimed at the senses: the images, the sounds, the scale, the swelling vibrations of it all. You can’t smell the sea spray, but your brain may trick you into thinking you can. Nolan’s camera pushes the edges of the screen as far as it can as <em>Dunkirk</em> engulfs the audience in something that feels like a lot more than a war movie. It’s a symphony for the brave and broken, and it resolves in a major key — but one with an undercurrent of sorrow, and of sober warning. Courage in the face of danger is not just for characters in movies.
                                </p>
                                <p id="cmMBuS">
                                    Dunkirk <em>is currently streaming on</em> <a href="https://play.hbogo.com/feature/urn:hbo:feature:GWqvX7wxdtyl0YAEAAAFv?camp=Search&amp;play=true"><em>HBO Go</em></a> <em>and</em> <a href="https://play.hbonow.com/feature/urn:hbo:feature:GWqvX7wxdtyl0YAEAAAFv?camp=Search&amp;play=true"><em>HBO Now</em></a><em>, and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=yOJhvgczBNk"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=yOJhvgczBNk"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="CPlXz5">
                                    11) <em>Rat Film</em>
                                </h3>
                                <div id="s6q4gj">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/f-kpMAKc0l4?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="GFFO6D">
                                    <em>Rat Film</em> is about rats, yes — and rat poison experts and rat hunters and people who keep rats as pets. But it’s also about the history of eugenics, dubious science, <a href="https://en.wikipedia.org/wiki/Redlining">“redlining,”</a> and segregated housing in Baltimore. All these pieces come together to form one big essay, where the meaning of each vignette only becomes clearer in light of the whole. It’s a fast-paced, no-holds-barred exploration of a damning history, and it accrues meaning as the images, sounds, and text pile up.
                                </p>
                                <p id="HkeUxt">
                                    Rat Film <em>is available to digitally rent on</em> <a href="https://www.youtube.com/watch?v=ZZlweN7XXJ4"><em>YouTube</em></a> <em>and</em> <a href="https://play.google.com/store/movies/details?id=ZZlweN7XXJ4"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="Qgio0l">
                                    10) <a href="https://www.vox.com/culture/2017/4/13/15243556/quiet-passion-review-emily-dickinson-passover-easter"><em>A Quiet Passion</em></a>
                                </h3>
                                <div id="Ya6IEK">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/T3SyPbUTEeU?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="EO0XbC">
                                    <a href="https://www.vox.com/culture/2017/4/13/15243556/quiet-passion-review-emily-dickinson-passover-easter"><em>A Quiet Passion</em></a> is technically a biographical film about Emily Dickinson, but it transcends its genre to become something more like poetry. It’s a perplexing and challenging film, crafted without the traditional guardrails that guide most biographical movies — dates, times, major accomplishments, and so on. Time slips away in the film almost imperceptibly, and the narrative arc doesn’t yield easily to the viewer. Cynthia Nixon plays Emily Dickinson, whose poetry and life is a perfect match for the signature style of director Terence Davies: rich in detail, deeply enigmatic, and weighed down with a kind of sparkling, joy-tinged sorrow. <em>A Quiet Passion</em> is a portrait, both visual and narrative, of the kind of saint most modern people can understand: one who is certain of her uncertainty, and yearning to walk the path on which her passion and longing meet.
                                </p>
                                <p id="YuHQ0h">
                                    A Quiet Passion <em>is currently streaming on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB072FP21C5%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon Prime</em></a> <em>and available to digitally rent or purchase on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fmovie%2Fa-quiet-passion%2Fid1238938795" rel="nofollow noopener" target="_blank"><em>iTunes</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F859491" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB072FP21C5%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://www.youtube.com/watch?v=de0ELdfPGik"><em>YouTube</em></a><em>, and</em> <a href="https://play.google.com/store/movies/details?id=de0ELdfPGik"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="7dz2o3">
                                    9) <em>Columbus</em>
                                </h3>
                                <div id="ZfQfEI">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/r3dcnV6Z9Zs?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="pM0BdD">
                                    <em>Columbus</em> is a stunner of a debut from video essayist turned director Kogonada. Haley Lu Richardson stars as Casey, a young woman living in Columbus, Indiana, who cares for her mother, works at a library, and harbors a passion for architecture. (Columbus is a mecca for modernist architecture scholars and enthusiasts.) When a visiting architecture scholar falls into a coma in Columbus, his estranged son Jin (John Cho) arrives to wait for him and strikes up a friendship with Casey, who starts to show him her favorite buildings. The two begin to unlock something in each other that’s hard to define but life-changing for both. <em>Columbus</em> is beautiful and subtle, letting us feel how the places we build and the people we let near us move and mold us.
                                </p>
                                <p id="P7j9oY">
                                    Columbus <em>is currently</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.hulu.com%2Fwatch%2F1185842" rel="nofollow noopener" target="_blank"><em>streaming on Hulu</em></a> <em>and available to rent on</em> <a href="https://play.google.com/store/movies/details?id=I-j0IqPQaYU"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=I-j0IqPQaYU"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="wkyPUl">
                                    8) <a href="https://www.vox.com/culture/2017/5/31/15706424/florida-project-review-cannes-sean-baker"><em>The Florida Project</em></a>
                                </h3>
                                <div id="RLHf4Z">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/WwQ-NH1rRT4?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="J6kOkz">
                                    Sean Baker’s <a href="https://www.vox.com/culture/2017/5/31/15706424/florida-project-review-cannes-sean-baker"><em>The Florida Project</em></a> unfolds at first like a series of sketches about the characters who live in a purple-painted, $35-a-night motel called the Magic Castle down the street from Disney World. The film is held together by the hysterical antics of a kid named Moonee and her pack of young friends, as well as long-suffering hotel manager Bobby (a splendid, warm Willem Dafoe), who tries to put up with it all while keeping some kind of order. But as <em>The Florida Project</em> goes on, a narrative starts to form, one that chronicles with heartbreaking attention the sort of dilemmas that face poor parents and their children in America, and the broken systems that try to cope with impossible situations.
                                </p>
                                <p id="xG8Q8C">
                                    The Florida Project <em>is currently streaming on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FFlorida-Project-Willem-Dafoe%2Fdp%2FB0764MS7GQ%2Fref%3Dsr_1_2%3Fs%3Dinstant-video%26ie%3DUTF8%26qid%3D1532455499%26sr%3D1-2%26keywords%3Dthe%2Bflorida%2Bproject" rel="nofollow noopener" target="_blank"><em>Amazon Prime</em></a> <em>and available to digitally rent on</em> <a href="https://www.youtube.com/watch?v=MLsXQdPAlws"><em>YouTube</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2Fdetails%2Ftitle%2F922802" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>, and</em> <a href="https://play.google.com/store/movies/details?id=MLsXQdPAlws"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="rLGNAf">
                                    7) <a href="https://www.vox.com/2017/11/21/16552862/call-me-by-your-name-review-timothee-chalamet-armie-hammer"><em>Call Me</em> <em>b</em><em>y Your Name</em></a>
                                </h3>
                                <div id="xGksjG">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/Z9AYPxH5NTM?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="KyeOGQ">
                                    Luca Guadagnino’s gorgeous film <a href="https://www.vox.com/2017/11/21/16552862/call-me-by-your-name-review-timothee-chalamet-armie-hammer"><em>Call Me</em> <em>b</em><em>y Your Name</em></a> adapts André Aciman’s <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FCall-Me-Your-Name-Novel%2Fdp%2F031242678X" rel="nofollow noopener" target="_blank">2007 novel</a> about a precocious 17-year-old named Elio (Timothée Chalamet), who falls in lust and love with his father’s 24-year-old graduate student Oliver (Armie Hammer). It’s remarkable for how it turns literature into pure cinema, all emotion and image and heady sensation. Set in 1983 in Northern Italy, <em>Call Me</em> <em>b</em><em>y Your Name</em> is less about coming out than coming of age, but it also captures a particular sort of love that’s equal parts passion and torment, a kind of irrational heart fire that opens a gate into something longer-lasting. The film is a lush, heady experience for the body, but it’s also an arousal for the soul.
                                </p>
                                <p id="VA1se2">
                                    <em>Call Me By Your Name</em> is available to digitally purchase on <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FCall-Your-Name-Armie-Hammer%2Fdp%2FB0791VJLVB%2Fref%3Dsr_1_2%3Fs%3Dinstant-video%26ie%3DUTF8%26qid%3D1532455686%26sr%3D1-2%26keywords%3Dcall%2Bme%2Bby%2Byour%2Bname" rel="nofollow noopener" target="_blank">Amazon,</a> <a href="https://www.youtube.com/watch?v=48o3YYnEUQ4">YouTube</a>, and <a href="https://play.google.com/store/movies/details?id=48o3YYnEUQ4">Google Play</a>.
                                </p>
                                <h3 id="h6Biwc">
                                    6) <em>Personal Shopper</em>
                                </h3>
                                <div id="NSQg2p">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/xC8AjoqpBAY?rel=0&amp;amp;start=15" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="pofJH9">
                                    In her second collaboration with French director <a href="http://www.imdb.com/name/nm0000801/?ref_=fn_al_nm_1">Olivier Assayas</a>, Kristen Stewart plays a personal shopper to a wealthy socialite, with a sideline as an amateur ghost hunter who’s searching for her dead twin brother. <em>Personal Shopper</em> is deeper than it seems at first blush, a meditation on grief and an exploration of “between” places — on the fringes of wealth, and in the space between life and death. Some souls are linked in a way that can’t be shaken, and whether or not there’s an afterlife doesn’t change the fact that we see and sense them everywhere. (<em>Personal Shopper</em> also has one of the most tense extended scenes involving text messaging ever seen onscreen.)
                                </p>
                                <p id="8hmlTU">
                                    Personal Shopper <em>is currently</em> <a href="https://www.showtime.com/#/movie/3436534"><em>streaming on Showtime</em></a> <em>and available to rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F871777" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>,</em> <a href="https://www.youtube.com/watch?v=-BgiO6uDH7I"><em>YouTube</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB072YWLGT2%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fmovie%2Fpersonal-shopper%2Fid1241184797" rel="nofollow noopener" target="_blank"><em>iTunes</em></a><em>, and</em> <a href="https://play.google.com/store/movies/details?id=-BgiO6uDH7I"><em>Google Play</em></a><em>.</em>
                                </p>
                                <h3 id="0RkMKy">
                                    5) <em>Princess Cyd</em>
                                </h3>
                                <div id="7Tj1H6">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/sr64EJfnJwE?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="2tSIHW">
                                    Stephen Cone is a master of small, carefully realized filmmaking; his earlier films such as <em>The Wise Kids</em> and <em>Henry Gamble’s Birthday Party</em> combine an unusual level of empathy for his characters with an unusual combination of interests: love, desire, sexual awakenings, and religion. <em>Princess Cyd</em> is his most accomplished film yet, about a young woman named Cyd (<a href="http://www.imdb.com/name/nm6570557/?ref_=tt_cl_t2">Jessie Pinnick</a>) who finds herself attracted to Katie (<a href="http://www.imdb.com/name/nm5154548/?ref_=tt_cl_t3">Malic White</a>), a barista, while visiting her Aunt Miranda (<a href="http://www.imdb.com/name/nm2050642/?ref_=tt_cl_t1">Rebecca Spence</a>, playing a character modeled on the author Marilynne Robinson) in Chicago. As she works through her own sexual awakening with Katie, Cyd unwinds some of the ways Miranda’s life has gotten too safe. They provoke each other while forming a bond and being prodded toward a bigger understanding of the world. It is a graceful and honest film, and it feels like a modest miracle.
                                </p>
                                <p id="HDD90m">
                                    Princess Cyd <em>is currently</em> <a href="https://www.netflix.com/watch/80201497?source=35"><em>streaming on Netflix</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=sy8otjxDw8w"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=sy8otjxDw8w"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="ADtiAV">
                                    4) <a href="https://www.vox.com/culture/2017/2/24/14698632/get-out-review-jordan-peele"><em>Get Out</em></a>
                                </h3>
                                <div id="swjmhh">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/sRfnevzM9kQ?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="h1ighb">
                                    Racism is sinister, frightening, and deadly. But <a href="https://www.vox.com/culture/2017/2/24/14698632/get-out-review-jordan-peele"><em>Get Out</em></a> (a stunning directorial debut from <em>Key &amp; Peele</em>'s Jordan Peele) isn’t about the blatantly, obviously scary kind of racism — burning crosses and lynchings and snarling hate. Instead, it’s interested in showing how the parts of racism that try to be aggressively unscary are just as horrifying, and it’s interested in making us feel that horror in a visceral, bodily way. In the tradition of the best classic social thrillers, <em>Get Out</em> takes a topic that is often approached cerebrally — casual racism — and turns it into something you feel in your tummy. And it does it with a wicked sense of humor.
                                </p>
                                <p id="2ef6GU">
                                    Get Out <em>is currently streaming on</em> <a href="https://play.hbogo.com/feature/urn:hbo:feature:GWbhJDwNIacPCwgEAAAG5?camp=Search&amp;play=true"><em>HBO Go</em></a> <em>and</em> <a href="https://play.hbonow.com/feature/urn:hbo:feature:GWbhJDwNIacPCwgEAAAG5?camp=Search&amp;play=true"><em>HBO Now</em></a><em>, and is available to digitally rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fmovie%2Fget-out%2Fid1202441786" rel="nofollow noopener" target="_blank"><em>iTunes</em></a><em>,</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fvideo%2Fdetail%2FB06Y1H48K7%2Fref%3Datv_dl_rdr" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://play.google.com/store/movies/details?id=YfLSryEaAfw"><em>Google Play</em></a><em>,</em> <a href="https://www.youtube.com/watch?v=YfLSryEaAfw"><em>YouTube</em></a><em>, and</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.vudu.com%2Fcontent%2Fmovies%2F%23%21content%2F832496%2FGet-Out" rel="nofollow noopener" target="_blank"><em>Vudu</em></a><em>.</em>
                                </p>
                                <h3 id="TQbjNr">
                                    3) <em>The Work</em>
                                </h3>
                                <div id="GYqgVe">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/h8OVXG2GhpQ?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="3Uotb3">
                                    <em>The Work</em> is an outstanding, astonishing accomplishment and a viewing experience that will leave you shaken (but in a good way). At Folsom Prison in California, incarcerated men regularly participate in group therapy, and each year other men from the “outside” apply to participate in an intense four-day period of group therapy alongside Folsom’s inmates. <em>The Work</em> spends almost all of its time inside the room where that therapy happens, observing the strong, visceral, and sometimes violent emotions the men feel as they expose the hurt and raw nerves that have shaped how they encounter the world. Watching is not always easy, but by letting us peek in, the film invites viewers to become part of the experience — as if we, too, are being asked to let go.
                                </p>
                                <p id="qjxiQW">
                                    The Work <em>is</em> <a href="https://www.topic.com/the-work"><em>streaming on Topic.com</em></a> <em>and available to digitally rent on</em> <a href="https://play.google.com/store/movies/details?id=iddt4sVZTvI"><em>Google Play</em></a> <em>and</em> <a href="https://www.youtube.com/watch?v=iddt4sVZTvI"><em>YouTube</em></a><em>.</em>
                                </p>
                                <h3 id="kUrRP6">
                                    2) <em>Ex Libris</em>
                                </h3>
                                <div id="Lb1IzW">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/YzKrlOFZBD8?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="rGpjUU">
                                    Frederick Wiseman is one of the towering giants of nonfiction film, a keen observer of American institutions — ranging from prisons to dance companies to welfare offices — for the past half-century. <em>Ex Libris</em> is his mesmerizing look at the New York Public Library and the many functions it fills, which go far beyond housing books. Wiseman works in the observational mode, which means his films contain no captions, dates, or talking-head interviews: We just see what his camera captured, which in this case includes community meetings, benefit dinners, after-school programs, readings with authors and scholars (including Richard Dawkins and Ta-Nehisi Coates), and NYPL patrons going about their business in the library’s branches all over the city. The result is almost hypnotic and, perhaps surprisingly, deeply moving. It makes a case for having faith in the public institutions where ordinary people work — away from the limelight, without trying to score political points — in order to make our communities truly better.
                                </p>
                                <p id="40B8Wq">
                                    Ex Libris <em>will air on PBS in the fall and then be available to cardholders in many library systems across the country via</em> <a href="https://www.kanopy.com/"><em>Kanopy</em></a><em>.</em>
                                </p>
                                <h3 id="QJNuyl">
                                    1) <a href="https://www.vox.com/2017/11/2/16552860/lady-bird-review-saoirse-ronan-greta-gerwig"><em>Lady Bird</em></a>
                                </h3>
                                <div id="mgxqrA">
                                    <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;">
                                        <iframe src="https://www.youtube.com/embed/cNi_HC839Wo?rel=0&amp;" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="allowfullscreen" scrolling="no"></iframe>
                                    </div>
                                </div>
                                <p id="z8uM1l">
                                    <em>Lady Bird</em> topped my list almost instantly, and only rose in my estimation on repeated viewings. For many who saw it (including me), it felt like a movie made not just for but <em>about</em> me. <em>Lady Bird</em> is a masterful, exquisite coming-of-age comedy starring the great Saoirse Ronan as Christine — or “Lady Bird,” as she’s re-christened herself — and it’s as funny, smart, and filled with yearning as its heroine. Writer-director Greta Gerwig made the film as an act of love, not just toward her hometown of Sacramento but also toward girlhood, and toward the feeling of always being on the outside of wherever real life is happening. <em>Lady Bird</em> is the rare movie that manages to be affectionate, entertaining, hilarious, witty, and confident. And one line from it struck me as the guiding principle of many of the year’s best films: “Don’t you think they are the same thing? Love, and attention?”
                                </p>
                                <p id="jqSCLV">
                                    Lady Bird <em>is currently streaming on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FLady-Bird-Saoirse-Ronan%2Fdp%2FB07734STRN%2Fref%3Dsr_1_3%3Fs%3Dinstant-video%26ie%3DUTF8%26qid%3D1532455686" rel="nofollow noopener" target="_blank"><em>Amazon Prime</em></a> <em>and available to digitally rent on</em> <a href="https://go.redirectingat.com?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FLady-Bird-Saoirse-Ronan%2Fdp%2FB07734STRN%2Fref%3Dsr_1_3%3Fs%3Dinstant-video%26ie%3DUTF8%26qid%3D1532455686" rel="nofollow noopener" target="_blank"><em>Amazon</em></a><em>,</em> <a href="https://play.google.com/store/movies/details?id=yBIPcwJ03V4"><em>Google Play</em></a><em>, and</em> <a href="https://www.youtube.com/watch?v=yBIPcwJ03V4"><em>YouTube</em></a><em>.</em>
                                </p>
                                <p id="EVymKt">
                                    <strong>Honorable mentions:</strong> <em>Marjorie Prime</em>, <em>Phantom Thread</em>, <a href="https://www.vox.com/culture/2017/4/28/15437008/casting-jonbenet-kitty-green-interview-netflix"><em>Casting JonBenet</em></a>, <a href="https://www.vox.com/2017/12/6/16682926/the-post-review-spieberg-streep-hanks-pentagon-nixon"><em>The Post</em></a>, <a href="https://www.vox.com/culture/2017/9/12/16288080/shape-of-water-del-toro-review-tiff"><em>The Shape of Water</em></a>, <a href="https://www.vox.com/summer-movies/2017/8/17/16150634/logan-lucky-review-soderbergh-tatum-driver-craig"><em>Logan Lucky</em></a>, <a href="https://www.vox.com/culture/2017/9/14/16301552/i-tonya-harding-kerrigan-review-tiff"><em>I, Tonya</em></a>, <a href="https://www.vox.com/culture/2017/4/13/15243584/lost-city-of-z-review-james-gray-charlie-hunnam-robert-pattinson"><em>The Lost City of Z</em></a>, <em>Graduation</em>, <em>Spettacolo</em>, <em>Loveless</em>, <em>Restless Creature: Wendy Whelan</em>, <em>In Transit</em>, <a href="https://www.vox.com/culture/2017/6/29/15844952/reagan-show-review"><em>The Reagan Show</em></a>
                                </p>
                            </div>
                            <div class="u-hidden-text" id="formatter-datter" data-cid="site/entry_formatter-1551450311_5805_109878" data-cdata="{&quot;svg_hr_illustration&quot;:&quot;&quot;}"></div>
                            <section class="c-nextclick">
                                <div class="c-related-list" data-cid="site/related_list-1551450312_8083_109879" data-cdata="{}">
                                    <h2 class="c-related-list__head">
                                        Next Up In <a href="https://www.vox.com/culture" class="c-related-list__group-name"><span>Culture</span></a>
                                    </h2>
                                    <ul>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="I have always been a True Detective skeptic. Season 3 made a believer." href="https://www.vox.com/culture/2019/3/1/18243121/true-detective-season-3-finale-recap-review">I have always been a True Detective skeptic. Season 3 made a believer.</a>
                                        </li>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="Captain Marvel hits theaters on March 8, 2019" href="https://www.vox.com/2019/2/28/18243513/captain-marvel-brie-larson-carol-danvers-news-updates">Captain Marvel hits theaters on March 8, 2019</a>
                                        </li>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="The 5 best TV debuts of February 2019" href="https://www.vox.com/culture/2019/2/28/18243599/best-tv-february-russian-doll-pen15-one-day-at-a-time">The 5 best TV debuts of February 2019</a>
                                        </li>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="How face tattoos turn unknown teens into internet stars" href="https://www.vox.com/the-goods/2019/2/28/18243480/face-tattoos-soundcloud-rap-youtube-justin-bieber">How face tattoos turn unknown teens into internet stars</a>
                                        </li>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="Leaving Neverland makes a devastating case against Michael Jackson" href="https://www.vox.com/culture/2019/2/27/18241432/leaving-neverland-review-michael-jackson-hbo-safechuck-robson">Leaving Neverland makes a devastating case against Michael Jackson</a>
                                        </li>
                                        <li>
                                            <a data-analytics-link="nextclicks" data-analytics-viewport="nextclicks" data-vars-analytics-link-title="The Masked Singer is one of TV’s oddest shows. Here’s how it was made." href="https://www.vox.com/culture/2019/2/27/18241269/masked-singer-interview-finale-recap-preview">The Masked Singer is one of TV’s oddest shows. Here’s how it was made.</a>
                                        </li>
                                        <div data-cid="site/entry_sponsorship/native_ad-zuIS/VvNjWwhJTgtGIpuyA==">
                                            <div class="m-native_ad_unit dynamic-native-ad-native_ad_linkset_link"></div>
                                        </div>
                                    </ul>
                                </div>
                            </section>
                        </div>
                        <div class="l-col__sidebar" data-analytics-placement="sidebar">
                            <div class="u-desktop-only">
                                <aside class="c-rock-list c-rock-list--image c-rock-list--trending" id="rock-">
                                    <h3 class="p-rock-head c-rock-list__title">
                                        <span class="c-rock-list__title-wrapper"><span class="c-rock-list__title-text">Most Read</span></span>
                                    </h3>
                                    <div class="c-rock-list__body">
                                        <ol class="c-rock-list__items">
                                            <li data-analytics-placement="sidebar:1">
                                                <a href="https://www.vox.com/world/2019/2/28/18244874/trump-north-korea-summit-kim-jong-un-sanctions" class="c-rock-list__link" data-analytics-link="trending" data-analytics-viewport="trending" data-chorus-optimize-id="18008915" data-chorus-optimize-module="entry-list">
                                                <div class="c-rock-list__image">
                                                    <picture class="c-picture" data-chorus-optimize-field="main_image" data-cid="site/picture_element-1551450312_4906_109881" data-cdata="{&quot;image_id&quot;:63147211,&quot;ratio&quot;:&quot;standard&quot;,&quot;dynamic_type&quot;:&quot;picture&quot;,&quot;lazy&quot;:true}">
                                                    <script type="text/template-picture" style="display: none;">
                                                    <![CDATA[




                                                    <source
                                                    srcset="https://cdn.vox-cdn.com/thumbor/ENoVUrKI5X0Fk3PahkN--cr5KEA=/0x0:1671x1065/250x188/filters:focal(312x284:578x550):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/21MY5RHwhN_S8dDAfqmc8IVlY5o=/0x0:1671x1065/500x375/filters:focal(312x284:578x550):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg 500w"
                                                    sizes="250px"
                                                    type="image/webp"
                                                    >


                                                    <img srcset="https://cdn.vox-cdn.com/thumbor/MXRg_vFgBk_4xPXkijJAVy1p6Y8=/0x0:1671x1065/250x188/filters:focal(312x284:578x550)/cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/Ritqzfzn_9eZUAnBywIOlIVL2UM=/0x0:1671x1065/500x375/filters:focal(312x284:578x550)/cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg 500w" sizes="250px" alt="" style="object-position: 26% 39%" data-upload-width="1671" src="https://cdn.vox-cdn.com/thumbor/ha469LK2mm7dB98rx9B-kyHTtlQ=/0x0:1671x1065/1200x900/filters:focal(312x284:578x550)/cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg" />

                                                    ]]>
                                                    </script> 
                                                    <script type="text/template-dynamic" style="display: none">
                                                    <![CDATA[


                                                    <img class="c-dynamic-image " alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_3115_109880" data-cdata='{"image_id":63147211,"ratio":"standard"}'>
                                                    <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63147211/1128043327.jpg.0.jpg"></noscript>

                                                    ]]>
                                                    </script></picture>
                                                </div><span class="c-rock-list__item--body"><span data-chorus-optimize-field="hed">North Korea contradicts Trump on the reason a summit deal fell apart</span> <span class="c-rock-list__entry-blurb">Trump said North Korea wanted all sanctions lifted. Pyongyang says that’s not quite what it wanted — but it still had a big ask.</span></span></a>
                                            </li>
                                            <li data-analytics-placement="sidebar:2">
                                                <a href="https://www.vox.com/the-goods/2019/2/28/18244996/tiktok-children-privacy-data-ftc-settlement" class="c-rock-list__link" data-analytics-link="trending" data-analytics-viewport="trending" data-chorus-optimize-id="18009037" data-chorus-optimize-module="entry-list">
                                                <div class="c-rock-list__image">
                                                    <picture class="c-picture" data-chorus-optimize-field="main_image" data-cid="site/picture_element-1551450312_5607_109883" data-cdata="{&quot;image_id&quot;:63146546,&quot;ratio&quot;:&quot;standard&quot;,&quot;dynamic_type&quot;:&quot;picture&quot;,&quot;lazy&quot;:true}">
                                                    <script type="text/template-picture" style="display: none;">
                                                    <![CDATA[




                                                    <source
                                                    srcset="https://cdn.vox-cdn.com/thumbor/kPAYmuWtuYOLLfddx__DHdtElD0=/0x0:3045x2000/250x188/filters:focal(996x780:1482x1266):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/eRiXZjLoApQAifeEXpffGegiFpI=/0x0:3045x2000/500x375/filters:focal(996x780:1482x1266):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg 500w"
                                                    sizes="250px"
                                                    type="image/webp"
                                                    >


                                                    <img srcset="https://cdn.vox-cdn.com/thumbor/ykKujJmTBMrtwyck12Blb8M1hEc=/0x0:3045x2000/250x188/filters:focal(996x780:1482x1266)/cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/wNqU2CyFT-CUKMFs8kGVDZR3Kjo=/0x0:3045x2000/500x375/filters:focal(996x780:1482x1266)/cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg 500w" sizes="250px" alt="" style="object-position: 40% 51%" data-upload-width="3045" src="https://cdn.vox-cdn.com/thumbor/n98GqNFShyig8DEhcuHQSndxQ7U=/0x0:3045x2000/1200x900/filters:focal(996x780:1482x1266)/cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg" />

                                                    ]]>
                                                    </script> 
                                                    <script type="text/template-dynamic" style="display: none">
                                                    <![CDATA[


                                                    <img class="c-dynamic-image " alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_7653_109882" data-cdata='{"image_id":63146546,"ratio":"standard"}'>
                                                    <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63146546/GettyImages_1058608380.0.jpg"></noscript>

                                                    ]]>
                                                    </script></picture>
                                                </div><span class="c-rock-list__item--body"><span data-chorus-optimize-field="hed">TikTok has been illegally collecting children’s data</span> <span class="c-rock-list__entry-blurb">TikTok is paying the FTC a record fine of $5.7 million for collecting the data of kids under 13.</span></span></a>
                                            </li>
                                            <li data-analytics-placement="sidebar:3">
                                                <a href="https://www.vox.com/policy-and-politics/2019/2/28/18244677/alexandria-ocasio-cortez-michael-cohen-testimony-tax-returns" class="c-rock-list__link" data-analytics-link="trending" data-analytics-viewport="trending" data-chorus-optimize-id="18008718" data-chorus-optimize-module="entry-list">
                                                <div class="c-rock-list__image">
                                                    <picture class="c-picture" data-chorus-optimize-field="main_image" data-cid="site/picture_element-1551450312_2340_109885" data-cdata="{&quot;image_id&quot;:63145492,&quot;ratio&quot;:&quot;standard&quot;,&quot;dynamic_type&quot;:&quot;picture&quot;,&quot;lazy&quot;:true}">
                                                    <script type="text/template-picture" style="display: none;">
                                                    <![CDATA[




                                                    <source
                                                    srcset="https://cdn.vox-cdn.com/thumbor/4SGZBjAUMHw3DSklg1bmL2z49RA=/0x0:5472x3648/250x188/filters:focal(1350x1084:2224x1958):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/sizqc89NV4OhAKFd8JpyfbgQwwY=/0x0:5472x3648/500x375/filters:focal(1350x1084:2224x1958):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg 500w"
                                                    sizes="250px"
                                                    type="image/webp"
                                                    >


                                                    <img srcset="https://cdn.vox-cdn.com/thumbor/mjnSDoG8dT8yAxRMSAmogp-I09s=/0x0:5472x3648/250x188/filters:focal(1350x1084:2224x1958)/cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/ukLWFDZ4zR-pSR1CLnv2MI8b1Hg=/0x0:5472x3648/500x375/filters:focal(1350x1084:2224x1958)/cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg 500w" sizes="250px" alt="" style="object-position: 32% 41%" data-upload-width="5472" src="https://cdn.vox-cdn.com/thumbor/_svmCTZK-rfxLF-oNBCOXU8fpQQ=/0x0:5472x3648/1200x900/filters:focal(1350x1084:2224x1958)/cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg" />

                                                    ]]>
                                                    </script> 
                                                    <script type="text/template-dynamic" style="display: none">
                                                    <![CDATA[


                                                    <img class="c-dynamic-image " alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_6930_109884" data-cdata='{"image_id":63145492,"ratio":"standard"}'>
                                                    <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63145492/1127850147.jpg.0.jpg"></noscript>

                                                    ]]>
                                                    </script></picture>
                                                </div><span class="c-rock-list__item--body"><span data-chorus-optimize-field="hed">Why the answers Michael Cohen gave to Alexandria Ocasio-Cortez’s questions mattered</span> <span class="c-rock-list__entry-blurb">AOC got Cohen to name names — and help build a case for getting Trump’s tax returns.</span></span></a>
                                            </li>
                                            <li data-analytics-placement="sidebar:4">
                                                <a href="https://www.vox.com/culture/2019/2/27/18241432/leaving-neverland-review-michael-jackson-hbo-safechuck-robson" class="c-rock-list__link" data-analytics-link="trending" data-analytics-viewport="trending" data-chorus-optimize-id="18005473" data-chorus-optimize-module="entry-list">
                                                <div class="c-rock-list__image">
                                                    <picture class="c-picture" data-chorus-optimize-field="main_image" data-cid="site/picture_element-1551450312_9172_109887" data-cdata="{&quot;image_id&quot;:63138269,&quot;ratio&quot;:&quot;standard&quot;,&quot;dynamic_type&quot;:&quot;picture&quot;,&quot;lazy&quot;:true}">
                                                    <script type="text/template-picture" style="display: none;">
                                                    <![CDATA[




                                                    <source
                                                    srcset="https://cdn.vox-cdn.com/thumbor/R6F7-XNG2jfQfNdGdDYF39JgaHk=/0x0:1920x1080/250x188/filters:focal(727x100:1033x406):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/wKhFDWTO9JmAUnyVuqFAMxna6xE=/0x0:1920x1080/500x375/filters:focal(727x100:1033x406):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg 500w"
                                                    sizes="250px"
                                                    type="image/webp"
                                                    >


                                                    <img srcset="https://cdn.vox-cdn.com/thumbor/5sq1aQzafRYgjxW8ovMRs5fNap4=/0x0:1920x1080/250x188/filters:focal(727x100:1033x406)/cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/6wHou6Pw2KXE4KySJrghvxM28sI=/0x0:1920x1080/500x375/filters:focal(727x100:1033x406)/cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg 500w" sizes="250px" alt="" style="object-position: 45% 23%" data-upload-width="1920" src="https://cdn.vox-cdn.com/thumbor/pXmgbg1MtWYq2t5bsNoovGFUApw=/0x0:1920x1080/1200x900/filters:focal(727x100:1033x406)/cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg" />

                                                    ]]>
                                                    </script> 
                                                    <script type="text/template-dynamic" style="display: none">
                                                    <![CDATA[


                                                    <img class="c-dynamic-image " alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_1856_109886" data-cdata='{"image_id":63138269,"ratio":"standard"}'>
                                                    <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63138269/neverland2.0.jpg"></noscript>

                                                    ]]>
                                                    </script></picture>
                                                </div><span class="c-rock-list__item--body"><span data-chorus-optimize-field="hed">Leaving Neverland makes a devastating case against Michael Jackson</span> <span class="c-rock-list__entry-blurb">The HBO documentary may forever change the legacy of the pop icon.</span></span></a>
                                            </li>
                                            <li data-analytics-placement="sidebar:5">
                                                <a href="https://www.vox.com/policy-and-politics/2019/2/28/18245334/jared-kushner-clearance-trump-mueller" class="c-rock-list__link" data-analytics-link="trending" data-analytics-viewport="trending" data-chorus-optimize-id="18009375" data-chorus-optimize-module="entry-list">
                                                <div class="c-rock-list__image">
                                                    <picture class="c-picture" data-chorus-optimize-field="main_image" data-cid="site/picture_element-1551450312_5418_109889" data-cdata="{&quot;image_id&quot;:63148042,&quot;ratio&quot;:&quot;standard&quot;,&quot;dynamic_type&quot;:&quot;picture&quot;,&quot;lazy&quot;:true}">
                                                    <script type="text/template-picture" style="display: none;">
                                                    <![CDATA[




                                                    <source
                                                    srcset="https://cdn.vox-cdn.com/thumbor/KchmnOS96Tb7U8afvKnAZLog1OE=/0x0:4886x3257/250x188/filters:focal(1197x977:1977x1757):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/Dzdo4OcR9Odvvw06dm2XScWtv5w=/0x0:4886x3257/500x375/filters:focal(1197x977:1977x1757):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg 500w"
                                                    sizes="250px"
                                                    type="image/webp"
                                                    >


                                                    <img srcset="https://cdn.vox-cdn.com/thumbor/1tFO3qttpCYK6arCXuUj13GXBpY=/0x0:4886x3257/250x188/filters:focal(1197x977:1977x1757)/cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg 250w, https://cdn.vox-cdn.com/thumbor/AEg61YKp1GDVAmb3dU7LX1S37u8=/0x0:4886x3257/500x375/filters:focal(1197x977:1977x1757)/cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg 500w" sizes="250px" alt="" style="object-position: 32% 41%" data-upload-width="4886" src="https://cdn.vox-cdn.com/thumbor/p-AobimwHqY_T2GWGO81mLOZvXQ=/0x0:4886x3257/1200x900/filters:focal(1197x977:1977x1757)/cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg" />

                                                    ]]>
                                                    </script> 
                                                    <script type="text/template-dynamic" style="display: none">
                                                    <![CDATA[


                                                    <img class="c-dynamic-image " alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_8533_109888" data-cdata='{"image_id":63148042,"ratio":"standard"}'>
                                                    <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63148042/GettyImages_822521748.0.jpg"></noscript>

                                                    ]]>
                                                    </script></picture>
                                                </div><span class="c-rock-list__item--body"><span data-chorus-optimize-field="hed">Trump reportedly ordered Jared Kushner get a security clearance over multiple objections</span> <span class="c-rock-list__entry-blurb">The New York Times reports that John Kelly and Don McGahn both documented their concerns in memos.</span></span></a>
                                            </li>
                                        </ol>
                                        <div data-cid="site/entry_sponsorship/native_ad-96FwghPeMAxXH35ohlVtFQ==">
                                            <div class="m-native_ad_unit dynamic-native-ad-native_ad_latest"></div>
                                        </div>
                                    </div>
                                </aside>
                                <script type="text/javascript">
                                //<![CDATA[
                                concertAdsQueue.push(function() {ConcertAds.addVariable("trending_sidebar", ["true"])});
                                //]]>
                                </script>
                            </div>
                            <div class="u-desktop-only">
                                <div class="c-newsletter_signup_box" id="newsletter-signup-short-form" data-newsletter-slug="vox_sentences">
                                    <div class="c-newsletter_signup_box__main">
                                        <span class="c-newsletter_signup_box__icon"><svg width="386px" height="385px" viewbox="0 0 386 385" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
                                        <title>
                                            vox-mark
                                        </title>
                                        <defs></defs>
                                        <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
                                            <path d="M239.811,0 L238.424,6 L259.374,6 C278.011,6 292.908,17.38 292.908,43.002 C292.908,56.967 287.784,75.469 276.598,96.888 L182.689,305.687 L159.283,35.693 C159.283,13.809 168.134,6 191.88,6 L205.854,6 L207.247,0 L1.409,0 L0,6 L13.049,6 C28.88,6 35.863,15.885 37.264,34.514 L73.611,385 L160.221,385 L304.525,79.217 C328.749,31.719 349.237,6 372.525,6 L384.162,6 L385.557,0 L239.811,0" id="vox-mark" fill="#444745"></path>
                                        </g></svg></span>
                                        <h3 class="c-newsletter_signup_box__title">
                                            Vox Sentences
                                        </h3>
                                        <p class="c-newsletter_signup_box__blurb">
                                            The news, but shorter, delivered straight to your inbox.
                                        </p>
                                        <form action="https://voxmedia.createsend.com/t/d/s/uuijkl/" method="post" id="subForm" class="c-newsletter_signup_box--form &lt;%= c-newsletter_signup_box--form__1" data-analytics-class="newsletter" data-analytics-placement="sidebar" name="subForm">
                                            <div class="c-newsletter_signup_box--form__body">
                                                <label for="field_email"><input id="field_email" class="p-text-input" name="email" placeholder="Email Address" type="email" /></label> <button type="submit" class="p-button">Subscribe</button>
                                            </div>
                                        </form>
                                    </div>
                                    <div class="c-newsletter_signup_box__disclaimer">
                                        By signing up, you agree to our <a href="https://www.voxmedia.com/pages/privacy-policy">Privacy Policy</a> and European users agree to the data transfer policy. For more newsletters, check out our <a href="https://www.vox.com/newsletters">newsletters page</a>.
                                    </div>
                                </div>
                            </div>
                            <div id="sidebar-debugger-data" class="u-hidden-text">
                                This Article has a component height of 131. The sidebar size is long.
                            </div>
                        </div>
                    </div>
                    <div class="l-segment">
                        <div class="OUTBRAIN" data-src="https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch" data-widget-id="AR_2" data-ob-template="Vox.com"></div>
                        <script type="text/javascript" charset="utf-8">
                        //<![CDATA[
                        (function(){
                        // load outbrain js
                        function loadOutbrain(){
                        var ref = document.querySelector("div.OUTBRAIN");

                        var script = document.createElement('script');
                        script.setAttribute('type','text/javascript');
                        script.setAttribute('src', 'https://widgets.outbrain.com/outbrain.js');
                        script.setAttribute('async', 'async');

                        ref.appendChild(script);
                        }

                        // Disable on mobile and tablet screens
                        // 880px is the upper bound for the `medium` breakpoint defined in UserAgent JS lib.
                        var shouldDisable = false && screen.width <= 880;

                        if (!shouldDisable) {
                        // first, set a timeout to loadOutbrain, in case no ads load in 5s
                        // (i.e., blocked). once an ad has loaded, create a new timeout that
                        // will load outbrain if openmic doesn't get loaded in 2s
                        //
                        var adBlockerTimeoutId = setTimeout(loadOutbrain, 5000);
                        document.body.addEventListener('first_ad_rendered', function(){
                        clearTimeout(adBlockerTimeoutId);
                        var outbrainTimeoutId = setTimeout(loadOutbrain, 2000);
                        document.body.addEventListener('playlistRendered', function(){
                        clearTimeout(outbrainTimeoutId);
                        });
                        });
                        }
                        })();
                        //]]>
                        </script>
                    </div>
                    <div class="l-sidebar-fixed l-segment">
                        <div class="l-col__main">
                            <div class="c-compact-river">
                                <h2 class="p-breaker-head">
                                    <span class="p-breaker-head__wrapper">The Latest</span>
                                </h2>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="18007162" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/culture/2019/3/1/18243121/true-detective-season-3-finale-recap-review" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_5005_109890" data-cdata="{&quot;image_id&quot;:63147493,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63147493/977e098a78e99ec5d862748155c99425dd2109bb9cfc46a2e531e45d389c978c.0.jpg" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/culture/2019/3/1/18243121/true-detective-season-3-finale-recap-review">I have always been a True Detective skeptic. Season 3 made a believer.</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_1408_109892" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/authors/todd-vanderwerff">Todd VanDerWerff</a></span> <a data-entry-admin="18007162" data-cid="tools/entry_admin_button-1551450312_6812_109891" data-cdata="{&quot;id&quot;:18007162}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="18005733" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/2019/3/1/18241692/undocumented-immigrants-pay-state-local-taxes" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_8116_109893" data-cdata="{&quot;image_id&quot;:63147587,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63147587/GettyImages_641694866.0.jpg" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/2019/3/1/18241692/undocumented-immigrants-pay-state-local-taxes">Undocumented immigrants pay millions of dollars in state taxes — even in the reddest states</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_4973_109895" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/authors/alexia-fernandez-campbell">Alexia Fernández Campbell</a></span> <a data-entry-admin="18005733" data-cid="tools/entry_admin_button-1551450312_4209_109894" data-cdata="{&quot;id&quot;:18005733}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="18008247" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/energy-and-environment/2019/3/1/18244206/jay-inslee-2020-campaign-president-climate-change-interview" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_8715_109896" data-cdata="{&quot;image_id&quot;:63150911,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63150911/932014976.jpg.0.jpg" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/energy-and-environment/2019/3/1/18244206/jay-inslee-2020-campaign-president-climate-change-interview">Meet the first Democrat running for president on climate change</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_8538_109898" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/authors/david-roberts">David Roberts</a></span> <a data-entry-admin="18008247" data-cid="tools/entry_admin_button-1551450312_4926_109897" data-cdata="{&quot;id&quot;:18008247}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="18005633" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/the-goods/2019/3/1/18241592/gradients-facebook-coachella-daily-fading-pastel-design-trend" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_1126_109899" data-cdata="{&quot;image_id&quot;:63138163,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63138163/Gradients_05.1551300684.png" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/the-goods/2019/3/1/18241592/gradients-facebook-coachella-daily-fading-pastel-design-trend">The colorful design trend aiming to soothe these anxious times</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_7168_109901" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/users/Daisy%20Alioto">Daisy Alioto</a></span> <a data-entry-admin="18005633" data-cid="tools/entry_admin_button-1551450312_762_109900" data-cdata="{&quot;id&quot;:18005633}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="17986741" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/2019/3/1/18222700/jay-inslee-2020-campaign-president-climate-change" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_1535_109902" data-cdata="{&quot;image_id&quot;:63149565,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63149565/AP_19012706159131_t.0.jpg" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/2019/3/1/18222700/jay-inslee-2020-campaign-president-climate-change">Jay Inslee just launched a presidential campaign that will be all about climate change</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_9395_109904" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/authors/ella-nilsen">Ella Nilsen</a></span> <a data-entry-admin="17986741" data-cid="tools/entry_admin_button-1551450312_2496_109903" data-cdata="{&quot;id&quot;:17986741}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="c-compact-river__entry">
                                    <div class="c-entry-box--compact c-entry-box--compact--article" data-chorus-optimize-id="18009377" data-chorus-optimize-module="entry-box">
                                        <a href="https://www.vox.com/vox-sentences/2019/2/28/18245336/vox-sentences-trump-kim-summit-no-deal" class="c-entry-box--compact__image-wrapper" data-analytics-link="article:image">
                                        <div class="c-entry-box--compact__image">
                                            <img class="c-dynamic-image" alt="" data-chorus-optimize-field="main_image" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs" data-cid="site/dynamic_size_image-1551450312_6781_109905" data-cdata="{&quot;image_id&quot;:63148041,&quot;ratio&quot;:&quot;*&quot;}" /> <noscript><img alt="" src="https://cdn.vox-cdn.com/uploads/chorus_image/image/63148041/2.28.0.jpg" /></noscript>
                                        </div></a>
                                        <div class="c-entry-box--compact__body">
                                            <h2 class="c-entry-box--compact__title">
                                                <a data-chorus-optimize-field="hed" data-analytics-link="article" href="https://www.vox.com/vox-sentences/2019/2/28/18245336/vox-sentences-trump-kim-summit-no-deal">Vox Sentences: Trump gets nothing</a>
                                            </h2>
                                            <div class="c-byline" data-cid="site/byline-1551450312_4919_109907" data-cdata="{&quot;timestamp&quot;:null}">
                                                By <span class="c-byline__item"><a href="https://www.vox.com/users/NicoleFallert">Nicole Fallert</a></span> <a data-entry-admin="18009377" data-cid="tools/entry_admin_button-1551450312_395_109906" data-cdata="{&quot;id&quot;:18009377}"></a>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div data-cid="site/entry_sponsorship/native_ad-dkySUYQ8YppIKwcBGKtnmg==">
                                    <div class="m-native_ad_unit dynamic-native-ad-native_ad_ymal_link"></div>
                                </div>
                            </div>
                        </div>
                        <div class="l-col__sidebar" id="comments-sidebar" data-analytics-placement="sidebar"></div>
                    </div>
                </section>
            </section>
            <footer class="c-footer" role="contentinfo">
                <div class="l-wrapper c-footer__wrapper">
                    <div class="c-footer__section c-footer__section-logo">
                        <a rel="nofollow" href="/" class="c-footer__logo-link"><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 242 121">
                        <path fill="#444745" d="M110.674 3.528h3.474L114.564 2H71.63l-.418 1.528h6.253c5.418 0 9.726 3.75 9.726 11.255 0 4.168-1.8 9.587-4.72 16.118L54.82 92.32l-6.81-79.756c-.556-6.252 2.5-9.03 9.59-9.03h4.027L62.042 2H1.6l-.557 1.528h3.89c4.725 0 6.532 2.918 7.087 8.615l10.7 103.1h25.427l42.518-90.038c6.392-13.48 13.2-21.677 20.01-21.677zm-5.002 112.27c-3.89 0-6.253-1.25-6.253-7.642 0-8.06 2.91-23.76 6.11-38.072.41 6.67 5 13.2 11.81 13.2 1.67 0 3.06-.138 4.44-.417-6.26 27.236-8.76 32.932-16.12 32.932zm121.024-54.19c8.06 0 13.2-6.67 13.2-14.173 0-6.392-4.585-11.116-11.115-11.116-11.81 0-17.36 9.31-27.09 26.53-2.08-10.7-6.94-24.73-19.45-24.73-14.03 0-30.15 20.01-45.02 32.37-6.67 5.56-14.17 9.17-20.15 9.17-6.11 0-9.72-6.26-9.72-17.23 4.31-17.93 6.67-22.65 13.34-22.65 4.59 0 6.53 2.64 6.53 8.06 0 5.69-1.25 15.42-3.75 27.51 6.67-2.09 16.68-10.42 25.01-19.45-4.44-10.56-13.89-17.79-27.65-17.79-25.42 0-47.66 22.78-47.66 48.35 0 17.65 12.51 30.984 32.1 30.984 32.38 0 45.86-28.066 45.86-47.52 0-2.78-.14-4.86-.42-7.364C155.717 57.14 162.108 52 167.388 52c5.975 0 10.7 15.007 15.423 37.657-4.17 4.58-8.34 13.474-10.42 15.002-.836-8.06-6.115-13.06-13.2-13.06-7.92 0-13.48 7.5-13.48 13.893 0 7.226 5 11.95 11.53 11.95 13.76 0 17.65-13.062 26.265-24.595 2.64 12.363 8.754 24.59 19.313 24.59 12.506 0 24.178-10.7 30.15-18.34l-1.11-1.81c-3.89 3.753-7.642 6.254-11.95 6.254-7.78 0-13.34-16.81-17.645-37.1 2.5-3.47 6.53-12.225 9.31-15.28 1.95 3.612 5.978 10.42 15.15 10.42z"></path></svg> <span class="u-hidden-text">Chorus</span></a>
                    </div>
                    <div class="c-footer__section c-footer__section-links">
                        <ul class="u-list-dot-sep">
                            <li>
                                <a rel="nofollow" href="https://www.voxmedia.com/legal/terms-of-use">Terms of Use</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="https://www.voxmedia.com/legal/privacy-policy">Privacy Policy</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="https://www.voxmedia.com/legal/cookie-policy">Cookie Policy</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="https://www.voxmedia.com/legal/gdpr-commitment">GDPR Commitment</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="https://www.voxmedia.com/communications-preferences">Communications Preferences</a>
                            </li>
                        </ul>
                        <ul class="u-list-dot-sep">
                            <li>
                                <a rel="nofollow" href="/contact">Contact</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="/contact#tip">Send Us a Tip</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="/masthead">Masthead</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="/pages/about-us">About Us</a>
                            </li>
                            <li>
                                <a rel="nofollow" href="https://www.vox.com/2018/12/7/18113237/ethics-and-guidelines-at-vox-com">Editorial Ethics and Guidelines</a>
                            </li>
                        </ul>
                        <div class="c-footer__status">
                            <span id="status_io" class="m-footer__bottom__status">All Systems Operational <a href="http://status.voxmedia.com" rel="nofollow" target="_blank">Check out our status page for more details.</a></span>
                        </div>
                    </div>
                    <div class="c-footer__section c-footer__section-vox">
                        <a rel="nofollow" class="u-block" href="http://www.voxmedia.com"><span class="u-hidden-text">Vox Media</span><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewbox="-147 464.2 484 79.5" class="c-footer__vox-logo">
                        <g>
                            <path fill="#4E4E50" class="vox-media-logo-text" d="M-133.2 498l9.9 29 6.4-19.2c1.1-3.3 2.1-6.6 3-9.4h13.3l-13.2 32.4c-2.1 5.3-3.4 8.4-4.6 12l-10 .6-13.2-32c-1.6-4-3.6-9-5.4-12.9l13.8-.5zm38.8 23.6c0-14 9.3-24.4 23.2-24.4 13.3 0 22.1 9.8 22.1 22.1 0 14-9.4 24.4-23.2 24.4-13.4.1-22.1-9.8-22.1-22.1zm33-.9c0-8.4-4.3-13.6-10.3-13.6-6.4 0-10.5 6-10.5 13.2 0 8.4 4.3 13.6 10.3 13.6 6.4 0 10.5-6 10.5-13.2zm19.2 21.9l15.3-22.7-6-8.8-8.6-12.7 13.9-.5 9.1 14.2 3.1-5.3c1.6-2.6 3.8-6.1 5.4-8.6H3.7l-14.6 21.9 5.4 7.9c2.5 3.8 6.8 10.3 9.6 14.4l-14 .5-9.3-15.1-2.9 4.7c-1.4 2.3-4.4 7.2-6.1 9.8h-14v.3zm79.4-15.2l1.9-13.9c.6-4 1.6-12 1.8-15.3l9.6-.4c1.1 2.5 2.7 6.1 4 8.9l8.2 18.2 8-18.5c1.2-2.7 2.6-6 3.7-8.5h9.3c.4 3.7 1.4 11.5 2 15.6l2 13.9c.6 4.1 1.8 11.9 2.5 15.2l-12.4.5c-.1-1.8-.7-7.1-1.1-9.6l-1.8-14c-3.1 7.7-8.6 21.4-9.4 23.6l-6.6.3-9.5-23.3-1.5 13.5c-.3 2.5-.8 7.3-.8 9.1H34.7c.7-3.3 1.9-11.2 2.5-15.3zm96.1 15.5c-4.2-.3-9.3-.3-14.2-.3-5.5 0-11.5.1-16.2.3.3-3 .4-11.3.4-15.4v-14c0-4-.1-12.5-.4-15.6 4.6.2 9.6.3 15.3.3 5.2 0 10-.1 14.3-.3-.3 3.1-.5 6.2-.5 10-3.2-.1-6.4-.1-10.3-.1-1.9 0-4 0-5.8.1-.1.9-.1 2.2-.1 2.8v4.9l13.7-.1c-.1 2.6-.2 5.5-.2 8.8h-13.5v5.7c0 .7 0 2 .1 2.9 1.8 0 3.9.1 5.8.1 4.5 0 8.3-.1 12-.2-.2 3.2-.4 6.2-.4 10.1zm30-.3h-16.6c.3-3 .4-11.1.4-15.2v-13.9c0-4-.1-12-.4-15.1 2.3 0 7.9-.4 14.9-.4 16.7 0 26 8 26 21.5 0 14.2-9.5 23.1-24.3 23.1zm-.2-35c-1.3 0-2.1.1-3.1.2-.1.8-.1 2.1-.1 2.8v19.6c0 .8 0 1.7.1 2.6 1 .1 1.8.2 3.3.2 8.4 0 12-5.5 12-13-.1-7.9-4.7-12.4-12.2-12.4zm37.2 35c.3-3 .4-11.1.4-15.2v-13.9c0-4-.1-12.2-.4-15.2 2.5 0 11.3-.1 13.4-.3-.2 1.8-.3 6.9-.3 9.3v26.2c0 2.4.1 7.3.3 9.1h-13.4zm38.1-32.2c2.2-5.2 3.7-8.5 4.9-12l10.1-.6 13.8 32c1.6 3.9 4 9 5.8 12.9l-13.4.5-3.4-8.4h-15.4c-.8 2.1-2.6 7.1-3 7.9h-13.1l13.7-32.3zm4.9 16.5h10.1l-5.1-13.7-5 13.7z"></path>
                            <path fill="#F6A01A" d="M337 464.2V498l-30-16.9 30-16.9z"></path>
                            <path fill="#FBE346" d="M276.9 464.2V498l30.1-16.9-30.1-16.9z"></path>
                            <path fill="#F47B20" d="M307 481.1V515l30-17-30-16.9z"></path>
                            <path fill="#F8CC15" d="M307 481.1V515l-30.1-17 30.1-16.9z"></path>
                        </g></svg></a> <a rel="nofollow" class="u-block c-footer__corporate-link" href="https://www.voxmedia.com/vox-advertising">Advertise with us</a> <a rel="nofollow" class="u-block c-footer__corporate-link" href="https://jobs.voxmedia.com">Jobs @ Vox Media</a> © 2019 <a rel="nofollow" href="http://www.voxmedia.com">Vox Media</a>, Inc. All Rights Reserved
                    </div>
                </div>
            </footer>
            <div class="c-tab-bar" data-cid="site/tab_bar/index-1551450312_6342_109910" data-cdata="{}">
                <a href="/" class="c-tab-bar__logo"><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 242 121">
                <path fill="#444745" d="M110.674 3.528h3.474L114.564 2H71.63l-.418 1.528h6.253c5.418 0 9.726 3.75 9.726 11.255 0 4.168-1.8 9.587-4.72 16.118L54.82 92.32l-6.81-79.756c-.556-6.252 2.5-9.03 9.59-9.03h4.027L62.042 2H1.6l-.557 1.528h3.89c4.725 0 6.532 2.918 7.087 8.615l10.7 103.1h25.427l42.518-90.038c6.392-13.48 13.2-21.677 20.01-21.677zm-5.002 112.27c-3.89 0-6.253-1.25-6.253-7.642 0-8.06 2.91-23.76 6.11-38.072.41 6.67 5 13.2 11.81 13.2 1.67 0 3.06-.138 4.44-.417-6.26 27.236-8.76 32.932-16.12 32.932zm121.024-54.19c8.06 0 13.2-6.67 13.2-14.173 0-6.392-4.585-11.116-11.115-11.116-11.81 0-17.36 9.31-27.09 26.53-2.08-10.7-6.94-24.73-19.45-24.73-14.03 0-30.15 20.01-45.02 32.37-6.67 5.56-14.17 9.17-20.15 9.17-6.11 0-9.72-6.26-9.72-17.23 4.31-17.93 6.67-22.65 13.34-22.65 4.59 0 6.53 2.64 6.53 8.06 0 5.69-1.25 15.42-3.75 27.51 6.67-2.09 16.68-10.42 25.01-19.45-4.44-10.56-13.89-17.79-27.65-17.79-25.42 0-47.66 22.78-47.66 48.35 0 17.65 12.51 30.984 32.1 30.984 32.38 0 45.86-28.066 45.86-47.52 0-2.78-.14-4.86-.42-7.364C155.717 57.14 162.108 52 167.388 52c5.975 0 10.7 15.007 15.423 37.657-4.17 4.58-8.34 13.474-10.42 15.002-.836-8.06-6.115-13.06-13.2-13.06-7.92 0-13.48 7.5-13.48 13.893 0 7.226 5 11.95 11.53 11.95 13.76 0 17.65-13.062 26.265-24.595 2.64 12.363 8.754 24.59 19.313 24.59 12.506 0 24.178-10.7 30.15-18.34l-1.11-1.81c-3.89 3.753-7.642 6.254-11.95 6.254-7.78 0-13.34-16.81-17.645-37.1 2.5-3.47 6.53-12.225 9.31-15.28 1.95 3.612 5.978 10.42 15.15 10.42z"></path></svg></a>
                <div class="c-social-buttons" data-analytics-placement="sticky" data-cid="site/social_buttons_list-1551450312_4843_109909" data-cdata="{&quot;entry_id&quot;:16515179,&quot;services&quot;:[&quot;twitter&quot;,&quot;facebook&quot;],&quot;base_url&quot;:&quot;https://www.vox.com/2017-in-review/2017/12/15/16751138/best-movies-2017-streaming-how-to-watch&quot;}">
                    <a class="c-social-buttons__item c-social-buttons__twitter" href="https://twitter.com/intent/tweet?counturl=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;text=The+21+best+movies+of+2017&amp;url=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch&amp;via=voxdotcom" data-analytics-social="twitter"><svg class="p-svg-icon c-social-buttons__svg">
                    <use xlink:href="#icon-twitter"></use></svg> <span class="c-social-buttons__text">tweet</span></a> <a class="c-social-buttons__item c-social-buttons__facebook" href="https://www.facebook.com/sharer/sharer.php?text=The+21+best+movies+of+2017&amp;u=https%3A%2F%2Fwww.vox.com%2F2017-in-review%2F2017%2F12%2F15%2F16751138%2Fbest-movies-2017-streaming-how-to-watch" data-analytics-social="facebook"><svg class="p-svg-icon c-social-buttons__svg">
                    <use xlink:href="#icon-facebook"></use></svg> <span class="c-social-buttons__text">share</span></a>
                </div>
            </div>
        </div>
        <script src="https://cdn.vox-cdn.com/packs/chorus-95d6a425234d55b36191.js" async="async" integrity="sha256-TMEAF0AVhZm0JUpTe84mXXTZONaJ1d9ADjSTEDSDB/U= sha384-mrNz9RuysydpcSWB6AxELlKRb2uOllPXkHY8hr84ggvbgUUlir7CK3R/cWoPnWeO" crossorigin="anonymous"></script> <!-- Phonograph -->
         
        <script src="https://phonograph2.voxmedia.com/pickup.js?v=1529075019264" id="phonograph-pickup" async="async" defer="defer"></script> 
        <script>
        <![CDATA[

        var phonographEvents = phonographEvents || [];
        (function() {
        var continent = document.cookie.match(/_chorus_geoip_continent=([^;]+)/i) || [];
        var data = { 'Page Title':document.title, 'GA Track Prefix':'t1.', 'geoip_continent': continent[1] };
        var dataLayer = window.dataLayer || [];
        dataLayer
          .filter(function(m) { return !!m['Network'] })
          .forEach(function(m) {
            Object.keys(m).forEach(function(k) { data[k] = m[k] });
          });

        var userid = data['Logged in Status'];
        data['User ID'] = (typeof userid === 'number') ? userid : null;
        phonographEvents.push(['pageload', data]);
        })();
        ]]>
        </script> <!-- End Phonograph -->
    </body>
</html>