.news-inner {
  padding: 0 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.news-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news-item {
  width: 47%;
  box-sizing: border-box;
  margin-top: 80px;
}
.news-item:nth-child(1), .news-item:nth-child(2) {
  margin-top: unset;
}
.news-item a {
  position: relative;
}
.news-item a:hover .news-img:before {
  -moz-animation: newsImg 1s;
  -webkit-animation: newsImg 1s;
  animation: newsImg 1s;
}
.news-item a:hover .news-btn-line:before {
  -moz-animation: btnline 0.6s;
  -webkit-animation: btnline 0.6s;
  animation: btnline 0.6s;
}
.news-item a:hover .news-btn-arrow:before {
  -moz-animation: btnarrow 0.6s;
  -webkit-animation: btnarrow 0.6s;
  animation: btnarrow 0.6s;
}
.news-image {
  position: relative;
}
.news-img {
  position: relative;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -moz-transition: clip-path 0.6s 0.4s;
  -o-transition: clip-path 0.6s 0.4s;
  -webkit-transition: clip-path 0.6s;
  -webkit-transition-delay: 0.4s;
  transition: clip-path 0.6s 0.4s;
}
.show .news-img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.news-img:before {
  content: "";
  width: 0%;
  height: 100%;
  background: rgba(42, 55, 42, 0.1);
  position: absolute;
  top: 0;
  left: 0px;
}
.news-img img {
  width: 100%;
}
.news-bg {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: -1;
  opacity: 0.3;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 0.6s;
  -o-transition: clip-path 0.6s;
  -webkit-transition: clip-path 0.6s;
  transition: clip-path 0.6s;
}
.show .news-bg {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.news-content {
  padding-top: 15px;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-content.show {
  opacity: 1;
}
.news-date {
  font-size: 0.75rem;
  color: #c4c4c4;
  letter-spacing: 0.1rem;
  padding-bottom: 5px;
}
.news-title {
  color: #FFF;
}
.news-btn {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 0.75rem;
  padding-top: 5px;
}
.news-btn-line {
  width: 60px;
  height: 1px;
  background: #c4c4c4;
  position: relative;
  overflow: hidden;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.news-btn-line:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #282f28;
  position: absolute;
  top: 0;
  left: -20px;
}
.news-btn-text {
  padding: 0 7px 2px 10px;
  font-family: "Ubuntu", Arial, Helvetica;
  color: #b5a25b;
}
.news-btn-arrow {
  position: relative;
  overflow: hidden;
}
.news-btn-arrow:before {
  content: "";
  width: 8px;
  height: 100%;
  background: #282f28;
  position: absolute;
  top: 0;
  left: -8px;
}

@-moz-keyframes btnline {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes btnline {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}
@keyframes btnline {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes btnarrow {
  0% {
    left: -8px;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes btnarrow {
  0% {
    left: -8px;
  }
  100% {
    left: 100%;
  }
}
@keyframes btnarrow {
  0% {
    left: -8px;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes newsImg {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@-webkit-keyframes newsImg {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes newsImg {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@media screen and (max-width: 800px) {
  .news-list {
    display: block;
  }
  .news-item {
    width: 85%;
    margin: 60px auto 0;
  }
  .news-item:nth-child(2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 640px) {
  .news-inner {
    padding: 0 35px;
  }
  .news-item {
    width: calc(100% - 10px);
    margin: 50px auto 0 0;
  }
  .news-item:nth-child(2) {
    margin-top: 50px;
  }
  .news-title {
    font-size: 0.875rem;
  }
}
