/** news-section **/

.news-section{
  position: relative;
  overflow: hidden;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  padding: 30px 30px 30px 30px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.news-block-one .inner-box:after{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  opacity: 0.8;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover:after{
  height: 100%;
}

.news-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(33, 34, 38, 0), rgb(33 34 38 / 170%));
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.news-block-one .inner-box .content-box{
  position: relative;
  z-index: 1;
}

.news-block-one .inner-box .post-date{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  font-weight: 500;
  background: #fff;
  padding: 10px 15px 10px 40px;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.news-block-one .inner-box .post-date i{
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 16px;
}

.news-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}

.news-block-one .inner-box h3 a{
  display: inline-block;
  color: #fff;
}

.news-block-one .inner-box h3 a:hover{
  color: var(--theme-color);
}

.news-block-one .inner-box .post-info{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-one .inner-box .post-info li{
  position: relative;
  font-size: 16px;
  color: #fff;
  padding-left: 25px;
  margin-right: 20px;
}

.news-block-one .inner-box .post-info li:last-child{
  margin: 0px !important;
}

.news-block-one .inner-box .post-info li i{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 16px;
  color: var(--theme-color);
}

.news-block-one .inner-box .post-info li a{
  display: inline-block;
  color: #fff;
}

.news-block-one .inner-box .post-info li a:hover{

}

.news-block-one .inner-box .theme-btn{
  padding: 13px 40px;
}

.news-section .pattern-layer .pattern-1{
  position: absolute;
  top: -134px;
  right: 0px;
  width: 237px;
  height: 433px;
  background-repeat: no-repeat;
}

.news-section .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 275px;
  width: 183px;
  height: 237px;
  background-repeat: no-repeat;
}

.news-block-one .inner-box .theme-btn:before,
.news-block-one .inner-box .theme-btn:after{
  background: var(--theme-color);
}

.news-block-one .inner-box .theme-btn:hover{
  color: #fff !important;
}


/** news-style-two **/

.news-style-two{
  position: relative;
}

.news-style-two .pattern-layer .pattern-1{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 237px;
  height: 433px;
  background-repeat: no-repeat;
}

.news-style-two .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 275px;
  width: 183px;
  height: 237px;
  background-repeat: no-repeat;
}

.news-block-two .inner-box{
 	position: relative;
  	display: block;
  	padding: 0px 30px 0px 30px;
  	margin-bottom: 30px;
 	box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.news-block-two .inner-box:before{
  position: absolute;
  content: '';
/*   background: #fff;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1); */
  width: 100%;
  height: calc(100% - 110px);
  left: 0px;
  bottom: 0px;
}

.news-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.news-block-two .inner-box .image-box img{
  max-width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.news-block-two .inner-box .lower-content{
  position: relative;
  padding-top: 44px;
}

.news-block-two .inner-box .lower-content .post-date{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  right: 30px;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--theme-color);
}

.news-block-two .inner-box .lower-content .post-date h4{
  font-size: 22px;
  line-height: 20px;
  color: #fff;
}

.news-block-two .inner-box .lower-content .post-date h4 span{
  display: block;
  font-weight: 400;
  font-size: 16px;
}

.news-block-two .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}

.news-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-two .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.news-block-two .inner-box .lower-content p{
  position: relative;
  display: block;
  padding-bottom: 29px;
  border-bottom: 1px solid #E5E5E5;
}

.news-block-two .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}

.news-block-two .inner-box .lower-content .post-info:before{
  position: absolute;
  content: '';
  background: #D9D9D9;
  width: 1px;
  height: 25px;
  top: 17px;
  left: 45%;
}

.news-block-two .inner-box .lower-content .post-info.blog-two:before{
	background:inherit;
}

.news-block-two .inner-box .lower-content .post-info li{
  position: relative;
  display: block;
  font-size: 16px;
  color: #6E6E6E;
  padding-left: 37px;
}

.news-block-two .inner-box .lower-content .post-info li .icon-29 {
    padding-left: 10px;
}

.news-block-two .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: #6E6E6E;
}

.news-block-two .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 16px;
  color: var(--theme-color);
}

.sidebar-page-container .news-block-two .inner-box .lower-content .post-info {
    justify-content: flex-start;
}

.news-block-two .inner-box .lower-content .post-info .mr_blog_post_meta {
/*     padding-left: 0px; */
    padding-right: 30px;
}

 /* wp css start */

.news-block-two .inner-box .lower-content .post-info li a:hover{
  color: var(--theme-color);
}

.news-block-two .inner-box .lower-content .blog_post_title a {
    color: #141417;
}

.news-block-two .inner-box .lower-content .blog_post_title a:hover {
    color: var(--theme-color) !important;
}

/*.news-block-two .inner-box .lower-content .post-info {
    justify-content: start;
}*/

