.newsBlog {
  padding: 80px 0px;
}
.owl-carousel .news-card {
  background-color: #f2f2f2;
  transition: all linear 0.2s;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom: 3px solid #73bf43;
  margin-bottom: 40px;
}
.news-image {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  overflow: hidden;
  height: 180px;
}
.news-image img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  transition: all linear 0.3s;
  width: 100%; 
  height: 180px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
  position: relative;
  min-height: 265px;
}
.news-content .date {
  color: red;
  margin-bottom: 10px;
}
.news-content .title h4 {
  font-size: 21px;
  color: #2d3e50;
  font-weight: 500;
  transition: all linear 0.2s;
  margin-bottom: 20px;
  line-height: normal;
}
.news-content p {
  padding-bottom: 20px;
  color: #2d3e50;
  font-size: 15px;
  line-height: normal;
}
.readMore-btn {
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.news-content button {
  background-color: #73bf43;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 30px;
  border-radius: 3px;
  transition: all linear 0.2s;
  border: 0;
}
.viewAll-btn {
  background: #73bf43;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-align: center;
  border: 2px solid #73bf43;
  padding: 5px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.btn-parent {
  padding-top: 40px;
  text-align: center;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #73bf43;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
}

.owl-nav button.owl-prev {
  left: -25px;
}

.owl-nav button.owl-next {
  right: -25px;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #5a9932;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #73bf43;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: background 0.3s;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #5a9932;
}


.right-controls{
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #73bf43;
    border-radius: 50%;
    padding: 15px 20px;
    cursor: pointer;
    position: absolute;
    left: 93%;
    bottom: 19%;
}
.right-controls i{
    color: white;
    font-size: 30px;
}