-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.HTML
More file actions
1498 lines (1477 loc) · 163 KB
/
index.HTML
File metadata and controls
1498 lines (1477 loc) · 163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel = "stylesheet" type = "text/css" href = "css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lora&display=swap" rel="stylesheet">
<title>NewsWeek</title>
</head>
<body id="body">
<div class="menu-appear menu-items">
<div class="col py-2 d-flex flex-column">
<div class="d-flex justify-content-start align-items-center search-div">
<input class="col" id="search-menu" type="text" placeholder="Search">
<label for="search-menu"></label>
</div>
<ul class = "d-flex flex-column m-0 px-0">
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">U.S
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">World
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Business
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Tech & Science
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Culture
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Newsgeek
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Sports
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Health
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Opinion
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
<li class = "d-flex align-items-center font-weight-bold">
<a class="d-flex" href="#">Vantage
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</li>
</ul>
</div>
</div>
<div id="scroll-nav" class="scroll-nav hide col d-flex">
<div class="fixed-sign d-flex col p-0 align-items-center">
<div class="position-relative sc-logo col">
<a class="position-absolute sc-logo">
<svg x="0px" y="0px" viewbox="0 0 395.6 60" fill="#ffffff">
<path class="st0" d="M58.7,10.8h-5.6v48.3H42.8l-25.1-33v22.1h5.6v10.8H0V48.3h5.6V10.8H0V0h17.6L41,30.7V10.8h-5.6V0h23.2 L58.7,10.8L58.7,10.8z M95.8,38c0,0.9,0,1.8-0.1,2.7H70.3c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11 c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6C89.9,16.3,95.8,25.6,95.8,38 M159,27.3h-3.7 l-9.4,31.8h-12.5l-5.9-17.4l-5.3,17.4h-12.8L98.8,27.4h-3.7V16.6h22.1v10.7h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.6l5-16.9h-5.6V16.6 H159L159,27.3L159,27.3z M174.5,27.8c0,1.5,1.2,2.5,5.4,3.9l6,2c5.5,1.8,12.1,5.9,12.1,13.4c0,8.8-6.6,13-14.7,13 c-6.5,0-11.5-3.2-12.9-4.6V59h-10.8V44.4h10.6c0.3,4.8,4.6,7.3,8.5,7.3c3.2,0,4.7-1.4,4.7-3c0-2-1.2-3.1-6.5-4.8l-5.3-1.8 c-5.4-1.7-11.4-5.7-11.4-12.8c0-8.7,7.7-13.1,14.3-13.1c6.8,0,10.1,1.9,11.8,3.8l0.1-3.3H197v13.3h-11.2c-0.2-3.6-3.7-5.2-7.2-5.2 C175.8,24.8,174.5,26.1,174.5,27.8 M262.8,27.3h-3.7l-9.4,31.8h-12.5l-5.9-17.4L226,59.1h-12.8l-10.6-31.7h-3.7V16.6h22.1v10.7 h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.7l5-16.9h-5.6V16.6h18.5V27.3z M302,37.9c0,0.9,0,1.8-0.1,2.7h-25.4 c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1 c0-10.5,7-21.6,21-21.6C296.1,16.2,302,25.5,302,37.9 M343.9,37.8c0,0.9,0,1.8-0.1,2.7h-25.4c-0.7,8.2,2.4,10.6,7.1,10.6 c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6 C338,16.1,343.9,25.4,343.9,37.8 M389.9,59h-12.8l-13.3-17.3l-4.3,3.2v3.4h3.8V59h-19.6V48.3h3.7V10.6h-5.6V0h17.8v33.9l8.9-6.5 h-5.6V16.6h23.9v10.8h-3.7l-9.3,7l10.7,13.9h5.6L389.9,59L389.9,59z M395.6,56.6c0,0.5-0.1,0.9-0.4,1.2c-0.2,0.4-0.5,0.7-0.9,0.9 c-0.4,0.2-0.8,0.4-1.3,0.4c-0.5,0-0.9-0.1-1.2-0.4c-0.4-0.2-0.7-0.5-0.9-0.9c-0.2-0.4-0.4-0.8-0.4-1.2c0-0.5,0.1-0.9,0.4-1.2 c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.2-0.4c0.5,0,0.9,0.1,1.3,0.4c0.4,0.2,0.7,0.5,0.9,0.9 C395.5,55.8,395.6,56.2,395.6,56.6 M394.6,58c0.4-0.4,0.6-0.9,0.6-1.4c0-0.6-0.2-1-0.6-1.4s-0.9-0.6-1.4-0.6s-1,0.2-1.4,0.6 c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6S394.2,58.4,394.6,58 M393.6,56.8c0.1,0.1,0.2,0.1,0.2,0.1 c0.1,0.1,0.2,0.2,0.2,0.3c0,0,0.2,0.3,0.4,0.8h-0.8c-0.3-0.5-0.4-0.8-0.5-0.9c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1,0v1.1h-0.6 v-2.6h1.2c0.4,0,0.6,0.1,0.7,0.2c0.2,0.2,0.2,0.3,0.2,0.6c0,0.2-0.1,0.4-0.2,0.5C393.9,56.6,393.8,56.7,393.6,56.8 M393.5,56.3 c0.1-0.1,0.1-0.2,0.1-0.3s-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.1-0.4-0.1h-0.3v0.7h0.3C393.3,56.4,393.4,56.4,393.5,56.3 M318.4,33.5 h13.9c0-6-3.9-8.4-6.8-8.4C322.1,25.2,318.6,27.9,318.4,33.5 M276.5,33.6h13.9c0-6-3.9-8.4-6.8-8.4C280.3,25.2,276.8,28,276.5,33.6 M70.3,33.7h13.9c0-6-3.9-8.4-6.8-8.4C74.1,25.3,70.6,28.1,70.3,33.7"></path>
</svg>
</a>
</div>
<div class = "col d-flex justify-content-end subscribe px-1">
<a class = "text-white px-2" href="#">Sign In</a>
<a class = "d-flex" href="#">
Subscribe
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</div>
</div>
<div class="menu-bar position-relative">
<a id="menu-bar-a" class="menu-items menu-bar d-flex flex-column justify-content-center align-items-center" href="#">
<span class="menu-bar menu-items"></span>
<span class="menu-bar menu-items"></span>
<span class="menu-bar menu-items"></span>
</a>
</div>
</div>
<nav class = "navbar p-0 container">
<div class = "container p-0">
<div class = "col-12 d-flex align-items-end logo-box position-relative">
<p class="col-lg-6 m-0 text-white pl-3 pb-1"> Wed, Sep 25, 2019</p>
<div class="position-absolute logo">
<svg x="0px" y="0px" viewbox="0 0 395.6 60" fill="#ffffff">
<path class="st0" d="M58.7,10.8h-5.6v48.3H42.8l-25.1-33v22.1h5.6v10.8H0V48.3h5.6V10.8H0V0h17.6L41,30.7V10.8h-5.6V0h23.2 L58.7,10.8L58.7,10.8z M95.8,38c0,0.9,0,1.8-0.1,2.7H70.3c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11 c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6C89.9,16.3,95.8,25.6,95.8,38 M159,27.3h-3.7 l-9.4,31.8h-12.5l-5.9-17.4l-5.3,17.4h-12.8L98.8,27.4h-3.7V16.6h22.1v10.7h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.6l5-16.9h-5.6V16.6 H159L159,27.3L159,27.3z M174.5,27.8c0,1.5,1.2,2.5,5.4,3.9l6,2c5.5,1.8,12.1,5.9,12.1,13.4c0,8.8-6.6,13-14.7,13 c-6.5,0-11.5-3.2-12.9-4.6V59h-10.8V44.4h10.6c0.3,4.8,4.6,7.3,8.5,7.3c3.2,0,4.7-1.4,4.7-3c0-2-1.2-3.1-6.5-4.8l-5.3-1.8 c-5.4-1.7-11.4-5.7-11.4-12.8c0-8.7,7.7-13.1,14.3-13.1c6.8,0,10.1,1.9,11.8,3.8l0.1-3.3H197v13.3h-11.2c-0.2-3.6-3.7-5.2-7.2-5.2 C175.8,24.8,174.5,26.1,174.5,27.8 M262.8,27.3h-3.7l-9.4,31.8h-12.5l-5.9-17.4L226,59.1h-12.8l-10.6-31.7h-3.7V16.6h22.1v10.7 h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.7l5-16.9h-5.6V16.6h18.5V27.3z M302,37.9c0,0.9,0,1.8-0.1,2.7h-25.4 c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1 c0-10.5,7-21.6,21-21.6C296.1,16.2,302,25.5,302,37.9 M343.9,37.8c0,0.9,0,1.8-0.1,2.7h-25.4c-0.7,8.2,2.4,10.6,7.1,10.6 c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6 C338,16.1,343.9,25.4,343.9,37.8 M389.9,59h-12.8l-13.3-17.3l-4.3,3.2v3.4h3.8V59h-19.6V48.3h3.7V10.6h-5.6V0h17.8v33.9l8.9-6.5 h-5.6V16.6h23.9v10.8h-3.7l-9.3,7l10.7,13.9h5.6L389.9,59L389.9,59z M395.6,56.6c0,0.5-0.1,0.9-0.4,1.2c-0.2,0.4-0.5,0.7-0.9,0.9 c-0.4,0.2-0.8,0.4-1.3,0.4c-0.5,0-0.9-0.1-1.2-0.4c-0.4-0.2-0.7-0.5-0.9-0.9c-0.2-0.4-0.4-0.8-0.4-1.2c0-0.5,0.1-0.9,0.4-1.2 c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.2-0.4c0.5,0,0.9,0.1,1.3,0.4c0.4,0.2,0.7,0.5,0.9,0.9 C395.5,55.8,395.6,56.2,395.6,56.6 M394.6,58c0.4-0.4,0.6-0.9,0.6-1.4c0-0.6-0.2-1-0.6-1.4s-0.9-0.6-1.4-0.6s-1,0.2-1.4,0.6 c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6S394.2,58.4,394.6,58 M393.6,56.8c0.1,0.1,0.2,0.1,0.2,0.1 c0.1,0.1,0.2,0.2,0.2,0.3c0,0,0.2,0.3,0.4,0.8h-0.8c-0.3-0.5-0.4-0.8-0.5-0.9c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1,0v1.1h-0.6 v-2.6h1.2c0.4,0,0.6,0.1,0.7,0.2c0.2,0.2,0.2,0.3,0.2,0.6c0,0.2-0.1,0.4-0.2,0.5C393.9,56.6,393.8,56.7,393.6,56.8 M393.5,56.3 c0.1-0.1,0.1-0.2,0.1-0.3s-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.1-0.4-0.1h-0.3v0.7h0.3C393.3,56.4,393.4,56.4,393.5,56.3 M318.4,33.5 h13.9c0-6-3.9-8.4-6.8-8.4C322.1,25.2,318.6,27.9,318.4,33.5 M276.5,33.6h13.9c0-6-3.9-8.4-6.8-8.4C280.3,25.2,276.8,28,276.5,33.6 M70.3,33.7h13.9c0-6-3.9-8.4-6.8-8.4C74.1,25.3,70.6,28.1,70.3,33.7"></path>
</svg>
</div>
<div class = "col-lg-6 d-flex justify-content-end subscribe">
<a class = "text-white px-2" href="#">Sign In</a>
<a class = "d-flex" href="#">
Subscribe
<span class="d-flex align-items-center pl-3">
<svg class="arrow " viewbox="0 0 8 14" fill="#f72210">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="container p-0 position-relative menu-decor">
<ul class = "d-flex flex-row m-0">
<li class = "d-flex justify-content-center align-items-center"><a href="#">U.S</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">World</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Business</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Tech & Science</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Culture</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Newsgeek</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Sports</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Health</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Opinion</a></li>
<li class = "d-flex justify-content-center align-items-center"><a href="#">Vantage</a></li>
</ul>
<div class="position-absolute d-flex justify-content-start align-items-center search-div">
<input id="search" type="text" placeholder="Search">
<label for="search"></label>
</div>
</div>
</nav>
<main class="container">
<section class="d-flex flex-wrap">
<div class="row">
<div class = "col-wrapper ">
<div class ="row d-flex">
<div class="col-1">
<h2 class="col-title text-uppercase font-weight-bold">Featured Stories</h2>
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=397&h=265&q=90&f=bdeb25021d902b088da9517e5bc338c9 1x" srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=397&h=265&q=90&f=bdeb25021d902b088da9517e5bc338c9 1x">
<source media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=466&h=311&q=90&f=fafa326430d82c2df6f04a179452300b 1x" srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=466&h=311&q=90&f=fafa326430d82c2df6f04a179452300b 1x">
<source media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=767&h=512&q=90&f=f146b89a2e9d9c5f58b162d24a051738 1x" srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=767&h=512&q=90&f=f146b89a2e9d9c5f58b162d24a051738 1x">
<source media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=466&h=311&q=90&f=fafa326430d82c2df6f04a179452300b 1x" srcset="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=466&h=311&q=90&f=fafa326430d82c2df6f04a179452300b 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=397&h=265&q=90&f=bdeb25021d902b088da9517e5bc338c9" alt="climate denier" title="climate denier" src="https://d.newsweek.com/en/full/1530959/climate-denier.jpg?w=397&h=265&q=90&f=bdeb25021d902b088da9517e5bc338c9">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
<article class="col p-0">
<div class="f-back-img position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">U.S</a>
<picture>
<source media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=397&h=265&q=90&f=d485d778addca7cd0a6aabe804c1f0b7 1x" srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=397&h=265&q=90&f=d485d778addca7cd0a6aabe804c1f0b7 1x">
<source media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=466&h=311&q=90&f=f19194de9d7b1b484ac3f612460ffb78 1x" srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=466&h=311&q=90&f=f19194de9d7b1b484ac3f612460ffb78 1x">
<source media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=767&h=512&q=90&f=be6c2ca5f85011201407d750f210daca 1x" srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=767&h=512&q=90&f=be6c2ca5f85011201407d750f210daca 1x">
<source media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=466&h=311&q=90&f=f19194de9d7b1b484ac3f612460ffb78 1x" srcset="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=466&h=311&q=90&f=f19194de9d7b1b484ac3f612460ffb78 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=397&h=265&q=90&f=d485d778addca7cd0a6aabe804c1f0b7" alt="Immigration protest" title="Immigration protest" src="https://d.newsweek.com/en/full/1531244/immigration-protest.jpg?w=397&h=265&q=90&f=d485d778addca7cd0a6aabe804c1f0b7">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Trump Admin Slashes Refugee Admissions to Lowest Limit Ever</a></h3>
<p class="article-text">"This decision represents further damage to America's leadership on protecting the most vulnerable people around the world," said David Miliband, the president and CEO of the International Rescue Committee.</p>
</article>
<article class="col p-0">
<div class="f-back-img position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">World</a>
<picture>
<source media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=397&h=265&q=90&f=65e1db35ff98da6c222e8a8aaf5ff48b 1x" srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=397&h=265&q=90&f=65e1db35ff98da6c222e8a8aaf5ff48b 1x">
<source media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=466&h=311&q=90&f=51b061ee6f957355516960fbea9f399e 1x" srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=466&h=311&q=90&f=51b061ee6f957355516960fbea9f399e 1x">
<source media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=767&h=512&q=90&f=00ce41745c14cfa17f670d845dd814e8 1x" srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=767&h=512&q=90&f=00ce41745c14cfa17f670d845dd814e8 1x">
<source media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=466&h=311&q=90&f=51b061ee6f957355516960fbea9f399e 1x" srcset="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=466&h=311&q=90&f=51b061ee6f957355516960fbea9f399e 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=397&h=265&q=90&f=65e1db35ff98da6c222e8a8aaf5ff48b" alt="pakistan prime minister imran khan united nations" title="pakistan prime minister imran khan united nations" src="https://d.newsweek.com/en/full/1531365/pakistan-prime-minister-imran-khan-united-nations.jpg?w=397&h=265&q=90&f=65e1db35ff98da6c222e8a8aaf5ff48b">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Pakistan: We Will 'Fight to the End' If War With India Starts Over Kashmir</a></h3>
<p class="article-text">"Supposing a country seven times smaller than its neighbor is faced with the choice: either you surrender, or you fight for your freedom till death," Pakistani Prime Minister Imran Khan told the U.N.</p>
</article>
<article class="col p-0">
<div class="f-back-img position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Survey</a>
<picture>
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=397&h=265&q=90&f=8662347cdc80612bafa925e60426b353 1x" srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=397&h=265&q=90&f=8662347cdc80612bafa925e60426b353 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=466&h=311&q=90&f=ab2028d6cf86c0fcdbf7a1661fe36425 1x" srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=466&h=311&q=90&f=ab2028d6cf86c0fcdbf7a1661fe36425 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=767&h=512&q=90&f=5b3073cadfddbd907e63118f377753e2 1x" srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=767&h=512&q=90&f=5b3073cadfddbd907e63118f377753e2 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=466&h=311&q=90&f=ab2028d6cf86c0fcdbf7a1661fe36425 1x" srcset="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=466&h=311&q=90&f=ab2028d6cf86c0fcdbf7a1661fe36425 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=397&h=265&q=90&f=8662347cdc80612bafa925e60426b353" alt="Best Online Shops 2020" title="Best Online Shops 2020" src="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=397&h=265&q=90&f=8662347cdc80612bafa925e60426b353">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Best Online Shops 2020</a></h3>
<p class="article-text">Where should customers go for the best products, prices and service? We ranked the top 1,000 shops across eight industries and 39 categories.</p>
</article>
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject-s font-weight-bold text-uppercase" href="#">Sponsored Insight</a>
<img class="d-flex f-back-img m-0" alt="climate denier" title="climate denier" src="https://d.newsweek.com/en/full/1519889/korea-university-college-engineering.jpg?w=343&h=229&l=0&t=0&f=abfe6f03ca4ee6c12e4ec0bb62b83bf1">
</div>
<div class="border sponsor-txt-div">
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why You Should Be An Engineer & Why ABET Is Important to that Path.</a></h3>
<p class="article-text">Do you dream of changing the world? Do you want to make a practical difference in people’s lives? Engineers do both these things. Find out how to join them.</p>
</div>
</article>
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject-s font-weight-bold text-uppercase" href="#">Sponsored Insight</a>
<img class="d-flex flex-column f-back-img m-0 align-self-stretch" alt="climate denier" title="climate denier" src="https://d.newsweek.com/en/full/1516035/weill-cornell-medicine.jpg?w=343&h=229&l=0&t=0&f=730a87c256202b8c8712bfbe51e64bbf">
</div>
<div class="border sponsor-txt-div">
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Infertility - A look at the leading clinics in the field</a></h3>
<p class="article-text">There can be family related, culturally linked, and even political reasons why prospective parents face significant challenges seeking conception treatment. Who can they turn to?</p>
</div>
</article>
</div>
<div class="col-2">
<h2 class="col-title text-uppercase font-weight-bold">Top Story</h2>
<article class="col p-0">
<div class="f-back-img position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Politics</a>
<picture>
<source media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=591&h=364&f=90a31e432e7c89cc5697b252097900da 1x" srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=591&h=364&f=90a31e432e7c89cc5697b252097900da 1x">
<source media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=767&h=512&f=128063d88b12cbc692f51350b14cce95 1x" srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=767&h=512&f=128063d88b12cbc692f51350b14cce95 1x">
<source media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=466&h=311&f=ee69745b81382842769d0663061ebe30 1x" srcset="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=466&h=311&f=ee69745b81382842769d0663061ebe30 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=591&h=364&f=90a31e432e7c89cc5697b252097900da" alt="democrats warn trump stop threatening whistleblower" title="democrats warn trump stop threatening whistleblower" src="https://d.newsweek.com/en/full/1531364/democrats-warn-trump-stop-threatening-whistleblower.jpg?w=767&h=512&f=128063d88b12cbc692f51350b14cce95">
</picture>
</div>
<h3><a class="p-0 t-new-title font-weight-bold" href="#">Democrats Accuse Trump of Endangering Whistleblower</a></h3>
<p class="article-text">The president in recent days, by way of tweet storms and press conferences, has relentlessly bashed the Ukraine whistleblower and denied any wrongdoing during a phone call in which he pressured a foreign leader to investigate a political opponent.</p>
<ul class="px-0 m-0 related">
<li class="d-flex"><p class="m-0 font-weight-bold">Pelosi Says Russia 'Had a Hand' in Trump Ukraine Whistleblower Debacle</p></li>
</ul>
</article>
<div class="mt-3 pxp-10 gray">
<h2 class="col-title text-uppercase font-weight-bold pt-2">Culture & Travel</h2>
<div class="d-flex c-and-t row-wrap-ma flex-wrap">
<article class="col-6">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<img class="d-flex f-back-img m-0" src="https://d.newsweek.com/en/full/1520569/glow-worm-cave.jpg?w=397&h=265&f=6533d10beeef8a86208582b1038722f7" alt="">
</div>
<div>
<h3><a class="" href="#">Underground: The Most Beautiful Caves in the World</a></h3>
<p class="article-text">Caves have an almost primal appeal—they hold the secrets to our past and are the last vestige of exploration.</p>
<a class="c-and-t-bot" href="#">Caves</a>
</div>
</article>
<article class="col-6">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<img class="d-flex f-back-img m-0" src="https://d.newsweek.com/en/full/1529962/kenny-popera.jpg?w=397&h=265&f=d5416cad63a911a78ccdb1215b62ad35" alt="">
</div>
<div>
<h3><a class="" href="#">Uncharted Territory: A Queer Journey Through The Kenyan Bush</a></h3>
<p class="article-text">Kenny Porpora, author of 'The Autumn Balloon,' joins an LGBT tour operator in Kenya, where homosexuality is punishable by up to 14 years in prison.</p>
<a class="c-and-t-bot" href="#">Africa</a>
</div>
</article>
<article class="col-6">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<img class="d-flex f-back-img m-0" src="https://d.newsweek.com/en/full/1395614/qatar-airways.jpg?w=397&h=265&f=8d33e195b3df100a0ffe76bc3a4d029a" alt="">
</div>
<div>
<h3><a class="" href="#">The World's Best Airlines, Ranked</a></h3>
<p class="article-text">For best airline overall, Asian and Middle Eastern airlines triumphed.</p>
<a class="c-and-t-bot" href="#">Slideshows</a>
</div>
</article>
<article class="col-6">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<img class="d-flex f-back-img m-0" src="https://d.newsweek.com/en/full/1530172/7-best-bookshops-london.jpg?w=397&h=265&f=57a6222720a4fd11a19c69ff8afc66cd" alt="">
</div>
<div>
<h3><a class="" href="#">7 Best Bookshops in London</a></h3>
<p class="article-text">London is one of the best cities for bookshops on the planet and the below 7 spots should be on any bookworms list.</p>
<a class="c-and-t-bot" href="#">Culture</a>
</div>
</article>
</div>
</div>
<article class="more-stories">
<h2 class="col-title text-uppercase font-weight-bold">More Stories</h2>
<ul class="p-0 m-0">
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531308/nra-convenes-annual-meeting-indianapolis.jpg?w=135&h=90&f=0f4b8681c6ed7a8ddb901a1f972d6132" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Actor Jon Voight Defends Trump Against Impeachment: "War. This Is War"</a>
<p>These allegations of business impropriety mirror other scandals currently engulfing America's most powerful gun rights lobby.</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532410/greta-thunberg.jpg?w=135&h=90&f=ace695613331fad7ddc5e4fba7647b45" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Russian Politician Invites Greta Thunberg to Speak in Parliament</a>
<p>In a letter to Thunberg, Vasily Vlasov, deputy of the Duma State, said young people will not let themselves be "condemned to extinction."</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532403/corey-lewandowski.jpg?w=135&h=90&f=b63bb4c93eb1620183138b4f45865588" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Lewandowski Accuses Sanders, Warren of Wanting Immigrants to Kill Americans</a>
<p>"Don't forget Elizabeth Warren and Bernie Sanders—they're avowed socialists," said former Donald Trump campaign manager Corey Lewandowski.</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532406/donald-trump-coup-tweets-impeachment-twitter.jpg?w=135&h=90&f=9cf90a8c4f31871968567f7723c86e92" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Trump Has Claimed Multiple Times That He's the Victim of an Attempted Coup</a>
<p>The president's tweet calling the move towards his impeachment a coup is in line with his past rhetoric about the Mueller investigation and the FBI.</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1529491/rudy-giuliani.jpg?w=135&h=90&f=e4d3c8244a40160349394862e535b200" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Giuliani Says He Will Bring 'Jaw Suit' Against Congress</a>
<p>President Donald Trump's personal attorney said he spoke with civil rights and constitutional lawyers about planned lawsuits.</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532375/rev-robert-jeffress.jpg?w=135&h=90&f=7fe0be6fbe1d329c4cf3d9e24976a11f" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Pastor Robert Jeffress Says Trump Is a Christian 'Warrior' </a>
<p>Head of the 13,000-member First Baptist Dallas church told radio program 'The Todd Starnes Show' that the Democrats would not support Christians' rigths</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532400/kim-jong-un-missile-nuclear-test-launch.jpg?w=135&h=90&f=6f8e34e6c5df6031fb0d21cc8912e5f3" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Kim Jong Un Is Sending Trump a Message With Nuclear Missile Test: Experts</a>
<p>The test came just one day after the North announced it would resume denuclearization talks with the U.S. this weekend.</p>
</div>
<br class="clear">
</li>
<li class="col px-0 border-top">
<div class="float-left">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1532190/mac-thornberry.jpg?w=135&h=90&f=cf0e55ac1044aa37ef9e2f621c85ef80" alt="">
</a>
</div>
<div>
<a class="font-weight-bold" href="">Former Bush Aide: 'Republicans Should Be Worried' About Texas</a>
<p>"Republicans have a problem, particularly in college educated suburban areas," Ari Fleischer said.</p>
</div>
<br class="clear">
</li>
</ul>
</article>
</div>
</div>
</div>
<div class="col-3 ">
<article>
<h2 class="col-title text-uppercase font-weight-bold">Opinion</h2>
<ul class="p-0 m-0 opinion-list">
<li class="d-flex col px-0 pb-2 pt-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">I'm Pakistani-Canadian, and I Forgive Justin Trudeau</a>
<p class="text-uppercase font-weight-bold">By Ahmed Sahi</p>
</div>
</li>
<li class="d-flex col px-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Taking Action in Hong Kong Is in America's Moral and Economic Interest</a>
<p class="text-uppercase font-weight-bold">By Newt Gingrich</p>
</div>
</li>
<li class="d-flex col px-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">The Remarkable Story of an American Officer Who Saved 200 Lives</a>
<p class="text-uppercase font-weight-bold">By Lee Habeeb</p>
</div>
</li>
<li class="d-flex col px-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">The Military Is Promoting the General Who Assaulted Me, but It Can't Stonewall #MeToo Forever</a>
<p class="text-uppercase font-weight-bold">By Kathryn Spletstoser</p>
</div>
</li>
<li class="d-flex col px-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">We're About to Set Off on an All-Female Expedition Across World's Oceans</a>
<p class="text-uppercase font-weight-bold">By Emily Penn</p>
</div>
</li>
<li class="d-flex col px-0">
<a class="opinion-img" href=""></a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Why BDS Fails My 3D Test on Anti-Semitism | Opinion</a>
<p class="text-uppercase font-weight-bold">By Natan Sharansky</p>
</div>
</li>
</ul>
</article>
<article>
<h2 class="col-title text-uppercase font-weight-bold">Latest news</h2>
<ul class="p-0 m-0 opinion-list">
<li class="d-flex col px-0 pb-2 pt-0">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531443/actor-jon-voight-defends-trump-against-impeachment-war-this-war.jpg?w=397&h=265&f=03213760338ce121afc2a2f056ba904c" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Actor Jon Voight Defends Trump Against Impeachment: "War. This Is War"</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531361/protesters-demand-impeachment-over-sexual-assault-allegations.jpg?w=397&h=265&f=ede6cbbf93db5a2c6c3ff8dcf0c62127" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Fox News' Chris Wallace: 'Spinning' by Trump Defenders Is 'Astonishing'</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531381/7-best-literary-landmarks-london.jpg?w=397&h=265&f=20ad428647774736315e036a47234b72" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">7 Best Literary Landmarks in London"</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531371/hermit-nikolai-gromov.jpg?w=397&h=265&f=e98e317f26f61c3e47ac84c9b5135928" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Hermit Hides in The Woods For 24 Years, Fleeing Murder He DIdn't Commit"</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531359/newsom-trump.jpg?w=397&h=265&f=c557c88ad7e4b6d2767048c0cf267bfd" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">California to Work with Bloomberg to Monitor Climate Change With Satellites"</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531350/navy-uss-ronald-reagan-south-china-sea.jpg?w=397&h=265&f=bd11c9c808c1fad134f4c752ce767b12" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">China Gets U.S. Holiday Wish, But Says Its 'Petty Actions' Aren't Helping"</a>
</div>
</li>
<li class="d-flex col px-0 ">
<a class="latest-img">
<img class="latest-img" src="https://d.newsweek.com/en/full/1531342/little-colorado-river-gorge.jpg?w=397&h=265&f=0e0c93b97855f27760e5027539e712f4" alt="">
</a>
<div class="d-flex flex-column opinion-txt">
<a class="font-weight-bold" href="">Critics Say Proposed Dam Will Severely Impact Wildlife, Sacred Sites"</a>
</div>
</li>
</ul>
</article>
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject-s font-weight-bold text-uppercase" href="#">Sponsored Insight</a>
<img class="d-flex f-back-img m-0" alt="climate denier" title="climate denier" src="https://d.newsweek.com/en/full/1529030/tulane-university.jpg?w=343&h=229&f=c34e12abd19e4a56001453143aae69d4">
</div>
<div class="border sponsor-txt-div">
<h3><a class="p-0 f-new-title font-weight-bold" href="#">What Can a Degree in Public Health Do For You?</a></h3>
<p class="article-text">The field of public health is a powerful draw for those who feel inspired to make a positive difference in their communities. Find out more.</p>
</div>
</article>
<div class="mt-3 gray n-logo border">
<div class="d-flex align-items-center n-div">
<span class="d-flex align-items-center pl-3"></span>
<h2 class="text-uppercase font-weight-bold m-0">Sign up for our Newsletter</h2>
</div>
<a class="d-flex text-uppercase font-weight-bold" href="">Sign Up
<span class="d-flex align-items-center pl-3">
<svg class ="arrow" viewbox="0 0 8 14" fill="#fff">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
<a class="font-weight-bold" href="">Update your preferences »</a>
</div>
</div>
</div>
</section>
<div class="m-wrapper">
<section class="row">
<h2 class="notshow">holder</h2>
<article class="col-md-3 height-fit align-self-end">
<h2 class="notshow">holder</h2>
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">October 04 ISSUE</a>
<picture>
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=290&h=387&q=90&f=8d9a946387c8b7c1bd00124356d8989f 1x" srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=290&h=387&q=90&f=8d9a946387c8b7c1bd00124356d8989f 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=726&h=969&q=90&f=d282b82a0ec8085b1aa6fa60b782cd0b 1x" srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=726&h=969&q=90&f=d282b82a0ec8085b1aa6fa60b782cd0b 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=450&h=600&q=90&f=521251b385a9c3cbce9b1952c9a0e342 1x" srcset="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=450&h=600&q=90&f=521251b385a9c3cbce9b1952c9a0e342 1x">
<img class="d-flex f-back-img m-0" data-src="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=360&h=480&q=90&f=7b78a39ae8c5b9ba4da7baab6105f018" alt="October 04, 2019" title="October 04, 2019" src="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=360&h=480&q=90&f=7b78a39ae8c5b9ba4da7baab6105f018">
</picture>
</div>
<a class="d-flex f-new-title font-weight-bold justify-content-center issue" href="#">See all features
<span class="d-flex align-items-center pl-3">
<svg class ="arrow" viewbox="0 0 8 14" fill="#000">
<polygon class="st1" points="8,7 1.1,0 0,1.1 5.9,7 0,12.9 1.1,14 8,7 8,7 "></polygon>
</svg>
</span>
</a>
</article>
<article class="col-md-9">
<div class="d-flex align-items-center n-div pyb-12 border-bottom justify-content-center">
<span class="d-flex align-items-center pl-3"></span>
<h2 class="text-uppercase font-weight-bold m-0">IN THE MAGAZINE</h2>
</div>
<div class="d-flex row">
<div class="m-block col-md-4 ">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b 1x" srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=397&h=265&q=90&f=a8277652f3001b45079ff64eaaf22548 1x" srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=397&h=265&q=90&f=a8277652f3001b45079ff64eaaf22548 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=767&h=512&q=90&f=d76d35a856b4a656977a248a3af838da 1x" srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=767&h=512&q=90&f=d76d35a856b4a656977a248a3af838da 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b 1x" srcset="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b" alt="FE_SCOTUS_01_Banner" title="FE_SCOTUS_01_Banner" src="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Cover</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">Politics</a></h4>
</div>
<h2><a class="font-weight-bold" href="">Three LGBTQ Cases Set to Test the Supreme Court's Conservative Principles</a></h2>
</div>
<div class="m-block col-md-4 ">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=397&h=265&q=90&f=1824b0482083a870ac8499d196ab55f9 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=397&h=265&q=90&f=1824b0482083a870ac8499d196ab55f9 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=397&h=265&q=90&f=1824b0482083a870ac8499d196ab55f9 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=397&h=265&q=90&f=1824b0482083a870ac8499d196ab55f9 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=767&h=512&q=90&f=19d30ca2d205ff2ddb5d0402f851187d 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=767&h=512&q=90&f=19d30ca2d205ff2ddb5d0402f851187d 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=767&h=512&q=90&f=19d30ca2d205ff2ddb5d0402f851187d 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=767&h=512&q=90&f=19d30ca2d205ff2ddb5d0402f851187d 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.webp?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x" srcset="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84" alt="Coffee rust" title="Coffee rust" src="https://d.newsweek.com/en/full/1525501/coffee-rust.jpg?w=466&h=311&q=90&f=4da0bf1ccbdf14483b45ee7f66f99a84">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Features</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">U.S.</a></h4>
</div>
<h2><a class="font-weight-bold" href="">Your Coffee Could Be Connected to Why Hondurans Are Fleeing to the Border</a></h2>
</div>
<div class="m-block col-md-4 ">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=397&h=265&l=46&t=43&q=90&f=6e1736cbd661664504d7066354b2067c 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=397&h=265&l=46&t=43&q=90&f=6e1736cbd661664504d7066354b2067c 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=397&h=265&l=46&t=43&q=90&f=6e1736cbd661664504d7066354b2067c 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=397&h=265&l=46&t=43&q=90&f=6e1736cbd661664504d7066354b2067c 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=767&h=512&l=46&t=43&q=90&f=f81fea8cae8115f8e5c786d289caac4c 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=767&h=512&l=46&t=43&q=90&f=f81fea8cae8115f8e5c786d289caac4c 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=767&h=512&l=46&t=43&q=90&f=f81fea8cae8115f8e5c786d289caac4c 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=767&h=512&l=46&t=43&q=90&f=f81fea8cae8115f8e5c786d289caac4c 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.webp?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x" srcset="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0" alt="PER_AFRICA_01_525609494_Banner" title="PER_AFRICA_01_525609494_Banner" src="https://d.newsweek.com/en/full/1531411/per-africa-01-525609494-banner.jpg?w=466&h=311&l=46&t=43&q=90&f=c8ab04ac9b851f960ce03ffba5b5bff0">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Downloads</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">World</a></h4>
</div>
<h2><a class="font-weight-bold" href="">Trump's Message to Troubled Developing Countries? Figure it Out On Your Own</a></h2>
</div>
</div>
</article>
<article class="col-md-12 bot-row d-flex ">
<div class="row">
<div class="m-block col-md-3">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=397&h=265&l=55&t=38&q=90&f=c24288513345fe89acca6f5a5c722ad2 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=397&h=265&l=55&t=38&q=90&f=c24288513345fe89acca6f5a5c722ad2 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=397&h=265&l=55&t=38&q=90&f=c24288513345fe89acca6f5a5c722ad2 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=397&h=265&l=55&t=38&q=90&f=c24288513345fe89acca6f5a5c722ad2 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=767&h=512&l=55&t=38&q=90&f=476286bb3ba4ccfcfe4d19451ca8a7b5 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=767&h=512&l=55&t=38&q=90&f=476286bb3ba4ccfcfe4d19451ca8a7b5 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=767&h=512&l=55&t=38&q=90&f=476286bb3ba4ccfcfe4d19451ca8a7b5 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=767&h=512&l=55&t=38&q=90&f=476286bb3ba4ccfcfe4d19451ca8a7b5 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.webp?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x" srcset="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378" alt="HOR_Moonshots_Tinctorium_01_681734420" title="HOR_Moonshots_Tinctorium_01_681734420" src="https://d.newsweek.com/en/full/1531430/hor-moonshots-tinctorium-01-681734420.jpg?w=466&h=311&l=55&t=38&q=90&f=1ed0b20aaba6b6bdf1127b0929c1b378">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">New World</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">Culture</a></h4>
</div>
<h2><a class="font-weight-bold" href="">How One Company is Making Blue Jeans 'Green'</a></h2>
</div>
<div class="m-block col-md-3">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=397&h=265&l=49&t=48&q=90&f=4a02ed74ca7e0e31dc9f9c5e04e7bf7e 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=397&h=265&l=49&t=48&q=90&f=4a02ed74ca7e0e31dc9f9c5e04e7bf7e 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=397&h=265&l=49&t=48&q=90&f=4a02ed74ca7e0e31dc9f9c5e04e7bf7e 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=397&h=265&l=49&t=48&q=90&f=4a02ed74ca7e0e31dc9f9c5e04e7bf7e 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=767&h=512&l=49&t=48&q=90&f=73cdce424df47a5764587c719e4035af 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=767&h=512&l=49&t=48&q=90&f=73cdce424df47a5764587c719e4035af 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=767&h=512&l=49&t=48&q=90&f=73cdce424df47a5764587c719e4035af 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=767&h=512&l=49&t=48&q=90&f=73cdce424df47a5764587c719e4035af 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.webp?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x" srcset="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2" alt="CUL_Books_01_997638600" title="CUL_Books_01_997638600" src="https://d.newsweek.com/en/full/1532238/cul-books-01-997638600.jpg?w=466&h=311&l=49&t=48&q=90&f=4fade687ec645d16dfa0b204673a15b2">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Downtime</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">Culture</a></h4>
</div>
<h2><a class="font-weight-bold" href="">21 Books to Curl Up With This Fall</a></h2>
</div>
<div class="m-block col-md-3">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=397&h=265&q=90&f=d393817be527836aa47846c1364bff33 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=397&h=265&q=90&f=d393817be527836aa47846c1364bff33 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=397&h=265&q=90&f=d393817be527836aa47846c1364bff33 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=397&h=265&q=90&f=d393817be527836aa47846c1364bff33 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=767&h=512&q=90&f=2a7795b1a0e499d87d38195eae915f17 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=767&h=512&q=90&f=2a7795b1a0e499d87d38195eae915f17 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=767&h=512&q=90&f=2a7795b1a0e499d87d38195eae915f17 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=767&h=512&q=90&f=2a7795b1a0e499d87d38195eae915f17 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.webp?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x" srcset="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d" alt="PartingShot_MerrittWever" title="PartingShot_MerrittWever" src="https://d.newsweek.com/en/full/1531442/partingshot-merrittwever.jpg?w=466&h=311&q=90&f=d7635a97c39747309d3422451cbdc54d">
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Downtime</p>
<h4 class="mb-0 d-flex align-items-center"><a class="text-uppercase font-weight-bold mb-0" href="">Culture</a></h4>
</div>
<h2><a class="font-weight-bold" href="">Merritt Wever on Netflix's 'Unbelievable' and Not Torturing Herself</a></h2>
</div>
<div class="m-block col-md-3">
<div class="f-back-img position-relative m-0">
<a class="position-absolute back-click" href="#"></a>
<picture class="d-flex m-back-img">
<source type="image/webp" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb 1x">
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb 1x">
<source type="image/webp" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=397&h=265&l=52&t=53&q=90&f=c0c4416fd60b9226f28027dc88ff10dd 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=397&h=265&l=52&t=53&q=90&f=c0c4416fd60b9226f28027dc88ff10dd 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=397&h=265&l=52&t=53&q=90&f=c0c4416fd60b9226f28027dc88ff10dd 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=397&h=265&l=52&t=53&q=90&f=c0c4416fd60b9226f28027dc88ff10dd 1x">
<source type="image/webp" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=767&h=512&l=52&t=53&q=90&f=d406d6f0307bf81c078967a9975569b8 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=767&h=512&l=52&t=53&q=90&f=d406d6f0307bf81c078967a9975569b8 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=767&h=512&l=52&t=53&q=90&f=d406d6f0307bf81c078967a9975569b8 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=767&h=512&l=52&t=53&q=90&f=d406d6f0307bf81c078967a9975569b8 1x">
<source type="image/webp" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=466&h=311&l=52&t=53&q=90&f=b03632311a71571da9ceb6279040f564 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.webp?w=466&h=311&l=52&t=53&q=90&f=b03632311a71571da9ceb6279040f564 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=466&h=311&l=52&t=53&q=90&f=b03632311a71571da9ceb6279040f564 1x" srcset="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=466&h=311&l=52&t=53&q=90&f=b03632311a71571da9ceb6279040f564 1x">
<img class="d-flex flex-column m-back-img m-0" data-src="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb" alt="Burn With Rage" title="Burn With Rage" src="https://d.newsweek.com/en/full/1533373/burn-rage.jpg?w=480&h=320&l=52&t=53&q=90&f=9b8c8408bbd8c29312ff36ecb84e49eb" >
</picture>
</div>
<div class="d-flex align-items-center">
<p class="text-uppercase font-weight-bold mb-0">Big Shots</p>
</div>
<h2><a class="font-weight-bold" href="">Burn With Rage</a></h2>
</div>
</div>
</article>
</section>
</div>
<section class="container editors-p p-0">
<div class="d-flex align-items-center n-div pyb-12 border-bottom justify-content-center col">
<span class="d-flex align-items-center pl-3"></span>
<h2 class="text-uppercase font-weight-bold m-0">Editor's Pick</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=397&h=265&f=ac59bec6d0c4e3c74fbc10a27d077c10 1x" srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=397&h=265&f=ac59bec6d0c4e3c74fbc10a27d077c10 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=466&h=311&f=812c702b673d85ca4bb5d0b7c7fbf4a4 1x" srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=466&h=311&f=812c702b673d85ca4bb5d0b7c7fbf4a4 1x"><source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=767&h=512&f=1620fd2736b5d488c837624425e56122 1x" srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=767&h=512&f=1620fd2736b5d488c837624425e56122 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=466&h=311&f=812c702b673d85ca4bb5d0b7c7fbf4a4 1x" srcset="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=466&h=311&f=812c702b673d85ca4bb5d0b7c7fbf4a4 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=397&h=295&f=497d086b49a33a812b6600fcd8c7406b" alt="meghan and harry sue mail on sunday" title="meghan and harry sue mail on sunday" src="https://d.newsweek.com/en/full/1532398/meghan-harry-sue-mail-sunday.jpg?w=397&h=295&f=497d086b49a33a812b6600fcd8c7406b">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=397&h=265&f=a55a1a01bc7db04c0d7877dcc2ff6135 1x" srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=397&h=265&f=a55a1a01bc7db04c0d7877dcc2ff6135 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=466&h=311&f=654d3c32a98ed25c6a70d47e0d027ad7 1x" srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=466&h=311&f=654d3c32a98ed25c6a70d47e0d027ad7 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=767&h=512&f=8b17c105a16f54f098a0605173663d01 1x" srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=767&h=512&f=8b17c105a16f54f098a0605173663d01 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=466&h=311&f=654d3c32a98ed25c6a70d47e0d027ad7 1x" srcset="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=466&h=311&f=654d3c32a98ed25c6a70d47e0d027ad7 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=397&h=295&f=9c271868d918a550c51e6cb08feaa041" alt="baby, infant, parent, child, stock, getty, patient," title="baby, infant, parent, child, stock, getty, patient," src="https://d.newsweek.com/en/full/1532388/baby-infant-parent-child-stock-getty-patient.jpg?w=397&h=295&f=9c271868d918a550c51e6cb08feaa041">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=397&h=265&f=de3ecff863107a41a1988efc1a4105a6 1x" srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=397&h=265&f=de3ecff863107a41a1988efc1a4105a6 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=466&h=311&f=1918d4e7af302867c8caf40e444819f1 1x" srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=466&h=311&f=1918d4e7af302867c8caf40e444819f1 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=767&h=512&f=d1d6c6c781c483390fd3d75233237f37 1x" srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=767&h=512&f=d1d6c6c781c483390fd3d75233237f37 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=466&h=311&f=1918d4e7af302867c8caf40e444819f1 1x" srcset="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=466&h=311&f=1918d4e7af302867c8caf40e444819f1 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=397&h=295&f=0d15e8c0ffcb5b2322068f537d77088b" alt="Facebook" title="Facebook" src="https://d.newsweek.com/en/full/1531982/facebook.jpg?w=397&h=295&f=0d15e8c0ffcb5b2322068f537d77088b">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=397&h=265&f=f96fb33155cfece8ff39dc67b5b07987 1x" srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=397&h=265&f=f96fb33155cfece8ff39dc67b5b07987 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=466&h=311&f=73ea7714a80d1a75138ffc7e152c688d 1x" srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=466&h=311&f=73ea7714a80d1a75138ffc7e152c688d 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=767&h=512&f=c0e558307c01ce85cc9fc51f33e4ff2c 1x" srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=767&h=512&f=c0e558307c01ce85cc9fc51f33e4ff2c 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=466&h=311&f=73ea7714a80d1a75138ffc7e152c688d 1x" srcset="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=466&h=311&f=73ea7714a80d1a75138ffc7e152c688d 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=397&h=295&f=1e16fdeb44ced8658b828a03b66d1d46" alt="Bali starling" title="Bali starling" src="https://d.newsweek.com/en/full/1532156/bali-starling.jpg?w=397&h=295&f=1e16fdeb44ced8658b828a03b66d1d46">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=397&h=265&f=9e169c08539ffd4066b0cfb814dea1cf 1x" srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=397&h=265&f=9e169c08539ffd4066b0cfb814dea1cf 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=466&h=311&f=c20f728154ffd37e73aa8260e78e3d8b 1x" srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=466&h=311&f=c20f728154ffd37e73aa8260e78e3d8b 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=767&h=512&f=20a3f538308a7f779f792cf86b99dc77 1x" srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=767&h=512&f=20a3f538308a7f779f792cf86b99dc77 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=466&h=311&f=c20f728154ffd37e73aa8260e78e3d8b 1x" srcset="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=466&h=311&f=c20f728154ffd37e73aa8260e78e3d8b 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=397&h=295&f=391e6d87a02bb8a624b823cfac9d67a5" alt="Pompeo" title="Pompeo" src="https://d.newsweek.com/en/full/1532203/pompeo.jpg?w=397&h=295&f=391e6d87a02bb8a624b823cfac9d67a5">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=397&h=265&f=db71b671e0bddd130f575a97f0560c69 1x" srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=397&h=265&f=db71b671e0bddd130f575a97f0560c69 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=466&h=311&f=36fa93a9eeeb266d6d714f28117627d1 1x" srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=466&h=311&f=36fa93a9eeeb266d6d714f28117627d1 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=767&h=512&f=99242a769a03aae553bcbe6f77ad4cd4 1x" srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=767&h=512&f=99242a769a03aae553bcbe6f77ad4cd4 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=466&h=311&f=36fa93a9eeeb266d6d714f28117627d1 1x" srcset="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=466&h=311&f=36fa93a9eeeb266d6d714f28117627d1 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=397&h=295&f=fa0916500df091e923b1bf77af5f6311" alt="Empty Classroom Stock Image" title="Empty Classroom Stock Image" src="https://d.newsweek.com/en/full/1531980/empty-classroom-stock-image.jpg?w=397&h=295&f=fa0916500df091e923b1bf77af5f6311">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=397&h=265&f=00b2c484716a716de4a5fadbd356a72b 1x" srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=397&h=265&f=00b2c484716a716de4a5fadbd356a72b 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=466&h=311&f=3248e221aa36156d99425d5660ce97b8 1x" srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=466&h=311&f=3248e221aa36156d99425d5660ce97b8 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=767&h=512&f=b7b454d1e879bfcea3b488051ae33740 1x" srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=767&h=512&f=b7b454d1e879bfcea3b488051ae33740 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=466&h=311&f=3248e221aa36156d99425d5660ce97b8 1x" srcset="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=466&h=311&f=3248e221aa36156d99425d5660ce97b8 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=397&h=295&f=ca05ac881379e43441cc94ca78166d24" alt=" emblem of the British Army's 77th Brigade" title=" emblem of the British Army's 77th Brigade" src="https://d.newsweek.com/en/full/1532159/emblem-british-armys-77th-brigade.jpg?w=397&h=295&f=ca05ac881379e43441cc94ca78166d24">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
<div class="col-lg-3 col-md-6">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase" href="#">Tech & Science</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=397&h=265&f=933d61f474d223bea4823abb00f7848a 1x" srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=397&h=265&f=933d61f474d223bea4823abb00f7848a 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=466&h=311&f=203281a1516a67fec91a45ed4385a199 1x" srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=466&h=311&f=203281a1516a67fec91a45ed4385a199 1x">
<source type="image/jpeg" media="(min-width: 468px)" data-srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=767&h=512&f=17b2780f95e0484d46e6829c9e4768e2 1x" srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=767&h=512&f=17b2780f95e0484d46e6829c9e4768e2 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=466&h=311&f=203281a1516a67fec91a45ed4385a199 1x" srcset="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=466&h=311&f=203281a1516a67fec91a45ed4385a199 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=397&h=295&f=42ef5bcb2d5781a4a5085e6b98995ea1" alt="Donald Trump, civil war, tweet, sedition" title="Donald Trump, civil war, tweet, sedition" src="https://d.newsweek.com/en/full/1531945/donald-trump-civil-war-tweet-sedition.jpg?w=397&h=295&f=42ef5bcb2d5781a4a5085e6b98995ea1">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
<p class="article-text">Climate denialism expert Martin Hultman is currently working on a project examining the formulation and spread of conspiracy theories around Greta Thunberg.</p>
</article>
</div>
</div>
</section>
<section class="container f-sld p-0">
<div class="d-flex align-items-center n-div pyb-12 border-bottom justify-content-center col">
<span class="n-sld-icon position-relative"> </span>
<h2 class="text-uppercase font-weight-bold m-0">FEATURED SLIDESHOWS</h2>
</div>
<div class="row">
<div class="col-md-4 ">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase d-flex justify-content-center" href="#">1</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=397&h=265&f=e297a49f2e618fa1db8a4933f154cc2a 1x" srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=397&h=265&f=e297a49f2e618fa1db8a4933f154cc2a 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=300&h=200&f=dd9258c239fdf9664a23d568b1287130 1x" srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=300&h=200&f=dd9258c239fdf9664a23d568b1287130 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=767&h=512&f=8135bb569aa9f689bd0cb1a859221a02 1x" srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=767&h=512&f=8135bb569aa9f689bd0cb1a859221a02 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=466&h=311&f=7dd2fb807f95ee0ad7d096e161c1fc67 1x" srcset="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=466&h=311&f=7dd2fb807f95ee0ad7d096e161c1fc67 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=397&h=265&f=e297a49f2e618fa1db8a4933f154cc2a" alt="justin and hailey bieber wedding " title="justin and hailey bieber wedding " src="https://d.newsweek.com/en/full/1532074/justin-hailey-bieber-wedding.jpg?w=397&h=265&f=e297a49f2e618fa1db8a4933f154cc2a">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
</article>
</div>
<div class="col-md-4 ">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase d-flex justify-content-center" href="#">23</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=397&h=265&f=f340356025a2be1523d3102736a02f42 1x" srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=397&h=265&f=f340356025a2be1523d3102736a02f42 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=300&h=200&f=606f588b1e8591cd150a4e9c51f7d523 1x" srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=300&h=200&f=606f588b1e8591cd150a4e9c51f7d523 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=767&h=512&f=94e806de2818283ce5e670523e85b5ed 1x" srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=767&h=512&f=94e806de2818283ce5e670523e85b5ed 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=466&h=311&f=2b8b5af269f3d1f9923a3d81244b29ad 1x" srcset="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=466&h=311&f=2b8b5af269f3d1f9923a3d81244b29ad 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=397&h=265&f=f340356025a2be1523d3102736a02f42" alt="Muir Pass The Great Alone" title="Muir Pass The Great Alone" src="https://d.newsweek.com/en/full/1521879/muir-pass-great-alone.jpg?w=397&h=265&f=f340356025a2be1523d3102736a02f42">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
</article>
</div>
<div class="col-md-4 ">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase d-flex justify-content-center" href="#">13</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=397&h=265&f=238784ea0ecb17e5186615dc6c87822e 1x" srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=397&h=265&f=238784ea0ecb17e5186615dc6c87822e 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=300&h=200&f=40dea87d2f9a76de91eaefa7808a0aa0 1x" srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=300&h=200&f=40dea87d2f9a76de91eaefa7808a0aa0 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=767&h=512&f=c212d0fe5893621d1ac7d6bc7504a966 1x" srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=767&h=512&f=c212d0fe5893621d1ac7d6bc7504a966 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=466&h=311&f=c96e226ece23f0598629417bf4f6c6b7 1x" srcset="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=466&h=311&f=c96e226ece23f0598629417bf4f6c6b7 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=397&h=265&f=238784ea0ecb17e5186615dc6c87822e" alt="Galapagos Cerro Brujo" title="Galapagos Cerro Brujo" src="https://d.newsweek.com/en/full/1521628/galapagos-cerro-brujo.jpg?w=397&h=265&f=238784ea0ecb17e5186615dc6c87822e">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
</article>
</div>
<div class="col-md-4 ">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase d-flex justify-content-center" href="#">56</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=397&h=265&f=c18000449d44d36619eba01997038aec 1x" srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=397&h=265&f=c18000449d44d36619eba01997038aec 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=300&h=200&f=dd33d29f84758053102ae82a19909f36 1x" srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=300&h=200&f=dd33d29f84758053102ae82a19909f36 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=767&h=512&f=2d15d07e478a960a123d0137a530170a 1x" srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=767&h=512&f=2d15d07e478a960a123d0137a530170a 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=466&h=311&f=571df62d30111441d741fbae98e4234b 1x" srcset="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=466&h=311&f=571df62d30111441d741fbae98e4234b 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=397&h=265&f=c18000449d44d36619eba01997038aec" alt="Still 2 EOP" title="Still 2 EOP" src="https://d.newsweek.com/en/full/1521293/still-2-eop.jpg?w=397&h=265&f=c18000449d44d36619eba01997038aec">
</picture>
</div>
<h3><a class="p-0 f-new-title font-weight-bold" href="#">Why Climate Deniers Hate Activists So Much</a></h3>
</article>
</div>
<div class="col-md-4 ">
<article class="col p-0">
<div class="position-relative">
<a class="position-absolute back-click" href="#"></a>
<a class="position-absolute subject font-weight-bold text-uppercase d-flex justify-content-center" href="#">6</a>
<picture >
<source type="image/jpeg" media="(min-width: 992px)" data-srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=397&h=265&f=254c6ae482a2ce8f1b41fa84983bfec3 1x" srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=397&h=265&f=254c6ae482a2ce8f1b41fa84983bfec3 1x">
<source type="image/jpeg" media="(min-width: 768px)" data-srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=300&h=200&f=1146935ee6d6a2a4426961de203f0d17 1x" srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=300&h=200&f=1146935ee6d6a2a4426961de203f0d17 1x">
<source type="image/jpeg" media="(min-width: 481px)" data-srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=767&h=512&f=43f083f20f25b4033b8b6606b1c4b81a 1x" srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=767&h=512&f=43f083f20f25b4033b8b6606b1c4b81a 1x">
<source type="image/jpeg" media="(min-width: 0px)" data-srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=466&h=311&f=979644f0e757a3074ff95318118d1163 1x" srcset="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=466&h=311&f=979644f0e757a3074ff95318118d1163 1x">
<img class="d-flex f-back-img" data-src="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=397&h=265&f=254c6ae482a2ce8f1b41fa84983bfec3" alt="Lancaster Meeting House" title="Lancaster Meeting House" src="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=397&h=265&f=254c6ae482a2ce8f1b41fa84983bfec3">
</picture>
</div>