.banner-news {
  box-sizing: border-box;
  height: 550px;
  background-image: url(../img/banner-news.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 20vw;
}

.news-title {
  visibility: hidden;
}

@keyframes title-in {
  0% {
    left: -500px;
    opacity: 0.1;
  }
  100% {
    left: 0px;
    opacity: 1;
  }
}

@keyframes content-in {
  0% {
    opacity: 0;
    bottom: -800px;
    visibility: hidden;
  }
  10% {
    opacity: 0.1;
    bottom: -800px;
    visibility: visible;
  }
  100% {
    opacity: 1;
    bottom: 0;
    visibility: visible;
  }
  101% {
    opacity: 1;
    bottom: 0;
    visibility: visible;
  }
}

.news-title-in {
  visibility: visible;
  position: relative;
  animation: title-in 0.8s ease-out;
}

.item {
  visibility: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 30px;
  cursor: pointer;
  position: relative;
}

.item-in {
  animation: content-in 1s ease-out 0s both;
}

.item-1-in {
  animation-delay: 0s;
}

.item-2-in {
  animation-delay: 0.25s;
}

.item-3-in {
  animation-delay: 0.5s;
}

.item-4-in {
  animation-delay: 0.75s;
}

.item-5-in {
  animation-delay: 1s;
}

.item-6-in {
  animation-delay: 1.25s;
}

.item-7-in {
  animation-delay: 1.5s;
}

.item-img {
  flex-shrink: 0;
  width: 150px;
  height: 90px;
  margin-right: 30px;
}

.item-content {
  flex: 1;
}

.item-content-text {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
}

.item-content-date {
  font-size: 15px;
  color: #999;
}

@media screen and (max-width: 1200px) {
  .banner-news {
    height: 450px;
  }
}

@media screen and (max-width: 667px) {
  .banner-news {
    height: 350px;
    background-position: 70% 60%;
  }
  .item {
    flex-direction: column;
  }
}
