
/** news-section **/

.news-section{
  position: relative;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 8px #e5ebea;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img{
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.news-block-one .inner-box .image-box a{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  color: #fff;
  z-index: 1;
}

.news-block-one .inner-box .lower-content{
  position: relative;
  padding: 62px 40px 48px 40px;
}

.news-block-one .inner-box .lower-content .admin-thumb{
  position: absolute;
  left: 40px;
  top: -50px;
  width: 80px;
  height: 80px;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.15);
  z-index: 1;
}

.news-block-one .inner-box .lower-content .admin-thumb img{
  width: 100%;
  border-radius: 50%;
}

.news-block-one .inner-box .lower-content .category{
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 26px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 18px;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #061a3a;
}

.news-block-one .inner-box .lower-content p{
  line-height: 28px;
  margin-bottom: 14px;
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  display: block;
}

.news-block-one .inner-box .lower-content .post-info a{
  font-weight: 600;
  color: #061a3a;
  text-transform: capitalize;
}

.news-section .sec-title h2{
  margin-bottom: 0px;
}

.news-section .owl-stage-outer{
  overflow: visible;
}

.news-section .owl-stage-outer .owl-item{
  opacity: 0;
  transition: all 500ms ease;
}

.news-section .owl-stage-outer .owl-item.active{
  opacity: 1;
}