.top-image {
  height: 200px;
  background-size: cover;
  background-position: center 0;
}

.news {
  padding: 10vh 5vw;
  max-width: 1400px;
  margin: auto;
}
.news-wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news-title {
  color: #000;
  width: 30%;
}
.news-title .title {
  font-size: 1.25rem;
  opacity: 0;
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  -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;
}
.news-title.show .title {
  opacity: 1;
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.news-source {
  margin-top: 10px;
  font-size: 0.875em;
  color: #999;
  width: fit-content;
  opacity: 0;
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  -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-source {
  opacity: 1;
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.news-content {
  width: 65%;
}
.news-content img {
  padding: 5px;
  margin-bottom: 20px;
  width: 100%;
  border: #ccc solid 1px;
  opacity: 0;
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -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;
}
.news-content img.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-content p {
  font-size: 0.875em;
  margin-bottom: 20px;
  opacity: 0;
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -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;
}
.news-content p.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-btn {
  position: absolute;
  top: 150px;
  left: 0;
  line-height: 30px;
  font-size: 0.75em;
  letter-spacing: 5px;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-btn.show {
  opacity: 1;
}
.news-btn a {
  display: inline-block;
  margin-right: 30px;
}
.news-btn-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: #ccc solid 1px;
  border-radius: 50%;
  text-align: center;
  letter-spacing: 0;
}
.news-btn a:hover {
  color: #000;
}

@media screen and (max-width: 1100px) {
  .news-wrap {
    display: block;
  }
  .news-title {
    width: auto;
  }
  .news-content {
    width: auto;
    margin-top: 60px;
  }
  .news-btn {
    position: static;
    margin-top: 60px;
    text-align: center;
  }
  .news-btn a {
    margin: 0 15px;
  }
}
@media screen and (max-width: 640px) {
  .news-title .title {
    font-size: 1rem;
  }

  .news-source {
    font-size: 0.75em;
  }
}
