-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1548 lines (1367 loc) · 75.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="https://g.newsweek.com/themes/newsweek/images/icon-slideshows-nw.png"
type="image/x-icon">
<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" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css"
integrity="sha384-i1LQnF23gykqWXg6jxC2ZbCbUMxyw5gLZY6UiUS98LYV5unm8GWmfkIS6jqJfb4E" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Newsweek - News, Analysis, program</title>
</head>
<body>
<!-- NAVIGATION -->
<nav class="bg-white">
<div
class="nw-logo d-flex justify-content-between align-items-center py-1 justify-content-md-between align-items-md-end pt-md-5 pb-md-3">
<p class="curr-date text-white d-none d-md-block m-0 ml-3">Wed, Jul 24, 2019</p>
<img class="ml-2" src="assets/img/logo.png" alt="logo">
<div class="d-flex align-items-center">
<a class="text-white font-weight-bold" href="#">SIGN IN</a>
<a class="btn bg-white text-danger font-weight-bold rounded-0 text-uppercase ml-2 mr-md-3"
href="#">SUBSSCRIBE</a>
<a class="text-white h3 font-weight-bold rounded-0 text-uppercase ml-4 mr-3 d-md-none" href="#"><i
class="fas fa-bars pt-3 pt-md-0 d-md-none"></i></a>
</div>
</div>
<ul class="px-2 nw-nav py-2 p-0 m-0 d-none d-lg-flex">
<li><a class="text-newsweek h5 font-weight-bold" href="#">U.S</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">World</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Business</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Science</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Culture</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Sports</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Health</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Opinion</a></li>
<li><a class="text-newsweek h5 font-weight-bold" href="#">Vintage</a></li>
<li><input class="nw-search" type="search" name="search" id="search" placeholder="Search"><span><i
class="fas fa-search"></i></span></li>
</ul>
</nav>
<main class="container-fluid pt-3">
<!-- ARTICLES SECTION -->
<div class="row">
<!-- FEATURED STORY -->
<div class="col-12 col-md-5 col-lg order-1 order-md-0">
<h5 class="h6 make-uppercase font-weight-bold">Featured Stories</h5>
<div class="card border-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1511786/newsweek-momentum-awards-2019.png?w=767&h=512&q=90&f=45bc5e299016e2eb7ecdeb46b05db197"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">ANALYSIS</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">The Newsweek Momentum Awards</a></h3>
<p class="card-text card-text-custom">The Newsweek Momentum Awards will recognize five individuals
around
the globe, as
well as one city, which will be chosen as the "smartest city in the world."</p>
</div>
</div>
<div class="card border-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514085/carrie-lam-hong-kong-china-taiwan.jpg?w=767&h=512&q=90&f=3a4124af370252948785bbf7e90e0009"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">NEWS</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">As U.S. and Iran Tensions Get Worse, Iraq Steps In and Tries
to
Help</a></h3>
<p class="card-text card-text-custom">Iraqi Prime Minister Adel Abdul-Mahdi traveled to Tehran to meet
with Iranian
President Hassan Rouhani in hopes of finding "ways to defuse the current crisis" between the U.S.
and
Iran.</p>
</div>
</div>
<div class="card border-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514058/ice.jpg?w=767&h=512&q=90&f=9731f2a81ea8b26ccc6675bc48ab876c"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">U.S</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">ICE Arrest Thwarted After Neighbors Form Human Chain Around
Father And Son</a></h3>
<p class="card-text card-text-custom">"The family don't bother nobody, they work every day, they come
home, the kids jump
on their trampoline, it's just a community," one neighbor said.</p>
</div>
</div>
<div class="card border-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1511669/spot-im-logo.png?w=767&h=512&q=90&f=b62155420f668b2e7d357abadb61a7be"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">EDITOR'S NOTE</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">To Our Readers:</a></h3>
<p class="card-text card-text-custom">We always want to hear from you, and to make that easier, we've
implemented a new
commenting forum. Take a look at the bottom of Newsweek articles. Spot.IM is a tool that helps
readers respond to our stories and communicate with one another—and with us. Ask us a question,
embed a GIF, point out a mistake. Be civil and respectful, please. And most important: Be in touch.
</p>
</div>
</div>
</div>
<!-- TOP STORY -->
<div class="col-12 col-md-7 col-lg-5 order-0 order-md-1">
<!-- TOP STORY -->
<section>
<h5 class="h6 make-uppercase font-weight-bold">Top Story</h5>
<div class="card border-0 my-2">
<img
src="https://d.newsweek.com/en/full/1514068/boris-johnson-uk-pm-trump-friend.jpg?w=591&h=364&q=90&f=69544f385c921eec7352869920158999"
class="card-img-top rounded-0" alt="News week momentum">
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2 mb-2"><a href="#">Boris Johnson to Take Over as U.K. Prime Minister</a>
</h3>
<p class="card-text card-text-custom">The Conservative Party chose Johnson as its new leader, meaning
he
will succeed Prime
Minister Theresa May.</p>
</div>
</div>
</section>
<!-- MORE STORIES -->
<section>
<h5 class="h6 make-uppercase font-weight-bold mt-3">More Stories</h5>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1513955/afghanistan-car-bomb-attack.jpg?w=135&h=90&f=0ee5517799604ff2a3789a6c66887fd8"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Trump: I Could Win the Afghanistan War 'in a Week' but Don't
Want
to Kill '10
Million'</a></h4>
<p class="card-text card-text-custom">"Afghanistan could be wiped off the face of the Earth. I
don't
want to go that
route," President Donald Trump said.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1513838/candida-auris-fungi-fungus-stock-getty.jpg?w=135&h=90&f=09c43508367d09edb7da573b11586e96"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Global Warming May Lead to Diseases We Don't Know About,
Scientists
Warn</a></h4>
<p class="card-text card-text-custom">A CDC official warned the fungus "is behaving in unexpected
and
concerning ways, causing severe disease in countries across the globe, including the United
States."
</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1514039/north-korea-submarine-kim-jong-un-icbm.jpg?w=135&h=90&f=4bee94d4999822d52d4583481e3f7fed"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Photos Show Kim Jong Un Inspecting New Submarine, Deployment
'Near
at Hand'</a></h4>
<p class="card-text card-text-custom">Reports suggested the new submarine may have been designed
to
carry and launch ballistic missiles, which could in future be tipped with nuclear warheads.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1512958/boris-johnson-new-york-city-us-citizen.jpg?w=135&h=90&f=863620b9634e130128c23299b781dc87"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Britain's New Prime Minister Was a U.S. Citizen for Half a
Century</a></h4>
<p class="card-text card-text-custom">Boris Johnson, the Conservative Party leader and new U.K.
prime
minister, renounced his American citizenship after a dispute with the IRS.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1514047/duterte-philippines-death-penalty-corruption-drugs-war.jpg?w=135&h=90&f=2beee91c41aa2c1ce1aff53821f68796"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Duterte Wants Death Penalty for Corruption: 'Blood That We Need
to
Cleanse'</a></h4>
<p class="card-text card-text-custom">Philippines President Rodrigo Duterte called on Congress to
reinstate the death penalty for "heinous" drug crimes and corruption in his country.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1514051/museum-fire.png?w=135&h=90&f=d3ef75c84f52059e69ce74c580caf7aa"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Museum Fire Mandatory Evacuations: Arizona Blaze Spreads Beyond
1,000 Acres</a></h4>
<p class="card-text card-text-custom">The city of Flagstaff and Coconino County have declared a
state
of emergency due to the impacts of the fire.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1513855/carrie-lam-hong-kong-violence-subway.jpg?w=135&h=90&f=08b5b424779ccae353b51d06be118a33"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">Hong Kong Leader Criticizes Both Sides After Mob Attack</a>
</h4>
<p class="card-text card-text-custom">At least 45 people were injured, one critically, in the
attack
allegedly targeting anti-government protesters. Activists and lawmakers have accused the police
of
standing by as the violence occurred.</p>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-bottom-0 pt-3 mt-3 rounded-0">
<div class="row no-gutters">
<div class="col-6 col-md-3 col-sm-4">
<img
src="https://d.newsweek.com/en/full/1514015/trump-transfer-nuclear-tech-saudi-arabia-ok.jpg?w=135&h=90&f=435ca1b4393d5e18bef6a46e641ac397"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-6 col-md-9 col-sm-8 pl-3">
<div class="card-body p-0">
<h4 class="card-title"><a href="#">GOP: 'No Impropriety' by Trump in Transfer of Nuclear Tech to
Saudi
Arabia</a></h4>
<p class="card-text card-text-custom">Democrats have previously alleged the administration may
have
broken federal laws and guidelines in its numerous transfers of U.S. nuclear technology to the
Middle Eastern country.</p>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- OPINION -->
<div class="col-12 col-lg order-2 order-md-2">
<section>
<h5 class="h6 make-uppercase font-weight-bold">Opinion</h5>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex align-items-center">
<img
src="https://d.newsweek.com/en/full/1514705/james-smith.png?w=63&h=63&f=65a4f7c85a650f54455d1dab98c2a21f"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
Of Course Trump Is Racist—Too Bad Wall Street Doesn't Care
</a></h4>
<p class="card-text card-text-custom-bold">BY ROBERT REICH</p>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1514677/sharon-kahn.png?w=63&h=63&f=dc11452463b5f2d481af3636b648ca3c"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
ICE Is After My Activist Husband. But We Won't Live in Fear | Opinion</a></h4>
<p class="card-text card-text-custom-bold">BY AMY GOTTLIEB</p>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1514737/karen-friedman.png?w=63&h=63&f=75bec0e8b0c5e9d5eca1597ed7051d09"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
If Trump Won't Stand Up to the Saudi Crown Prince, Congress Must</a></h4>
<p class="card-text card-text-custom-bold">BY ANDREA J. PRASOW</p>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex align-items-center">
<img
src="https://d.newsweek.com/en/full/83499/newt-gingrich.png?w=63&h=63&l=48&t=55&f=d8b4f8dfaad8a5f0f71bffcc6c0d6a77"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
Trump's Plan to Develop the Moon and Mars Will Change Humanity's Future
</a></h4>
<p class="card-text card-text-custom-bold">BY SETH ABRAMSON</p>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/109962/seth-abramson.png?w=63&h=63&f=8fd3c628b9cf33a25661461bc671603e"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
The Mueller Report's Biggest Open Secret</a></h4>
<p class="card-text card-text-custom-bold">BY NEWT GINGRICH</p>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 mb-3 pb-3">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1514470/yuval-harari.png?w=63&h=63&f=2c7989b637f51589b071f04cd212f1ba"
class="card-img card-img-custom" alt="More stories">
<div class="card-body p-0 ml-2">
<h4 class="card-title mb-1"><a class="card-link-custom" href="#">
Trump and Johnson Are Liked Precisely Because They Get Away With Anything</a></h4>
<p class="card-text card-text-custom-bold">BY JAMES A. SMITH</p>
</div>
</div>
</div>
</section>
<section>
<h5 class="h6 make-uppercase font-weight-bold mb-3">Latest News</h5>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1514135/who-kimba-white-lion.png?w=397&h=265&f=a2c3e889a25ddaa53995c79591c771f7"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Who is 'Kimba the White Lion'?</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1514055/us-cuba-embassy.jpg?w=397&h=265&f=1fd2b67527bab662d509dbf6051f791e"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Cuba Audio Attack: Exposed Staff Had
Brain Matter Alterations, Study Finds</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1513497/wildlife-nature-roe-deer-stock-getty.jpg?w=397&h=265&f=4831d26894a8d64f1dc332a7b805d032"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Climate Change Puts Deer, Sparrows at
'Substantial Extinction Risk'</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1513852/cannabis-weed-marijuana-joint-drugs-stock-getty.jpg?w=397&h=265&f=5f7549f601b35cc23ff40ae7625a1710"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Using Cannabis During Pregnancy Linked
to FASD-like Symptoms</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1514137/okjokull-glacier.gif?w=397&h=265&f=daea9d2051de56ffa4899a2c2c4012c7"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Iceland to Hold a Memorial for Its First
Glacier Lost to Climate Change</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1514111/former-ohio-judge-tracie-hunter.jpg?w=397&h=265&f=aa3b55ec1ff8b3f46ddc05b9ae997724"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Ohio Cops Grab Former Judge in
Courtroom, Drag Her to Jail</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1514113/yuval-harari-donald-trump-vladimir-putin-russia.jpg?w=397&h=265&f=9126e4f0ca24f4bb512b95fcc042ce96"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Author Harari Removes Putin Criticism
From Russian Translation of New Book</a></h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 border-bottom-0 rounded-0 pb-2 mb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm-6 col-md-3 col-lg-5 pr-3 pr-lg-2">
<img
src="https://d.newsweek.com/en/full/1513852/cannabis-weed-marijuana-joint-drugs-stock-getty.jpg?w=397&h=265&f=5f7549f601b35cc23ff40ae7625a1710"
class="card-img rounded-0" alt="More stories">
</div>
<div class="col-5 col-sm-6 col-md-9 col-lg-7">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Using Cannabis During Pregnancy Linked
to FASD-like Symptoms</a></h4>
</div>
</div>
</div>
</div>
</section>
<!-- NEWS LETTER -->
<div class="row justify-content-center">
<div class="card bg-light py-3 my-2 px-3">
<div class="card-body">
<h4 class="card-title d-flex align-items-center">
<span class="nw-icon"></span><a class="card-link-custom" href="#">
SIGN UP FOR OUR NEWSLETTER
</a>
</h4>
<a href="#" class="btn btn-secondary rounded-0 make-uppercase h4 text-white">SIGN UP ></a>
<p class="card-text"><a class="text-dark font-weight-bold" href="#">Update your preferences »</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- MAGAZINE SECTION -->
<!-- Features magazine -->
<section class="px-lg-3">
<div class="row">
<div class="col-12 col-md-3 card border-0 rounded-0 my-2">
<a href="#"><img
src="https://d.newsweek.com/en/full/1512696/july-26-2019-cover.jpg?w=290&h=387&q=90&f=9544b69a2b1f0d5f0d8daaa50bcf6d3d"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">COVER</span><a
href="#">Health</a>
</h4>
<h3 class="card-title mb-2 text-center"><a class="h5 font-weight-bold" href="#">SEE
ALL FEATURES ></a>
</h3>
</div>
</div>
<div class="col-12 col-md-9">
<div class="container-header pt-3">
<span class="nw-icon"></span>
<h2 class="h5 text-center font-weight-bold">IN THE MAGAZINE</h2>
</div>
<hr>
<div class="row">
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://www.researchgate.net/profile/Matheus_Oliveira/publication/284281387/figure/fig3/AS:320434424827906@1453408928993/Pre-and-post-operative-images-of-a-typical-normal-pressure-hydrocephalus-patient-of-group_Q320.jpg"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">COVER</span><a
href="#">Health</a>
</h4>
<h3 class="card-title mb-2"><a href="#">Precision Medicine Is Crushing Once-Untreatable Cancers</a>
</h3>
</div>
</div>
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://www.asiamediacentre.org.nz/assets/_resampled/ScaleWidthWzI4OV0/066a5b10e2fbe31db137353516d1ddfceb19af01.jpg"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">FEATURES</span><a
href="#">Health</a>
</h4>
<h3 class="card-title mb-2"><a href="#">Precision Medicine Costs a Fortune but Could Save Money</a>
</h3>
</div>
</div>
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://static.wixstatic.com/media/f5fa78_ab890a0e8cb44ba1bcceac42d43c4a1d~mv2_d_3000_3000_s_4_2.jpg/v1/fill/w_289,h_289,al_c,q_80,usm_0.66_1.00_0.01/f5fa78_ab890a0e8cb44ba1bcceac42d43c4a1d~mv2_d_3000_3000_s_4_2.webp"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">COVER</span><a
href="#">Health</a>
</h4>
<h3 class="card-title mb-2"><a href="#">How to Survive a Walking Safari in Africa</a></h3>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://static1.squarespace.com/static/58718af89de4bbf0b386d28d/t/5963cc01b6ac5065efd2ee00/1499712545194/news-web-photo2.jpg"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">DOWNLOADS</span><a
href="#">CULTURE</a>
</h4>
<h3 class="card-title mb-2"><a href="#">How Harvard Caved to Students and Fired Its First Black Faculty
Dean</a>
</h3>
</div>
</div>
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img src="https://www.wrfi.org/wp-content/uploads/2019/07/17445556352_a584fdb668.jpg"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">DOWNTIME</span><a
href="#">CULTURE</a>
</h4>
<h3 class="card-title mb-2"><a href="#">Highlights (and Lowlights) of Woodstock at 50</a></h3>
</div>
</div>
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcReJGJIn3FLeV20URtZAPMIyXfrGz9mU3JIP46mBKVpwX0LkYDYfA"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">DOWNTIME</span><a
href="#">CULTURE</a>
</h4>
<h3 class="card-title mb-2"><a href="#">This is Not
a Fad No Peace BIG SHOTS NO PEACE
</a></h3>
</div>
</div>
<div class="col-12 col-md card border-0 rounded-0 my-2">
<a href="#"><img
src="https://www.pjstar.com/storyimage/IP/20190430/NEWS/190439986/AR/0/AR-190439986.jpg?MaxW=600"
class="card-img-top rounded-0" alt="News week momentum"></a>
<div class="card-body p-0 my-2">
<h4 class="header-custom h6 font-weight-bold mt-1"><span class="py-1 px-2 mr-2">COVER</span><a
href="#">Health</a>
</h4>
<h3 class="card-title mb-2"><a href="#">How to Survive a Walking Safari in Africa</a></h3>
</div>
</div>
</div>
</section>
<!-- EDITORS SECTION -->
<section class="px-lg-3">
<div class="container-header pt-3">
<span class="nw-icon"></span>
<h2 class="h5 text-center font-weight-bold">EDITOR'S PICK</h2>
</div>
<hr>
<div class="row">
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1512958/boris-johnson-new-york-city-us-citizen.jpg?w=767&h=512&f=61c45beb8ba2afb72253f2a95fa5696b"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">WORLD</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Britain's New Prime Minister Was a U.S. Citizen for Half a
Century</a></h3>
<p class="text-muted">Boris Johnson, the Conservative Party leader and new U.K. prime minister,
renounced his American citizenship after a dispute with the IRS.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514114/barack-obama-joe-biden-2020-endorsement.jpg?w=767&h=512&f=723699ffc95218486b576df95f30b804"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">U.S</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Biden on Obama's Silence in 2020 Race: 'I Want to Win This Fair
and Square'</a></h3>
<p class="text-muted">"I would rather him not get engaged," former Vice President Joe Biden told The New
York Times.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514055/us-cuba-embassy.jpg?w=767&h=512&f=ad326a2e75547a00d5f3e3b0c7ff766e"
class=" card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">HEALTH</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Alleged Cuba Audio Attack: Exposed U.S. Staff Had Brain Matter
Alterations, Study Finds</a></h3>
<p class="text-muted">"These findings may represent something not seen before," one of the study's authors
said in a statement.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1513874/special-counsel-robert-mueller-russia-press-conference.jpg?w=767&h=512&f=71830276cb6f01a71c0912e30f2f2e08"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">U.S</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">'I Can't Emote': Archives Hint at Robert Mueller's Testimony This
Week</a></h3>
<p class="text-muted">Robert Mueller will testify in back-to-back hearings on Wednesday about his two-year
investigation into Russian interference in the 2016 election.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/338271/06-05-green-09.jpg?w=767&h=512&f=793ec33de309e5a20d341f80fe93b1e8"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">BUSINESS</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Nearly Half of Fortune 500 Companies Founded by Immigrant
Families: Study</a></h3>
<p class="text-muted">A recent American economy study found that immigrants and the children of immigrants
founded 45 percent of U.S. Fortune 500 companies, amassing $6.1 trillion in annual revenue last year.
</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1513995/alexandria-ocasio-cortez.jpg?w=767&h=512&f=aff512e49ea6fd0b89066d8bbfcc2f3b"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">POLITICS</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Police Officer Fired After Suggesting Ocasio-Cortez Should Be Shot
</a></h3>
<p class="text-muted">The Gretna Police Department on Monday announced that Charlie Rispoli and another
officer, Angelo Varisco, who "liked" Rispoli's post, have both been fired.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514020/donald-trump.jpg?w=767&h=512&f=b5b934dc1a9c3714d7dd8458f1ea8c7b"
class=" card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">POLITICS</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Nearly Three-Quarters of White Evangelicals Approve of Donald
Trump</a></h3>
<p class="text-muted">The latest NPR/PBS NewsHour/Marist poll found that 73 percent of white evangelical
Christians approve of the job Trump is doing as president, while only 23 percent disapprove.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1513452/9mm-pistol-fun-firearm-muzzle-stock.jpg?w=767&h=512&f=557619c7a6f067cf3aa92caae81ac833"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text">TECH & SCIENCE</span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">States With More Gun Owners Have More Murders in the Home
</a></h3>
<p class="text-muted">More needs to be done to protect those at risk of domestic violence, a co-author of
the study told Newsweek.</p>
</div>
</div>
</div>
</section>
<!-- FEATURED SLIDESHOWS -->
<section class="px-lg-3">
<div class="container-header pt-3">
<span class="nw-icon"></span>
<h2 class="h5 text-center font-weight-bold">FEATURED SLIDESHOWS</h2>
</div>
<hr>
<div class="row">
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514149/pierre-cardin.jpg?w=767&h=512&f=ed163fb3b3cd8f0950f44641678c935d"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Avant Garde King Pierre Cardin Takes Brooklyn by Storm</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1511473/oscar-11.jpg?w=767&h=512&f=6ae891ac8c25390ea775acf83608e8c6"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">The Revamped Oscar de la Renta Is All the Rage</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1509498/lions-safari.jpg?w=767&h=512&l=0&t=0&f=55ee6bce8e8106701cf65268463dcab7"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">How to Survive a Walking Safari in Africa</a></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1508579/papua-new-guinea-diving-5.jpg?w=767&h=512&f=048c5c7e40f6e51f2f47cd309dba9494"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Under the Sea: A Diving Bucket List</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1506562/us-space-rocket-center.jpg?w=767&h=512&f=e1069d896130ae127101a42fa77ab51c"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">One Giant Leap: 5 U.S. Destinations That Helped Put Man on the
Moon</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1506127/screaming-queens-before-stonewall-comptons-cafeteria-riot.jpg?w=767&h=512&f=763c577329617a790e59aa3c5f430f25"
class="card-img-top rounded-0" alt="News week momentum">
<span class="overlay-text--icon"></span></a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">10 Queer Rebellions Before Stonewall</a></h3>
</div>
</div>
</div>
<hr>
</section>
<!-- SECTION US -->
<section class="px-lg-3">
<h2 class="section-header pt-3 h5 text-left font-weight-bold"><a href="#">U.S</a></h2>
<div class="row">
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514257/bernie-sanders.jpg?w=767&h=512&f=ed6af8fef8df9ff20c748135ea7e20b4"
class="card-img-top rounded-0" alt="News week momentum">
</a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Bernie Sanders Says Campaign Staff Now All Making More Than $15
Per Hour</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514250/trump-turning-point-usa-speech.jpg?w=767&h=512&f=b734085235a190b1eab7a9f4f91ef5dc"
class="card-img-top rounded-0" alt="News week momentum">
</a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Trump, Turning Point USA Teens Imagine '100 Percent' Approval
Rating Polls</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<div class="card border-left-0 border-right-0 border-top-0 border-bottom-1 rounded-0 pb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm col-lg-4">
<a href="#"><img
src="https://d.newsweek.com/en/full/1514201/fbi-director-wray-hearing-domestic-terrorism.jpg?w=300&h=200&f=e24e7e6365c3da6c25f62602a32bcf71"
class="card-img rounded-0 pr-3 pr-sm-0" alt="More stories"></a>
</div>
<div class="col col-sm-8 col-lg-8 pl-sm-3">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">FBI Director: Majority of Domestic
Terrorism Motivated by White Supremacy</a>
</h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 border-bottom-1 rounded-0 pb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm col-lg-4">
<a href="#"><img
src="https://d.newsweek.com/en/full/1514147/ivanka-trump-united-kingston-tweet.jpg?w=300&h=200&f=f3c9b8c2bdd7c18c8d81c73067e1c913"
class="card-img rounded-0 pr-3 pr-sm-0" alt="More stories"></a>
</div>
<div class="col col-sm-8 col-lg-8 pl-sm-3">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Ivanka Trump Tweets 'United Kingston'
After Donald's 'Prince of Whales'</a>
</h4>
</div>
</div>
</div>
</div>
<div class="card border-left-0 border-right-0 border-top-0 border-bottom-0 rounded-0 pb-2 mb-2">
<div class="row no-gutters">
<div class="col-7 col-sm col-lg-4">
<a href="#"><img
src="https://d.newsweek.com/en/full/1514161/mark-walker-budget-deal-joker.jpg?w=300&h=200&f=3c1bd0b0fc865f146346a6e69c08f99c"
class="card-img rounded-0 pr-3 pr-sm-0" alt="More stories"></a>
</div>
<div class="col col-sm-8 col-lg-8 pl-sm-3">
<div class="card-body p-0">
<h4 class="card-title"><a class="card-link-custom" href="#">Republican Compares Trump Budget Deal to
Batman's Joker Burning Money</a>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
</section>
<!-- SECTION WORLD -->
<section class="px-lg-3">
<h2 class="section-header pt-3 h5 text-left font-weight-bold"><a href="#">World</a></h2>
<div class="row">
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1514253/russia-air-force-a50-plane.jpg?w=767&h=512&f=13a9fa535e72f43c153e36055636505f"
class="card-img-top rounded-0" alt="News week momentum">
</a>
<div class="card-body p-0 my-2">
<h3 class="card-title mb-2"><a href="#">Russia May Be Testing U.S. Military's World Order with Air Fight
Over Asia</a></h3>
</div>
</div>
<div class="col-12 col-md-4 card border-0 rounded-0 my-2">
<a class="overlay-relative" href="#"><img
src="https://d.newsweek.com/en/full/1513558/fe-hacking-11-1158724169.jpg?w=767&h=512&f=ef02948c0c8a2a68a6a2827094041e5b"