#news-slider {
  margin-top: 10px;
}
.post-slide {
  background: #fff;
/*  margin: 20px 15px 20px;*/
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius:0px;

}
.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:50px 40px ;
  overflow: hidden;
}
.post-title{
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  margin-bottom:20px;
}
.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.post-slide .post-description {
  line-height: 28px;
  color: #000;
  font-size:19px;
  margin-bottom: 25px;
  text-align: left;
}
.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 {
    font-size: 20px;
    color: #2e5396;
    text-align: left;
    display: block;
    text-decoration: none;
    font-weight: 600;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.post-content h2{
  display: block !important;
  float: left !important;

}
.post-content p{
  display: block;
    line-height: 28px;
  color: #000;
  font-size:19px;
  margin-bottom: 25px;
  text-align: left 
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -12%;
  left:auto;
  padding: 0 15px 0 15px;
  border-radius: 50px;
  transition: 0.5s ease 0s;
  right:80px;
      right: 80px;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top:-12%;
  right: 15px;
  padding: 0 15px 0 15px;
  border-radius: 50px;
  transition: 0.5s ease 0s;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size:25px;
  font-weight: 100 !important;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f061";
  font-weight: 100 !important;
}
.owl-controls .owl-buttons .owl-prev:after {
  content: "\f060";
  
}

   .owl-controls .owl-buttons .owl-next:hover,
    .owl-controls .owl-buttons .owl-prev:hover{
   /*background: linear-gradient(to right, #fbd93a, #f99829);*/
   background: #fbd83a;
    }

    .owl-controls .owl-buttons .owl-next:hover:after,
    .owl-controls .owl-buttons .owl-prev:hover:after{
    color: #fff;
    }
@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}