@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400&display=swap');

@font-face {
  font-family: 'PlayFair-Regular';
  src: url('./fonts/playfairdisplay-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('./fonts/robotocondensed-bold-webfont.woff2') format('woff2'); 
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('./fonts/robotocondensed-regular-webfont.woff2') format('woff2');
}

@font-face {
  font-family: 'Genericons';
  src: url('./fonts/Genericons.woff') format('woff');
}


:root{
  --color-red: #f72210;
  --color-black: #000;
  --color-grey-light: rgba(3,3,3,.4);
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #555;
}

* {
  padding: 0 ;
  margin: 0 ;
  box-sizing: border-box ; 
}

html {
  font-size: 62.5% ;
}

body{
  font-weight: normal;
  font-size: 1.6rem;
  color: #444;
  line-height: 1.6;
  font-family: Roboto-Regular;
  background-color: rgb(244,245,246);
}

ul {
  list-style-type: none;
}

a{
  text-decoration: none;
  color: inherit;
}

.wrapper {
  max-width: 131rem;
  margin: 0 auto;
  background-color: white;
}

.container-fluid {
  background-color: white;
}


.header-banner{
  background-color: var(--color-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 2.4rem 0 1.5rem;
}

.header-banner .newsweek-logo{
  width: 39rem;
  fill: white;
  position: relative;
  left: 30px;
}

.header-banner .newspaper-date{
  font-family: Roboto-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  margin-left: 3rem;
  color: rgba(255, 255, 255, .9);
}

.left {
  align-self: flex-end;
}

.header-banner .right{
  display: flex;
  align-items: center;
  align-self: flex-end;
}

.header-banner .right-chevron {
  width: 2.3rem;
  padding-left: 1.5rem;
  fill: var(--color-red);
}

.header-banner .signin a {
  margin-right: 1.3rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: white;
}

.header-banner .signin a:hover {
  text-decoration: none;
}

.header-banner .subscribe{
  display: flex;
  align-items: center;
  background-color: white;
  color: var(--color-red);
  outline: none;
  border: none;
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: Roboto-Bold;
  margin-right: 1rem;
  line-height: 1.5;
}

.header-links {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 2px solid rgba(238,238,238, .7);
}

.header-links li {
  border-right: 1px solid #d8d8d8;
  text-align: center;
  line-height: 1.2;
  padding: 0 2.4%;
}

.header-links li:last-of-type {
  border-right: none;
}

.header-links li a{
  display: inline-block;
  width: 100%;
  color: var(--color-black);
  font-family: Roboto-Bold;
  font-size: 2rem;
  transition: all .1s;
}

.header-links li a:hover {
  color: var(--color-red);
  text-decoration: none;
}


.header-links .search-bar, .header-links .search-bar::placeholder{
  order: 1;
  width: 6rem;
  font-size: 1.6rem;
  color: rgba(0,0,0,.55);
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .2px;

}

.search-bar:focus ~ li{
  display: none;
}

.search-bar:focus{
  width: 90%;
  outline: none;
  font-size: 1.7rem;
  font-family: Arial;
  color: rgba(0,0,0,.45);
  padding: 0 2rem;
  height: 30px;
}

.search-bar:focus::placeholder {
  font-size: 0;
}

.header-links .search-icon {
  background-image: url(https://g.newsweek.com/www/images/icon-search-glass.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  margin: 0;
  order: 1;
}


.header-links::before{
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
  width: 7.8rem;
  background-color: var(--color-red);
  border-left: 12px solid white;
  border-top: 12px solid red;
  right: 0;
}

.second-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-red);
  padding: 1.2rem 1.5rem;
  padding-right: 2.1rem;
}

.second-nav .logo-box{
  line-height: 1;
}

.second-nav .second-nav-logo{
  fill: white;
  width: 13.5rem;
}

.burger-menu-icon{
  width: 3rem;
  height: .4rem;
  background-color: #fb9a94;
  position: relative;
}

.burger-menu-icon::after, .burger-menu-icon::before{
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
}

.burger-menu-icon::after{
  top: .8rem;
}

.burger-menu-icon::before{
  bottom: .8rem;
}


.section-heading {
  color: var(--color-grey-light);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: 'Roboto-Bold';
  padding-bottom: .6rem;
}

.col-1{
  padding: 1rem 2rem;
  padding-right: 0
}

.business-tools-promo {
  display: inline-block;
  width: 100%;
}

.business-tools-promo img {
  width: 100%;
}

.col-1 h2, .col-2 h2 {
  color: var(--color-black);
  line-height: 1;
  font-family: Roboto-Bold;
  font-size: 2.4rem;
  transition: all .1s;
}

.col-1 p, .col-2 p  {
  color: var(--color-grey-dark-2);
  font-family: Arial;
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 1.1rem 0;
}


.col-1 section, .col-2 section{
  position: relative;
  margin-bottom: 1rem;
}

.col-1 section a, .col-2 section a {
  display: block;
}

.col-1 section a:hover, .col-2 section a:hover{
  text-decoration: none;
}

.col-1 section a:last-child, .col-2 section a:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255,255,255, .9);
  text-transform: uppercase;
  color: var(--color-red);
  padding: .4rem 1.5rem;
  font-family: Roboto-Bold;
  font-size: 1.8rem;
}

