/* CSS Document */
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.classTitle {
  margin-right: 10px;
  padding: 0 8px;
  border: 1px solid #594a38;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #594a38;
}

.dateBox {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #7d7162;
}

.newsList {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsList .newsItem {
  padding: 0 15px 30px;
  width: 33.3333333333%;
}
@media (max-width: 1023px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .Img {
  border-radius: 20px;
  overflow: hidden;
}
.newsList .Img img {
  display: block;
  width: 100%;
}
.newsList .Txt {
  padding-top: 20px;
}
.newsList .Txt .title {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 500;
}
.newsList .Txt .title a {
  color: #594a38;
}
.newsList .Txt .title a:hover {
  color: #f19b38;
}
.newsList .Txt .text {
  padding-top: 7px;
  font-size: 15px;
  color: #7d7162;
  line-height: 1.8;
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
.shareBox .back:hover {
  background: #398cb1;
}