.news {
  padding-top: 140px;
}
.news-wrap {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.news-wrap img {
  width: 100%;
}
.news-wrap:before {
  content: "";
  width: 50vw;
  background: #f6f6f6;
  position: absolute;
  right: 100%;
  top: 0;
  margin: 0 10px;
  padding-bottom: 60%;
}
.news-title {
  font-weight: normal;
  color: #000;
  font-size: 1.25rem;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-title.show {
  opacity: 1;
}
.news-date {
  margin-bottom: 60px;
  font-size: 0.875em;
  color: #999;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-date.show {
  opacity: 1;
}
.news-top {
  position: relative;
  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;
}
.news-top.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-top:after {
  content: "";
  width: 50vw;
  height: 100%;
  background: #f6f6f6;
  position: absolute;
  left: 100%;
  bottom: 0;
  margin: 0 10px;
}
.news-text {
  margin: 60px 0;
}
.news-photos img {
  margin-bottom: 20px;
  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;
}
.news-photos img.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-btn {
  position: relative;
  margin-top: 60px;
  font-size: 0.75em;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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;
}
.news-btn.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.news-btn:before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 100%;
  height: 1px;
  background: #cbc6b2;
}
.news-btn:after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 100%;
  height: 1px;
  background: #cbc6b2;
}
.news-btn a {
  position: relative;
  border: #cbc6b2 solid 1px;
  padding: 5px 30px;
  background: #FFF;
  white-space: nowrap;
}
.news-btn a:last-child {
  margin-left: 10px;
}
.news-btn a:last-child:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  right: -4px;
  background: #cbc6b2;
}
.news-btn a:first-child:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  left: -4px;
  background: #cbc6b2;
}

@media screen and (max-width: 1100px) {
  .news-wrap {
    margin: 0 50px;
  }
}
@media screen and (max-width: 640px) {
  .news {
    padding-top: 120px;
  }
  .news-wrap {
    margin: 0 20px;
  }
  .news-title {
    font-size: 1rem;
  }
}
