#news-slider {
  margin-bottom: 0px;
}
.post-slide {
  background: #fff;
  margin: 20px 15px 2px;
  border-radius: 15px;
  padding-top: 15px;
  box-shadow: 1px 1px 7px #cfcfcf;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0px 15px 8px 15px;
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}
.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}
.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
  height: 180px;
}
.post-slide .post-title a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #333;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  font-family: "Lato", sans-serif !important;
  font-weight: normal;
  line-height: 1.6;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
  margin-bottom: 15px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #083461;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.owl-controls .owl-buttons .owl-next {
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 0px;
  background: #083461;

  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.owl-controls .owl-buttons .owl-prev:after,
/* .owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: Font Awesome 5 Pro;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
} */

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "";
  display: inline-block;
  width: 18px; /* set width */
  height: 18px; /* set height */
  background-size: contain;
  filter: invert(1);
  background-repeat: no-repeat;
}

.owl-controls .owl-buttons .owl-prev:after {
  background-image: url("https://www.svgrepo.com/show/121997/left-direction-arrow.svg"); /* your left arrow */
}

.owl-controls .owl-buttons .owl-next:after {
  background-image: url("https://www.svgrepo.com/show/76216/right-thin-chevron.svg"); /* your right arrow */
}

.owl-dots {
  text-align: center;
  margin-top: 15px;
}
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}
.owl-dots .owl-dot.active span {
  background: #333; /* active dot color */
}

@media only screen and (min-width: 1150px) and (max-width: 1280px) {
  .post-slide .post-content {
    height: 220px;
  }
}

@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

@media (max-width: 992px) {
  .post-slide .post-content {
    height: 140px;
  }
  .section-heading {
    font-size: 28px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 768px){
  .counter-wrapper .col-md-4 .py-5{
    padding: 1rem 0px !important;
  }
}

@media (max-width: 576px) {
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
  }

  .owl-controls .owl-buttons .owl-prev,
  .owl-controls .owl-buttons .owl-next {
    width: 25px;
    height: 25px;
  }
  .post-slide .post-content {
    height: 170px;
  }
  .post-slide .post-title a {
    font-size: 18px;
    line-height: 1.4;
  }
  .section-heading , .testimonial .heading{
    font-size: 22px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
  }
}
