.main-heading {
  color: #00A859;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  margin-top: 0;
}

.blogBox {
  border: 1px solid #2ba859;
  border-radius: 5px;
  font-size: 15px;
  line-height: 26px;
  transition: all 0.3s;
  margin-bottom: 15px;
  color: #666;
}

.blogBox:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blogBox__thumb {
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
  text-align: center;
}

@media(max-width: 991px) {
  .blogBox__thumb {
    height: auto;
  }
}

.blogBox__thumb img {
  display: inline-block;
  border-radius: 5px 5px 0 0;
}

.blog_category {
  position: absolute;
  background: #f48634;
  padding: 0px 15px;
  border-radius: 25px;
  top: 10px;
  left: 25px;
  font-size: 13px;
}

.blog_category a {
  color: #fff;
  text-decoration: none;
}

.blog_category:hover {
  background: #2ba859;
}

.blogBox__overlay {
  padding: 15px;
  border-bottom: 1px solid #2ba859;
}

.blogBox__date {
  font-size: 12px;
  color: #aaa;
}

.blogBox__overlay h4 {
  font-size: 18px;
  margin-top: 5px;
  line-height: 1.5;
}

.blogBox__info {
  padding: 15px;
  font-size: 13px;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.blogBox__info a {
  color: #666;
}

a.btn.btn-custom {
  background-color: #00A859;
  color: #fff;
  padding: 9px 1em;
  margin: 6px 0;
  float: right;
  font-size: 20px;
  font-weight: 900;
}
.blogBox .blogBox__overlay P{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  -webkit-box-orient: vertical;
}
