/** news-section **/

.news-section{
  position: relative;
}

.news-section .title-inner{
  position: relative;
  margin-bottom: 60px;
}

.news-section .title-inner .sec-title,
.news-section .title-inner .text{
  position: relative;
  width: 50%;
}

.news-section .title-inner .sec-title{
  margin-bottom: 0px;
}

.news-section .title-inner .text{
  padding-left: 100px;
  margin-top: 26px;
}

.news-section .title-inner .text p{
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover{
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
  z-index: 1;
  transition: all 500ms ease;
}

.news-block-one .inner-box .image-box:after{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  opacity: 0.3;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box:before,
.news-block-one .inner-box:hover .image-box:after{
  width: 50%;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  transform: scale(1.05);
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img{
  transform: scale(1);
}

.news-block-one .inner-box .image-box a{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  color: #fff;
  z-index: 2;
}

.news-block-one .inner-box .lower-content{
  position: relative;
  border: 1px solid #dfdfdf;
  border-top: none;
}

.news-block-one .inner-box .lower-content .post-date{
  position: absolute;
  left: 30px;
  top: -48px;
  width: 75px;
  padding: 14px 15px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
}

.news-block-one .inner-box .lower-content .text{
  position: relative;
  display: block;
  background: #f6f6f6;
  padding: 43px 50px 38px 50px;
}

.news-block-one .inner-box .lower-content .text h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
}

.news-block-one .inner-box .lower-content .text h3 a{
  display: inline-block;
  color: #1c1c1c;
  text-transform: capitalize;
}


.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  padding: 13px 15px 10px 15px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #868686;
  font-weight: 600;
  padding-left: 21px;
  margin: 0px 20px;
}

.news-block-one .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 3px;
}

.news-block-one .inner-box .lower-content .post-info li a{
  color: #868686;
  text-transform: capitalize;
  font-weight: 700;
}

.news-block-one .inner-box .lower-content .post-info li a:hover{

}