.top-img {
  background-position: 83% 70%;
}

.news-list {
  padding: 0 8%;
}
.news-item {
  width: 80%;
  padding: 3% 0;
  margin-bottom: 200px;
}
.news-item:last-child {
  margin-bottom: unset;
}
.news-item:nth-child(even) {
  margin-left: auto;
}
.news-item a {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.news-item a:hover {
  color: #D0CBC4;
}
.news-item a:hover .news-img img {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.news-item a:hover .news-bg {
  height: 100%;
}
.news-item a:hover .news-date {
  letter-spacing: 0.2em;
}
.news-image {
  width: 50%;
  position: relative;
}
.news-img {
  width: 75%;
  overflow: hidden;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -moz-transition: clip-path 0.6s 0.3s;
  -o-transition: clip-path 0.6s 0.3s;
  -webkit-transition: clip-path 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: clip-path 0.6s 0.3s;
}
.news-img.show {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.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-content {
  width: 50%;
}
.news-date {
  color: #EF6A00;
  font-family: "Fira Sans", "Mukta", serif;
  font-size: 0.875em;
  -moz-transition: letter-spacing 0.6s;
  -o-transition: letter-spacing 0.6s;
  -webkit-transition: letter-spacing 0.6s;
  transition: letter-spacing 0.6s;
}
.news-title {
  color: #FFF;
  margin: 10px 0;
}
.news-text {
  font-size: 0.875em;
  margin: 20px 0;
}

@media screen and (max-width: 1100px) {
  .news-list {
    padding: 0 5%;
  }
  .news-item {
    width: 100%;
  }
  .news-img {
    width: 85%;
  }
}
@media screen and (max-width: 800px) {
  .news-item {
    margin-bottom: 100px;
  }
  .news-item a {
    display: block;
  }
  .news-item a:hover .news-bg {
    height: 30%;
  }
  .news-image {
    width: 70%;
    margin: auto;
  }
  .news-img {
    width: 100%;
    -moz-transition: clip-path 0.6s;
    -o-transition: clip-path 0.6s;
    -webkit-transition: clip-path 0.6s;
    transition: clip-path 0.6s;
  }
  .news-content {
    width: 70%;
    margin: auto;
    margin-top: 5%;
  }
}
@media screen and (max-width: 640px) {
  .news-list {
    padding: 25px;
  }
  .news-image {
    width: 100%;
  }
  .news-content {
    width: 100%;
    margin-top: 30px;
  }
}