.col-1 section img, .col-2 section img {
  width: 100%;
}

.col-1 h2 a:hover, .col-2 h2 a:hover {
  color: var(--color-black);
  text-decoration: underline var(--color-red);
}

.col-1 h3, .col-2 h3 {
  color: var(--color-black);
  padding: 1.1rem 0;
  border-bottom: 1px solid #ddd;
  font-family: Roboto-Bold;
  margin: 0;
  transition: all .1s;
}

.col-2 h3:last-of-type{
  border: none;
} 

.col-2 h3:first-of-type {
  border-top: 1px solid #ddd;
}

.col-1 h3:last-of-type{
  margin-bottom: 2rem;
}

.col-1 h3 a:hover, .col-2 h3 a:hover {
  color: var(--color-red);
  text-decoration: none;
}

.col-1 .top-world-story-text{
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.7rem;
  margin: 0;
}

.col-3 .author-card {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}


.col-3 .author-card:last-of-type {
  border-bottom: none;

}

.col-3 .avatar-box{
  margin-right: 1.5rem;
}

.col-3 .avatar-box img{
  cursor: pointer;
}

.col-3 .opinion-title {
  line-height: 1.3;
}

.col-3 .opinion-title a{
  font-size: 1.7rem;
  color: black;
  font-family: Roboto-Bold;
  transition: all .1s;
}

.col-3 .opinion-title a:hover{
  color: var(--color-red);
  text-decoration: none;
}

.col-3 .opinion-byline{
  color: var(--color-grey-dark-2);
  font-family: Roboto-Bold;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-top: .2rem;
}

.col-3 .latest-news-card, .section-top-news {
  display: flex;
}

.col-3 .latest-news-card .news-img-box{
  flex-basis: 13.5rem;
  margin-right: 1.5rem;
}

.col-3 .latest-news-card .news-title{
  flex: 10;
}


.col-3 .news-img-box a {
  display: block;
  width: 100%;
}

.col-3 .news-img {
  width: 100%;
}

.col-3 .news-title a{
  font-size: 1.7rem;
  color: black;
  font-family: Roboto-Bold;
  transition: all .1s;
}

.col-3 .news-title a:hover{
  color: var(--color-red);
  text-decoration: none;
}

.col-3 .news-title { 
  line-height: 1.2;
}

.col-3 .latest-news-card {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}


.col-3 .latest-news-card:last-of-type {
  border-bottom: none;
}

.col-3 .latest-news-heading {
  padding: 0;
  margin: 0;
  margin-top: 2.7rem;
}
.col-3 {
  padding: 1rem 2rem;
}

