/*-----INNER PAGE-----*/
.newslist {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
}
.newslist li {
  width: 25%;
  padding: 0 14px;
  margin-bottom: 30px;
}
.newslist li a {
  display: flex;
  height: 100%;
  background: #f3f3f3;
  position: relative;
}
.newslist li a:after {
  content: "";
  width: 100%;
  height: 4px;
  background: #6cb245;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news_thumb {
  position: relative;
  overflow: hidden;
}
.news_info {
  background: #f3f3f3;
  padding: 32px 32px 43px;
  position: relative;
}
.news_title {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 22px;
  color: #55575a;
  margin-bottom: 10px;
}
.news_content {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #55575a;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 96px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_thumb {
  overflow: hidden;
}
.news_thumb img,
.news_title {
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
/*-----NEWS DETAIL-----*/
.post_wrap {
  display: flex;
  flex-wrap: wrap;
}
.post_content {
  width: calc(100% - 418px);
  padding-right: 58px;
  border-right: 1px solid #dcdcdc;
}
.post_sidebar {
  width: 418px;
  padding-left: 62px;
}
.post_img {
  margin-bottom: 33px;
}
.post_inimg {
  margin-left: 34px;
  margin-bottom: 25px;
  float: right;
}
.searchbox {
  margin-bottom: 30px;
}
.search-form {
  position: relative;
  width: 100%;
}
.searchbox .form-control {
  height: 44px;
  padding: 10px 70px 10px 18px;
  margin: 0;
}
.submit-search {
  position: absolute;
  width: 60px;
  height: 44px;
  font-size: 20px;
  outline: none;
  border: none;
  color: #fff;
  background-color: #6cb245;
  right: 0;
  top: 0;
}
.searchbox input[type="search"]::-webkit-search-decoration,
.searchbox input[type="search"]::-webkit-search-cancel-button,
.searchbox input[type="search"]::-webkit-search-results-button,
.searchbox input[type="search"]::-webkit-search-results-decoration {
  cursor: pointer;
}
/*.searchbox input[type="search"]::-webkit-search-decoration,
.searchbox input[type="search"]::-webkit-search-cancel-button,
.searchbox input[type="search"]::-webkit-search-results-button,
.searchbox input[type="search"]::-webkit-search-results-decoration {display: none;}*/

.rp_title {
  background: #4b4b4e;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  font-weight: bold;
  padding: 20px 25px;
  letter-spacing: 0px;
}
.rp_list {
  border: 1px solid #dcdcdc;
  border-top: 0;
}
.rp_list li {
  padding: 18px 28px;
}
.rp_list li:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
.rp_list li a {
  font-size: 14px;
  line-height: 21px;
  color: #55575a;
}

.post_content h2 {
  font-size: 20px;
  text-align: left;
  margin-bottom: 10px;
}
.post_content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
/*----- NON TOUCH DEVICES -----*/
@media (hover: hover) and (pointer: fine) {
  .newslist li a:hover .news_thumb img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  .newslist li a:hover .news_title,
  .rp_list li a:hover {
    color: #6cb245;
  }
}
/*-----MEDIA QUERIES-----*/
@media screen and (max-width: 1700px) {
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 1200px) {
  .newslist {
    margin: 0 -8px;
  }
  .newslist li {
    padding: 0 8px;
  }
  .news_info {
    padding: 25px;
  }

  .post_sidebar {
    width: 360px;
    padding-left: 30px;
  }
  .post_content {
    width: calc(100% - 360px);
    padding-right: 30px;
  }
}
@media screen and (max-width: 1120px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 992px) {
  .newslist li {
    width: 33.33%;
  }
  .post_sidebar {
    max-width: 420px;
    padding-left: 0px;
    margin: 0 auto;
  }
  .post_content {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 40px;
  }
  .post_content {
    border: none;
  }
}
@media screen and (max-width: 860px) {
}
@media screen and (max-width: 768px) {
  .post_content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 700px) {
  .newslist {
    margin: 0 -5px;
  }
  .newslist li {
    padding: 0 5px;
  }
  .news_info {
    padding: 18px;
  }
  .post_inimg {
    float: none;
    margin: 0 auto 25px;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .newslist li {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .rp_list li {
    padding: 16px;
  }
}
@media screen and (max-width: 400px) {
  .news_title {
    font-size: 14px;
  }
}
@media screen and (max-width: 340px) {
  .newslist li {
    width: 100%;
  }
}
