/** news-style-two **/

.news-style-two{
    position: relative;
    padding: 115px 0px 120px 0px;
  }
  
  .news-block-two .inner-box{
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .news-block-two .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    background: #1e1e2a;
  }
  
  .news-block-two .inner-box .image-box:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    box-shadow: inset 0px -200px 100px -40px rgba(30, 30, 42, 0.9);
    z-index: 1;
    transition: all 900ms ease;
  }
  
  .news-block-two .inner-box:hover .image-box:before{
    opacity: 0;
  }
  
  .news-block-two .inner-box .image-box img{
    width: 100%;
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .image-box img{
    opacity: 0.1;
  }
  
  .news-block-two .inner-box .category{
    position: absolute;
    top: 0px;
    right: 0px;
  }
  
  .news-block-two .inner-box .category p{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 4px 19px;
    text-align: center;
    z-index: 1;
    border-bottom-left-radius: 15px;
  }
  
  .news-block-two .inner-box .category p i{
    position: relative;
    color: #fff;
    margin-right: 8px;
  }
  
  .news-block-two .inner-box .content-box{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 20px 30px 33px 30px;
    z-index: 2;
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .content-box{
    opacity: 0;
  }
  
  .news-block-two .inner-box .content-box h3{
    line-height: 32px;
    color: #fff;
    margin-bottom: 14px;
  }
  
  .news-block-two .inner-box .content-box h3 a{
    color: #fff;
  }
  
  .news-block-two .inner-box .content-box .post-info li{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-right: 3px;
    padding-right: 16px;
  }
  
  .news-block-two .inner-box .content-box .post-info li a{
    color: #bfbfcc;
  }
  
  .news-block-two .inner-box .content-box .post-info li i{
    font-size: 13px;
    margin-right: 8px;
  }
  
  .news-block-two .inner-box .content-box .post-info li:last-child i{
    color: #bfbfcc;
  }
  
  .news-block-two .inner-box .content-box .post-info li:last-child{
    margin: 0px;
    padding: 0px;
  }
  
  .news-block-two .inner-box .content-box .post-info li:before{
    position: absolute;
    content: '||';
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    top: -1px;
    right: 0px;
    font-weight: 400;
  }
  
  .news-block-two .inner-box .content-box .post-info li:last-child:before{
    display: none;
  }
  
  .news-block-two .inner-box .overlay-box{
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .overlay-box{
    opacity: 1;
  }
  
  .news-block-two .inner-box .overlay-box .link-btn{
    position: absolute;
    left: 30px;
    bottom: 20px;
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .overlay-box .link-btn{
    bottom: 35px;
  }
  
  .news-block-two .inner-box .overlay-box .link-btn a{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
  }
  
  .news-block-two .inner-box .overlay-box .link-btn a i{
    position: relative;
    font-size: 22px;
    font-weight: 400;
    margin-left: 10px;
    top: 2px;
  }
  
  .news-block-two .inner-box .overlay-box .view-btn{
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .overlay-box .view-btn{
    top: 50%;
  }
  
  .news-block-two .inner-box .overlay-box .view-btn a{
    font-size: 30px;
    color: #fff;
  }
  
  .news-style-two .owl-nav{
    position: absolute;
    top: -120px;
    right: 0px;
  }
  
  .news-style-two .owl-nav .owl-prev,
  .news-style-two .owl-nav .owl-next{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    color: #9f9fb4;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 500ms ease;
  }
  
  .news-style-two .owl-nav .owl-prev{
    margin-right: 10px;
  }
  
  .news-style-two .sec-title{
    margin-bottom: 50px;
  }