.top-images {
  position: relative;
  height: 100vh;
}

.news-list {
  margin: 0 10%;
}
.news-item {
  position: relative;
  margin-bottom: 100px;
}
.news-item a {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news-item:nth-child(even) a {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-item:nth-child(even) .news-box {
  right: 50%;
}
.news-item:nth-child(even) .news-img:after {
  left: 0;
}
.news-item:nth-child(odd) .news-box {
  left: 50%;
}
.news-item:nth-child(odd) .news-img:after {
  right: 0;
}
.news-item:last-child {
  margin-bottom: 0;
}
.news-box {
  position: absolute;
  width: 5%;
  top: 30%;
  height: 0%;
  background: #f6f6f6;
  margin: 0 10px;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.show .news-box {
  height: 80%;
}
.news-img {
  position: relative;
  width: 50%;
  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-item:hover .news-img img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-img:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.show .news-img:after {
  width: 0;
}
.news-content {
  width: 45%;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.news-inner {
  max-width: 400px;
  margin: auto;
}
.news-subtitle {
  margin-bottom: 20px;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  color: #000;
}
.show .news-subtitle {
  opacity: 1;
}
.news-view {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 40px;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.show .news-view {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-view span {
  position: relative;
  display: block;
  padding-right: 10px;
  white-space: nowrap;
  border: #cbc6b2 solid 1px;
  padding: 5px 30px;
  font-size: 0.75em;
}
.news-view span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #f6f6f6;
  z-index: -1;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.news-item:hover .news-view span:before {
  width: 100%;
}
.news-view span:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  right: -4px;
  background: #cbc6b2;
}
.news-view:after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 100%;
  height: 1px;
  background: #cbc6b2;
}

@media screen and (max-width: 1100px) {
  .news-list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 800px) {
  .news-item a {
    display: block;
  }

  .news-img {
    width: auto;
  }

  .news-box {
    display: none;
  }

  .news-content {
    width: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .news-item {
    margin-bottom: 60px;
  }

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