.col-3 .newsletter {
  background-color: #f4f5f6;
  border: 1px solid #e5e5e5;
  padding: 2rem;
  width: 30rem;
  margin: 0 auto;
  margin-top: 3rem;
}

.col-3 .newsletter-banner {
  display: flex;
  align-items: center;
}

.col-3 .newsletter button {
  background-color: #666;
  color: white;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  border: none;
  font-family: Roboto-Regular;
  margin: 1rem 0;
}

.col-3 .newsletter button:hover {
  background-color: #999;
}

.col-3 .newsletter button svg{
  width: .7rem;
  fill: white;
  margin-left: 1rem;
}

.col-3 .update-preferences a, .col-3 .update-preferences a:hover{
  text-decoration: none;
  color: var(--color-grey-dark-1);
  font-size: 1.5rem;
  font-family: Roboto-Bold;
}

.col-3 .newsletter .title, .in-magazine .title  {
  color: var(--color-grey-dark-1);
  text-transform: uppercase;
  font-size: 1.9rem;
  font-family: Roboto-Bold;
  width: 15.4rem;
  margin: 0;
}

.col-3 .newsletter .logo, .in-magazine .logo {
  width: 3rem;
  background-color: var(--color-red);
  margin-right: 1rem;
}


.col-2 .section-heading{
  border-bottom: 1px solid #ddd;
  margin-top: 1.4rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.col-2 .story-card {
  align-items: flex-start;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
}

.col-2 .story-card:last-of-type{
  border: none;
}

.col-2 .story-title {
  line-height: 1.3;
}

.col-2 .story-title a{
  color: var(--color-black);
  line-height: 1;
  font-family: Roboto-Bold;
  font-size: 1.7rem;
  transition: all .1s;
}


.col-2 .story-title a:hover{
  color: var(--color-black);
  text-decoration: underline var(--color-red);
}

.col-2 .story-text {
  font-size: 1.5rem;
  padding-top: 1rem;
  font-family: Arial;
  line-height: 1.4;
}

.col-2 .story-card .img-box {
  margin-right: 1.3rem;
}


.in-magazine {
  margin-top: 1rem;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  padding-left: 32%;
}

.in-magazine-row{
  padding-left: 4.6rem;
  padding-right: 3rem;
}

.col-1, .col-2, .col-3 {
  padding-top: 1rem;
}

.col-1 {
  padding-left: 3rem;
}

.col-3 {
  padding-right: 3rem;
  padding-left: 0;
}

.col-2 {
  padding: 1rem 3.3rem 0;
}

.news-headlines {
  margin-bottom: .9rem;
}

/* ARTICLE CARD */

.article-card a {
  display: block;
  width: 100%;
}

.article-card .article-card-img {
  width: 100%;
  height: 21vw;
  object-fit: cover;
}

.article-card  .article-card-sections {
  display: flex;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-top: 1rem; 
  font-weight: bold;
  letter-spacing: .3px;
  /* font-family: Roboto-Bold; */
}

.article-card .selected-section{
  
  background-color: var(--color-red);
  margin-right: .8rem;
  color: white;
  padding: 0 .7rem;
  font-family: Roboto-Regular;
}

.article-card .unselected-section {
  color: var(--color-red);
  cursor: pointer;
  font-family: Roboto-Bold;

}


.article-card.article-card-1 {
  position: relative;
  top: -2.2vw;
}

.article-card.article-card-1 a{
  position: relative;
}

.article-card.article-card-1 .article-card-img{
  height: 100%;
}

.article-cards, .article-cards-row-2{
  padding: 0 3rem;
}

.article-cards-row-2{
  margin-top: -1rem;
}

.article-card-1, .article-card-5{
  padding-left: 0;
}

.article-card-4, .article-card-8{
  padding-right: 0;
}

.article-card.article-card-1 .article-card-title a{
  font-size: 1.8rem ;
  background-color: #f4f5f6;
  padding: 1.1rem;
  margin-top: 0;
  text-align: center;
}

.article-card.article-card-1 .article-card-title a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card.article-card-1 .text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background-color: rgba(255,255,255, 0.9);
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-red);
  cursor: pointer;
  font-weight: bold;
  font-family: Roboto-Bold;
  font-size: 1.6rem;
}

