.news-list {
  margin: 15%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-item {
  position: relative;
  width: 31.3333%;
  margin: 0% 1% 60px;
  opacity: 0;
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -moz-transition: opacity 1s, -moz-transform 1s;
  -o-transition: opacity 1s, -o-transform 1s;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}
.news-item.show:nth-child(3n-1) {
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.news-item.show:nth-child(3n) {
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.news-item.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-item a:hover .news-title, .news-item a:hover .news-date {
  color: #999;
}
.news-item a:hover img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.news-title {
  font-size: 1.125em;
  color: #FFF;
  margin: 10px 0;
}

.coming .news-img, .coming .news-info {
  opacity: 0.5;
}

@media screen and (max-width: 1300px) {
  .news-item {
    width: 48%;
  }
}
@media screen and (max-width: 1100px) {
  .news-list {
    margin: 15% 20px;
  }

  .news-item {
    width: 31.3333%;
  }
}
@media screen and (max-width: 800px) {
  .news-item {
    width: 48%;
  }
}
@media screen and (max-width: 640px) {
  .news-item {
    max-width: 400px;
    width: auto;
    margin: 0 auto 60px;
  }

  .coming {
    display: none;
  }
}