.news-block-two .inner-box .lower-content .post_readmore.btn-box a {
    position: relative;
    display: inline-block;
    color: #eb292c !important;
    border: 1px solid;
    border-color: #eb292c !important;
    margin-top: 15px;
    margin-bottom: 30px;
}

.news-block-two .inner-box .lower-content .post_readmore.btn-box-two a{
	margin-top: 0px !important;
}

.theme-btn-six{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  color: #fff !important;
  text-align: center;
  padding: 10px 30px;
  z-index: 1;
  transition: all 500ms ease;
}

.blog-sidebar .gallery-item .gallery-icon.landscape {
    padding-bottom: 10px;
}

.sidebar-page-container .blog-sidebar .widget_categories {
    position: relative;
    background: rgba(247, 247, 247, 1);
    padding: 35px 40px 40px 40px;
    margin-bottom: 50px;
}

.sidebar-page-container .blog-sidebar .single-sidebar {
    position: relative;
    background: rgba(247, 247, 247, 1);
    padding: 35px 40px 40px 40px;
    margin-bottom: 50px;
}


/** sidebar-page-container **/

.sidebar-page-container{
  position: relative;
}

.news-block-three .inner-box{
  position: relative;
  display: block;
  padding: 0px 40px 40px 40px;
  margin-bottom: 65px;
}

.news-block-three .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0px;
}

.news-block-three .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.news-block-three .inner-box .image-box img{
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.news-block-three .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.news-block-three .inner-box .lower-content{
  position: relative;
  padding-top: 24px;
}

.news-block-three .inner-box .lower-content .post-date{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  right: 30px;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--theme-color);
}

.news-block-three .inner-box .lower-content .post-date h4{
  font-size: 22px;
  line-height: 20px;
  color: #fff;
}

.news-block-three .inner-box .lower-content .post-date h4 span{
  display: block;
  font-weight: 400;
  font-size: 16px;
}

.news-block-three .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-three .inner-box .lower-content .post-info li{
  position: relative;
  display: block;
  font-size: 16px;
  color: rgba(110, 110, 110, 1);
  padding-left: 25px;
  margin-right: 57px;
}

.news-block-three .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: rgba(217, 217, 217, 1);
  width: 1px;
  height: 25px;
  top: 0px;
  right: -29px;
}

.news-block-three .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-three .inner-box .lower-content .post-info li:last-child{
  margin: 0px !important;
}

.news-block-three .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 16px;
  color: var(--theme-color);
}

.news-block-three .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: rgba(110, 110, 110, 1);
}

.news-block-three .inner-box .lower-content .post-info li a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 44px;
  font-weight: 800;
  margin-bottom: 20px;
}

.news-block-three .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-three .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .lower-content p{
  margin-bottom: 30px;
}

.news-block-three .inner-box .lower-content .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 11px 33px;
}
 
.news-block-three .inner-box .lower-content .btn-box a:hover{
  color: #fff !important;
  background: var(--theme-color);
}

.page-numbers{
	position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    width: 60px;
    line-height: 62px;
    background: #ffffff;
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
    color: var(--title-color);
    border-radius: 50%;
	margin-top:10px;
	margin-right:5px;
    z-index: 1;
    transition: all 500ms ease;
}
.page-numbers:hover{
	color: var(--title-color);
}
span.page-numbers.current {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    width: 60px;
    line-height: 62px;
    background: var(--theme-color);
    border-color: var(--theme-color);
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    z-index: 1;
    transition: all 500ms ease;
}
.wp-block-query-pagination-previous{
	color: var(--title-color);
}
.wp-block-query-pagination-next{
	color: var(--title-color);
}
.wp-block-avatar img {
    border-radius: 50px;
}
.wp-block-post-author__avatar img{
	border-radius: 50px;
}
.taxonomy-category.wp-block-post-terms a{
	color: var(--title-color);
}
.post-navigation-link-next a{
	color: var(--title-color);
}
.post-navigation-link-previous a{
	color: var(--title-color);
}
.wp-block-read-more{
	color: var(--title-color);
}
.logged-in.wp-block-loginout a{
	color: var(--title-color);
}


/** RTL **/

.rtl .news-block-one .inner-box .post-info li{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .news-block-three .inner-box .lower-content .post-date{
  right: inherit;
  left: 30px;
}



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .news-section{
    padding: 70px 0px 40px 0px;
  }

  .news-style-two{
    padding: 0px 0px 40px 0px;
  }

  .news-style-two .pattern-layer{
    display: none;
  }

  .blog-grid{
    padding: 70px 0px;
  }

  .blog-image{
    padding: 70px 0px;
  }

  .sidebar-page-container{
    padding: 70px 0px;
  }

  .news-block-three .inner-box{
    padding: 0px;
  }

  .news-block-three .inner-box:before{
    display: none;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){
.news-block-one .inner-box{
    padding-top: 0px;
  }

  .news-block-three .inner-box .lower-content h3{
    font-size: 24px;
    line-height: 30px;
  }
}