.article-card.article-card-1 .article-card-title a:hover {
  background-color: #dbdcdd;
  text-decoration: none;
} 

.article-card.article-card-1 .right-chevron {
  width: .8rem;
  margin-left: .8rem;
  position: relative;
  top: .1rem;
}

.article-cards {
  /* border-top: 1px solid #ccc; */
  padding-top: 1.6rem;
}



.article-card .article-card-title a{
  color: var(--color-black);
  font-weight: bold;
  font-family: Roboto-Bold;
  font-size: 2rem;
  line-height: 1.1;
  margin: 1rem 0;
}

.article-card .article-card-title a:hover {
  text-decoration: underline var(--color-red);
}

.article-card.article-card-8 a{
  position: relative;
}

.article-card.article-card-8 .img-caption{
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-red);
  color: white;
  padding: 0 .7rem;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
}

.editors-pick{
  padding-bottom: 1rem;
}

.editors-pick-heading-row{
  padding: 0 3rem;
}

.editors-pick-heading {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.editors-pick-heading .logo{
  width: 3rem;
  background-color: var(--color-red);
  margin-right: 1rem;
}

.editors-pick-heading .title{
  color: var(--color-grey-dark-1);
  text-transform: uppercase;
  font-size: 1.9rem;
  font-family: Roboto-Bold;
  margin: 0;
}

.editors-pick section{
  position: relative;
  margin-bottom: 1rem;
}

.editors-pick section a {
  display: block;
}

.editors-pick section img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
}

.editors-pick section a:last-child{
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255,255,255, .9);
  text-transform: uppercase;
  color: var(--color-red);
  padding: .4rem 1.5rem;
  font-family: Roboto-Bold;
  font-size: 1.7rem;
}

.editors-pick section a:last-child:hover{
  text-decoration: none;
}

.row.editors-pick-section{
  margin-top: 1.6rem;
  padding: 0 1.5rem;
}

.editors-pick-title{
  line-height: 1.1;
}

.editors-pick-title a {
  color: var(--color-black);
    font-weight: bold;
    font-family: Roboto-Bold;
    font-size: 2.4rem;
    margin: 1rem 0;
    letter-spacing: .1px;
}

.editors-pick-title a:hover{
  text-decoration: underline var(--color-red);
} 

.editors-pick p {
  font-size: 1.5rem;
  padding-top: 1rem;
  font-family: Arial;
  line-height: 1.4;
}


.slideshows-heading {
  padding-bottom: 1.2rem;
}

.slideshows-heading .logo {
  position: relative;
}

.slideshows-heading .logo::after {
  border-bottom: 3px solid red;
  border-right: 3px solid red;
  display: block;
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0.3rem;
  left: 0.4rem;
}

.slideshow a:first-of-type{
  display: block;
  position: relative;
}

.slideshow img{
  width: 100%;
}


