.news-blocks {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.news-blocks.active .article-item {
  opacity: 0.7;
}
.news-blocks .article-item {
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  text-decoration: none;
}

.news-blocks .article-item .area-wrapper {
  margin: 0;
  width: 360px;
  padding: 0;
  display: block;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.news-blocks .article-item .area-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px;
}

.news-blocks .article-item .area-image .article-img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.news-blocks .article-item:nth-child(2) {
  margin: 0 60px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.news-blocks .article-item h4 {
  line-height: 1.5;
}
.news-blocks .article-item .news-summary-article-content {
  color: #818286;
  font-family: "Avenir", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .news-summary-content {
  padding: 0 30px 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .news-summary-content:active.hide {
  opacity: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .news-summary-content.hide {
  opacity: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .news-summary-content-news {
  padding: 0 0 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Avenir", Helvetica, sans-serif;
}
.news-blocks .article-item .news-summary-content-news:active.hide {
  opacity: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .news-summary-content-news.hide {
  opacity: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-blocks .article-item .date-overlay {
  display: inline-block;
  padding: 10px 18px;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background: #B10028;
}
.news-blocks .article-item .date-overlay-day {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  font-family: "Avenir", Helvetica, sans-serif;
}
.news-blocks .article-item .date-overlay-month {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: "Avenir", Helvetica, sans-serif;
}
.news-blocks .article-item:hover {
  opacity: 1;
}
.news-blocks .article-item:hover .area-image .article-img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

.btn {
  text-align: center;
  position: relative;
}

.btn a {
  display: inline-block;
  font-family: "Avenir", "Arial", Helvetica, sans-serif;
  text-transform: uppercase;
}

.news-dots-holder {
  display: none;
}

/********************************** MEDIA QUERIES **********************************/
@media screen and (max-width:1200px) { 
  .news-blocks .article-item:nth-child(2) {
    margin: 0 30px;
  }
}

@media screen and (max-width:1140px) { 
  .news-blocks .article-item .area-wrapper {
    width: 273px;
  }
}

@media screen and (max-width: 940px) {
  .news-blocks .article-item:nth-child(2) {
    margin: 0;
  }
  
  .news-blocks .article-item .area-wrapper {
    width: unset;
    margin: 0 30px;
  }
  
  .news-blocks .article-item .area-image {
    height: 315px;
  }
  
  .news-blocks .article-item .news-summary-content-news h4 {
    padding: 0 !important;
    text-align: center !important;
  }
  
  .news-blocks .article-item .news-summary-content-news {
    padding: 0;
  }
  
  .news-dots-holder {
    display: block;
  }
  
  #news-lifestyle .slick-dots {
    position: relative;
    padding-left: 0;
    text-align: left;
    width: 110px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    margin: 27px 0 41px;
  }
  #news-lifestyle .slick-dots li {
    float: left;
    position: relative;
    width: 12px;
    height: 12px;
    border: 1px solid #818286;
    margin: 6px 10px;
    margin-left: 0;
    text-align: left;
    color: transparent;
    cursor: pointer;
    background: transparent;
    box-sizing: border-box;
  }
  #news-lifestyle .slick-dots li.slick-active {
    background: #B10028 !important;
    border: 1px solid #B10028 !important;
  }
  #news-lifestyle .slick-dots li button {
    display: none;
  }
  #news-lifestyle .news-dots-holder {
    position: relative;
    width: 103px;
    height: 30px;
    margin: 0 auto 30px;
  }
}










