.top-wrap {
  padding: 80px 80px 0;
}

.news-list {
  padding: 0 60px;
  margin-bottom: -40px;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-item {
  position: relative;
  display: block;
  width: calc(33.3333% - 70px);
  margin: 0 20px 40px;
  background: #121212;
  padding: 15px;
  opacity: 0;
  -moz-transition: opacity 0.6s, box-shadow 0.3s;
  -o-transition: opacity 0.6s, box-shadow 0.3s;
  -webkit-transition: opacity 0.6s, box-shadow 0.3s;
  transition: opacity 0.6s, box-shadow 0.3s;
}
.news-item.show {
  opacity: 1;
}
.news-item.show:nth-child(3n) .news-img:after, .news-item.show:nth-child(3n-2) .news-img:after {
  width: 0;
}
.news-item.show:nth-child(3n-1) .news-img:after {
  height: 0;
}
.news-item:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-bottom: #FFF solid 5px;
  border-left: transparent solid 5px;
  opacity: 0;
}
.news-item:hover {
  color: #FFF;
  box-shadow: 0 0 10px #000;
}
.news-item:hover .news-text {
  color: #FFF;
}
.news-item:hover:after {
  opacity: 1;
}
.news-img {
  position: relative;
}
.news-img img {
  width: 100%;
}
.news-img:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  -moz-transition: width 0.6s, height 0.6s;
  -o-transition: width 0.6s, height 0.6s;
  -webkit-transition: width 0.6s, height 0.6s;
  transition: width 0.6s, height 0.6s;
}
.news-item:nth-child(3n-2) .news-img:after {
  right: 0;
}
.news-item:nth-child(3n-1) .news-img:after, .news-item:nth-child(3n) .news-img:after {
  left: 0;
}
.news-info {
  margin-top: 10px;
  opacity: 0;
  -moz-transition: opacity 0.6s 0.3s;
  -o-transition: opacity 0.6s 0.3s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: opacity 0.6s 0.3s;
}
.show .news-info {
  opacity: 1;
}
.news-date {
  font-size: 0.875rem;
}
.news-text {
  margin-top: 10px;
  padding-top: 10px;
  color: #FFF;
  border-top: #666 solid 1px;
  font-size: 0.9375rem;
}
.news-type {
  font-size: 0.875rem;
  display: inline-block;
}

@media screen and (max-width: 1300px) {
  .news-item {
    width: calc(50% - 70px);
  }
}
@media screen and (max-width: 900px) {
  .news-list {
    display: block;
    margin: auto;
    max-width: 600px;
  }

  .news-item {
    width: auto;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 760px) {
  .top-wrap {
    padding: 0px 25px;
    margin-top: 20px;
  }

  .news-list {
    padding: 0 25px;
  }
}
@media screen and (max-width: 640px) {
  .news-list {
    margin-bottom: -20px;
  }

  .news-item {
    margin: 0 0 20px;
  }
}
