.line1 {
  position: absolute;
  top: 0px;
  left: 130px;
  width: 1px;
  height: 100%;
  background: #f6f6f6;
}

.section {
  min-height: 100vh;
  box-sizing: border-box;
}

.news-title {
  position: fixed;
  margin-top: 100px;
  max-width: 300px;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -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 {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.news-title p {
  font-size: 2em;
  font-weight: 300;
}
.news-info {
  padding: 10px 0;
}
.news-list {
  overflow: hidden;
  margin-left: 350px;
  margin-top: 100px;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-item {
  position: relative;
  float: left;
  width: 25%;
  margin-bottom: 50px;
  border: #FFF solid 5px;
  box-sizing: border-box;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-item.show {
  opacity: 1;
}
.news-item:hover img {
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img:after {
  content: "";
  border: #FFF solid 1px;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  opacity: 0.2;
}
.news-img img {
  width: 100%;
  -webkit-filter: grayscale(0.5);
  filter: grayscale(0.5);
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
}

@media screen and (max-width: 1600px) {
  .news-item, .news-sizer {
    width: 33.3333%;
  }
}
@media screen and (max-width: 1400px) {
  .news-item, .news-sizer {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .news-title {
    position: static;
    max-width: none;
    margin-top: 0;
  }
  .news-title p {
    display: none;
  }

  .news-list {
    margin: 0px;
  }

  .news-item, .news-sizer {
    width: 33.3333%;
  }
}
@media screen and (max-width: 860px) {
  .news-item, .news-sizer {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .news-item, .news-sizer {
    width: 100%;
  }

  .news-item {
    border: none;
    margin-top: 10px;
  }

  .news-list {
    max-width: 400px;
    margin: auto;
  }
}
