/* News list Css */
section.news-list {
  background: #fff;
}
.news-item {
  margin: 40px 0;
}
.news-item-list .news-item-img {
  width: 100%;
  margin-bottom: 20px;
}
.news-item-list {
  margin-bottom: 30px;
  padding: 15px;
}
.news-item-list .news-item-img img {
  width: 100%;
}
.news-item-list span {
  font-size: 18px;
  color: var(--black-color-2);
  font-weight: 600;
  line-height: 160%;
}
.news-item-list h4 {
  font-size: 20px;
  color: var(--black-color-2);
  font-weight: 700;
  line-height: 160%;
  padding-top: 10px;
}
.news-item-list h4:hover {
  color: var(--orange-color);
}
.new-more-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.new-more-btn button {
  background-color: var(--orange-color);
  font-size: 25px;
  font-weight: 700;
  color: var(--white-color);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
}

/*End News list Css */



/*Media Query */

@media screen and (max-width: 1400px) {
  .news-item-list h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  
  .news-item-list h4 {
    font-size: 18px;
  }
  .news-item-list span {
    font-size: 14px;
  }
  .new-more-btn button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {

   .news-item-list {
    padding: 0px;
  }
}
@media screen and (max-width: 425px) {
 
  .news-item-list h4 {
    font-size: 16px;
  }
  .news-item-list span {
    font-size: 14px;
  }
}
