#news {
    width: 100%;
  }
  #news .banner-box {
    width: 100%;
    position: relative;
    background-image: url('/files/news/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 30vw;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  
  #news .banner-box .banner-bar {
    position: relative;
    background-image: url('/files/news/banner-bar.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    height: 30vw;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  #news .banner-box .banner-bar .banner-title {
    position: absolute;
    left: 13vw;
    bottom: 2vw;
    font-size: 1.6rem;
    color: #fff;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }


  #news-flters {
    margin-top: 80px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    text-align: center;
    color: #333;
    padding-left: 0;
  }

  #news-flters li {
    display: inline-block;
    padding: 15px 20px 11px 20px;
    cursor: pointer;
  }

  #news-flters li.filter-active {
    color: #0068B7;
    font-weight: 600;
    border-bottom: 4px solid #0068B7;
    cursor: pointer;
  }

  #news-list > div {
    padding-bottom: 10px;
  }

  #news-list .title {
    margin-top: 10px;
    font-size: 1.15rem;
    letter-spacing: 1px;
  }

  #news-list .categories span {
    font-size: 0.875rem;
    color: #555;
    margin-right: 5px;
  }

  @media screen and (max-width: 1440px) {
    #news .banner-box {
      height: 35vw;
    }
  
    #news .banner-box .banner-bar {
      height: 35vw;
    }
  }
  
  @media screen and (max-width: 1200px) {
    #news .banner-box {
      height: 40vw;
    }
  
    #news .banner-box .banner-bar {
      height: 40vw;
    }
  }
  
  @media screen and (max-width: 992px) {
    #news .banner-box {
      height: 50vw;
    }
  
    #news .banner-box .banner-bar {
      height: 50vw;
      background-size: 130vw;
    }
  }
  
  @media screen and (max-width: 768px) {
    #news-flters {
      border: 0;
    }

    #news-flters li {
      display: inline-block;
      padding: 10px 15px;
      cursor: pointer;
    }
  
    #news-flters li.filter-active {
      color: #fff;
      font-weight: 600;
      background-color: #0068B7;
      cursor: pointer;
      border: 0;
    }

    #news-list > div {
      border-bottom: 1px dotted #efefef;
      padding-bottom: 20px;
      margin-bottom: 30px;
    }

    #news .banner-box {
      height: 60vw;
    }
  
    #news .banner-box .banner-bar {
      height: 60vw;
      background-size: 140vw;
    }
  }
  
  @media screen and (max-width: 576px) {
    #news .banner-box {
      height: 70vw;
    }
  
    #news .banner-box .banner-bar {
      height: 70vw;
      background-size: 180vw;
    }
  
    #news .banner-box .banner-title {
      font-size: 1.3rem;
    }
  }