.slideshow .slideshow-no{
  position: absolute;
  bottom: 0;
  background-image: url(https://g.newsweek.com/themes/newsweek/images/icon-slideshows-nw.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 7rem;
  height: 5.2rem;
  font-size: 2rem;
  color: var(--color-red);
  font-family: Roboto-Bold;
  text-align: center;
  text-indent: 1rem;
  line-height: 6.4rem;
}

.row.slideshows-section, .row.slideshows-row {
  background-color: white;
}

.row.slideshows-row{
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: 1.5rem;
}

.row.slideshows-section{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.slideshow {
  padding-bottom: 3.5rem;
}

.slideshow h5 {
  margin-top: 2rem;
}

.slideshow h5 a, .section-top-news h5 a{
  color: var(--color-black);
  font-weight: bold;
  font-family: Roboto-Bold;
  font-size: 2.2rem;
  line-height: 1;
  margin: 1rem 0;
}

.slideshow h5 a:hover, .section-top-news h5 a:hover{
  text-decoration: underline var(--color-red);
}

.row.section-top-news {
  padding: 0 1.5rem;
}

.row.section-top-news.us{
  padding-bottom: 3rem;
}

.section-top-news .section-title{
  width: 100%;
}

.section-top-news .section-title {
  padding: 1.7rem 0 .5rem;
  margin: 0 1.5rem;
  border-top: 1px solid #ddd;
}

.section-top-news .section-title a{
  color: var(--color-red);
  font-size: 2.2rem;
  font-family: Roboto-Bold;
}

.section-top-news .section-title a:hover {
  text-decoration: none;
}

.section-top-news .latest-news-card{
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.section-top-news .latest-news-card:last-of-type{
  border: none;
}

.section-top-news .latest-news-card:first-of-type{
  padding-top: 0;
}

.section-top-news .latest-news-card .news-title {
  line-height: 1.3;
  margin-left: 1.5rem;
}

.section-top-news .latest-news-card .news-title a{
  color: var(--color-black);
  font-size: 1.7rem;
  font-family: Roboto-Bold;
}

.section-top-news .latest-news-card .news-title a:hover{
  color: var(--color-red);
  text-decoration: none;
}

.section-top-news .tile-img {
  display: block;
}

.section-top-news .tile-img img{
  width: 100%;
  object-fit: cover;
}

.section-top-news h5{
  margin-top: 1rem;
}

.subscribe-heading-text, .newletter-heading-text{
  color: var(--color-red);
  font-family: Roboto-Bold;
  font-size: 1.6rem;
  margin-bottom: .6rem;
}


.subscribe-box{
  background-color: rgb(244,245,246);
  display: flex; 
  align-items: center;
  padding: 3rem 3rem 4.5rem;
}

.img-box {
  margin-right: 3rem;
}

.subscribe-btn, .newsletter-btn {
  background-color: var(--color-red);
    color: white;
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: .2px;
    border: none;
    padding: 0.5rem 1.3rem;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.subscribe-btn:hover, .newsletter-btn:hover{
  background-color: #de1f0e;
}

.subscribe-btn:focus, .newsletter-btn:focus{
  outline: none;
}

.subscribe-btn .right-chevron, .newsletter-btn .right-chevron {
  width: 1.8rem;
  padding-left: 1rem;
  fill: white;
}

.subscribe-text {
  padding-left: 9.2rem;
}

.subscribe-text h5, .newsletter-text h5{
  color: #111;
  font-size: 2.3rem;
  font-family: Roboto-Bold;
  margin: 0;
}

.subscribe-text p, .newsletter-text p {
  color: #777;
  font-family: Lato;
  font-weight: 300;
  font-size: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

.subscribe-box .img-box {
  position: relative;
}

.row.subscribe {
  padding: 3.4rem 1.5rem 4rem;
  border-top: 2px solid #f1f1f1;
}

.subscribe-box .img-box .img-2{
  position: absolute;
  top: 6%;
  left: 48%;
} 

.newsletter-box{
  border: 1px solid rgb(236, 233, 233);
  display: flex;
  height: 90.4%;
}

.newsletter-text{
  padding: 3.4rem 3rem 0;
}

.newsletter-box .img {
  height: 100%;
  width: 81.6rem;
  background: url("https://g.newsweek.com/themes/newsweek/images/subscribe-img2.gif") center center / cover no-repeat;
}

.row.standalone-border{
  border-bottom: 1px solid #f1f1f1;
  margin: 0 1.5rem;
}

.copyright-social {
  display: flex;
  justify-content: space-between;
  padding: 3.3rem 4.1rem 1.1rem;
}

.copyright-social .newsweek-logo{
  display: flex;
}

.copyright{
  align-self: flex-end;
  margin: 0;
  font-family: Arial;
  color: #888;
  font-size: 1.2rem;
  margin-left: 1rem;
  line-height: 1;
}

.newsweek-logo a svg{
  width: 24rem;
  height: 3.5rem;
  fill: var(--color-red);
}

.social-icons{
  display: flex;
  align-items: center;
  align-self: flex-end;
  line-height: 1;
  margin-right: -6px;
}

.social-icons a{
  margin-right: 1.2rem;
  color: #666;
  transition: all .1s;
}

.fab{
  display: inline-block;
}

.fa-facebook-square{
  font-size: 2.6rem;
}

.fa-facebook-square:hover{
  color: #3b5998;
}

.fa-twitter{
  font-size: 2.3rem;
}

.fa-twitter:hover{
  color: #1da1f2;
}

.fa-instagram{
  font-size: 2.3rem;
}

.fa-instagram:hover{
  color: #405de6;
}

.fa-tumblr{
  font-size: 1.9rem;
}

.fa-tumblr:hover{
  color: #35465c;
}

.fa-linkedin-in{
  font-size: 2.3rem;
}

.fa-linkedin-in:hover{
  color: #0077b5;
}

footer{
  display: flex;
  justify-content: space-between;
  padding-bottom: 3.5rem;
}

footer ul {
  margin: 0;
}

footer .right-links {
  display: flex;
  margin-right: 7.5rem;
  margin-left: 12%;
  flex-basis: 34rem;
  align-items: baseline;
}


footer .left-links {
  padding-left: 4rem;
  flex-basis: 72rem;
}

footer li{
  display: inline-block;
  line-height: 1;
  padding: 0 .9rem 0 .8rem;
  border-right: 1px solid #d8d7d7;
  margin: .6rem 0;
}

footer a, footer .editions {
  display: inline-block;
  font-size: 1.4rem;
  font-family: Arial;
  color: #8e8d8d;
  transition: all .1s;
  font-weight: 400;
}

footer .editions{
  font-weight: bold;
  margin-right: .5rem;
  color: #777;
}


footer a:hover {
  color: black;
  text-decoration: none;
}

.footer-border{
  border-bottom: 1px solid #ddd;
  margin: 0 4.5rem 0.5rem;
}

.second-nav .right{
  display: flex;
  align-items: center;
}

.second-nav .signin a{
  margin-right: 1.3rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: white;
}

.second-nav .signin a:hover {
  text-decoration: none;
}

.second-nav .right .subscribe{
  display: flex;
  align-items: center;
  background-color: white;
  color: var(--color-red);
  outline: none;
  border: none;
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: Roboto-Bold;
  margin-right: 1rem;
  line-height: 1.5;
}

.second-nav .right .subscribe .right-chevron{
  width: 2.3rem;
  padding-left: 1.5rem;
  fill: var(--color-red);
}

.second-nav a:last-of-type {
  margin-left: 1.8rem;
}


@media screen and (max-width: 1080px){
  .article-card {
    padding-bottom: 2.5rem;
  }

}

@media screen and (max-width: 1000px){
  .col-3, .col-1 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .col-1 {
    padding-right: 1.4rem !important;
  }
  .col-2 {
    padding-right: 1.5rem;
    padding-left: 1.4rem;
  }

}

@media screen and (max-width: 992px){
  .article-card {
    padding-bottom: 2.5rem;
  }

  .in-magazine {
    padding-left: 52.7%
  }

  .col-3 .latest-news-card .news-img-box{
    flex: 0;
    flex-basis: 13.5rem;
  }

  .in-magazine-row{
    padding-left: 30%;
    padding-right: 1.5rem;
  }
  .row.article-cards, .article-cards-row-2{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .in-magazine-standalone{
    padding-left: 35.7%;
  }

  .editors-pick-heading-row{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .editors-pick-section{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .editors-pick section img {
    height: 30.8vw;
  }

  .row.slideshows-section{
    padding-left: 0;
    padding-right: 0;
  }
  
  .row.slideshows-row{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .row.section-top-news{
    padding: 0;
  }

  .row.subscribe {
    padding: 3.4rem 0 4rem;
  }

  .newsletter-box{
    height: 19.1rem;
  }

  .newsletter-box .img{
    width: 19.1rem;
  }

  .newsletter-text {
    padding-top: 2.1rem;
  }

  .row.newslestter-heading{
    padding-top: 4rem;
  }

  .row.border{
    margin: 0
  }

  .row.standalone-border{
    margin: 0 .2rem;
  }

  footer {
    flex-direction: column;
    padding-right: 3%;
  }

  footer .right-links, footer .left-links{
    flex-basis: auto;
  }

  footer .right-links, footer .left-links {
    margin: 0;
    
  }

  footer .left-links{
    padding-left: .8rem;
  }

  footer .right-links {
    padding-left: 1.6rem;
  }

  .footer-border{
    margin: 0 1.7rem 0.5rem;
  }

  .copyright-social{
    padding: 3.5rem 1.3rem 1.1rem;
  }
}

@media screen and (max-width: 768px){
  .col-3, .col-1, .col-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .col-3 .latest-news-card .news-img-box {
    flex: 0;
    flex-basis: 25.8rem;
  }

  .article-cards, .article-cards-row-2{
    padding: 0 1.5rem;
  }

  .article-card{
    padding-left: 0;
    padding-right: 0;
  }

  .article-cards, .article-cards-row-2 {
    background-color: white;
  }

  .article-cards-row-2{
    margin-top: 0;
  }

  .article-card .article-card-img{
    height: 62.5vw;
  }

  .article-card .article-card-title a{
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .article-card.article-card-1{
    padding-bottom: 0;
  }

  .in-magazine-standalone {
    display: none;
  }

  .newsletter {
    margin-bottom: .8rem !important;
  }

  .in-magazine-article-card {
    display: flex;
    border-bottom: none;
    justify-content: center;
    padding: 0;
    margin-top: 2.8rem;
  }

  .editors-pick-heading-row, .editors-pick-section {
    background-color: white;
  }

  .editors-pick-title a {
    font-size: 2rem;
  }

  .editors-pick p {
    font-size: 1.3rem;
  }

  .editors-pick section img {
    height: 62.8vw;
  }

  .slideshow h5 a{
    font-size: 1.8rem;
  }

 

  .section-top-news .section-title {
    width: 100%;
  }

  .section-top-news h5{
    margin-bottom: 2.2rem;
  }
  .section-top-news h5 a{
    font-size: 1.8rem;
  }

  .section-top-news .news-img{
    width: 25.8rem;
  }

  .subscribe-box {
    flex-direction: column;
    padding: 2.4rem 3rem;
  }

  .subscribe-text{
    text-align: center;
    padding-top: 3rem;
    padding-left: 0;
  }

  .subscribe-text h5 {
    font-size: 1.9rem;
  }

  .subscribe-text button{
    display: inline-block;
  }

  .subscribe-box .img-box{
    left: -4.1%;
  }

  .newsletter-box{
    flex-direction: column;
    height: auto;
    padding-bottom: 2rem;
  }

  .newsletter-box .img{
    width:  100%;
    height: 16rem;
  }

  .newsletter-text{
    text-align: center;
  }

  .newsletter-text h5{
    font-size: 1.9rem;
  }

  .newsletter-text button {
    display: inline-block
  }

  .copyright-social, .newsweek-logo{
    flex-direction: column;
  }

  .newsweek-logo p {
    margin: 1rem 0;
    margin-bottom: .8rem;
  }

  .copyright, .social-icons{
    align-self: flex-start;
  }

  .newsweek-logo a{
    text-indent: -5px;
  }

  .copyright-social{
    padding: 3.5rem 1.8rem 1.1rem;
  }

}


