:root  {
        --theme1: #183d4c;
        --theme2: #0c2630;
}
/*--blog-banner-top-css--*/

.blog-page-section {
    background-image: url("..//img/blogs/blog-page-bg.jpg");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding: 180px 0px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
.blog-page-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
    opacity: .8;
    z-index: -1;
}

.blog-page-title .page-title {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
  .blog-pagination-text .breadcrumb li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
.blog-pagination-text .breadcrumb li {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    list-style: none;
}
  .blog-pagination-text .breadcrumb li::before {
      float: left;
      padding-right: .5rem;
      color: #ffffff;
  }

  @media (max-width: 991px) {
    .blog-page-title .page-title {
        font-size: 32px;
    }

  }

  @media (max-width: 767px) {
    .blog-page-title .page-title {
        font-size: 26px;
    }
    
  }

  @media (max-width: 480px) {
    .blog-page-title .page-title {
        font-size: 22px;
    }
    .blog-page-section {
		padding: 100px 0px;
		padding-bottom: 60px;
	}
    .blog-page-title .page-title {
        font-size: 20px;
    }
  }
  
/*--blog-banner-top-css-end--*/

/*--search-css-start--*/
.blog-pagination-search .search-box {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.blog-pagination-search .search-box input {
    width: 100%;
    height: 65px;
    border-radius: 12px;
    border: none;
    padding: 0 60px 0 25px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-pagination-search .search-box input:focus {
    outline: none;
}

.blog-pagination-search .search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: none;
    background: #f1f1f1;
	color: #333;
    transition: 0.3s;
}

.blog-pagination-search .search-box button:hover {
    background:  var(--theme1);
	color: #fff;
}

.blog-pagination-search .search-box i {
    font-size: 18px;
}
.blog-page-title {
    text-align: center;
}
@media (max-width: 991px) {
.blog-pagination-search .search-box {
    position: relative;
    max-width: 600px;
    margin: auto;
}

}
@media (max-width: 767px) {
.blog-pagination-search .search-box {
    position: relative;
    max-width: 490px;
    margin: auto;
}
.blog-pagination-search .search-box input {
    width: 100%;
    height: 56px;
    font-size: 15px;
    padding: 0 60px 0 15px;
}
.blog-pagination-search .search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
}
.blog-pagination-search .search-box i {
    font-size: 17px;
}

}
@media (max-width: 480px) {
.blog-pagination-search .search-box {
    position: relative;
    max-width: 340px;
    margin: auto;
}

}
/*--search-css-end--*/

/*--blog-main-start--*/

  .blog-section {
    position: relative;
    padding: 50px 0px;
    overflow: hidden;
  }

  .blog-title-top {
    text-align: center;
    margin-bottom: 30px;
  }

.blog-title-top h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
}

.blog-title-top p {
	font-size: 15px;
	color: #000;
}
  
  .blog-block {
    position: relative;
  }
  .blog-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .blog-block .inner-box:hover .read-more {
    background-color: --theming1;
    color: #ffffff;
  }
  .blog-block .inner-box:hover .image-box .image a:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  .blog-block .inner-box:hover .image-box .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .blog-block .image-box {
      position: relative;
      border-radius: 12px 12px 0px 0px;
      overflow: hidden;
  }
.blog-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 240px;
}
.blog-block .image-box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
  .blog-block .image-box .image a:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  .blog-block .image-box .date {
    position: absolute;
    right: 14px;
    bottom: 0;
    color: #000000;
    z-index: 1;
    height: 76px;
    width: 70px;
    text-align: center;
    background: #ffffff;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 800;
    border-radius: 10px;
    padding: 10px 10px;
    z-index: 9;
  }
.blog-block .image-box .date .month {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--theme1);
    color: #fff;
    width: 100%;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
}

  @media only screen and (max-width: 991px) {
    .blog-title-top h2 {
      font-size: 30px;
    }
    .blog-title-top p {
      font-size: 15px;
    }
  }

  @media only screen and (max-width: 767px) {
      .blog-title-top h2 {
        font-size: 24px;
      }
    
      .blog-title-top p {
        font-size: 15px;
      }
	  .blog-block .image-box .image {
			margin-bottom: 0;
			height: 340px;
	  }
	.blog-block .image-box .image img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: fill;
	}
      .blog-block .lower-content .text {
          font-size: 15px;
      }
      .blog-block span.rea_single a {
          font-size: 15px;
      }
      .feature-block-two .step {
          font-size: 16px;
      }
  }

  @media only screen and (max-width: 480px) {
      .blog-title-top h2 {
        font-size: 22px;
      }
    
      .blog-title-top p {
        font-size: 14px;
      }
      .blog-block .lower-content {
          padding: 20px;
          padding-right: 20px;
      }
      .blog-block .title {
          padding-bottom: 0;
      }
      .blog-block .lower-content .text {
          font-size: 15px;
          margin-bottom: 10px;
      }
      .blog-block .lower-content .title a {
          font-size: 18px;
      }
      .blog-block .image-box .date {
          height: 66px;
          width: 66px;
          font-size: 20px;
          padding: 8px 8px;
      }
	  .blog-block .image-box .image {
			margin-bottom: 0;
			height: 260px;
	  }
  }
  
  @media only screen and (max-width: 424px) {
    .blog-block .image-box .date {
      right: 10px;
      bottom: 0px;
    }
  }

.blog-block .lower-content {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 20px 20px;
    padding-right: 20px;
    z-index: 2;
    border-radius: 0px 0px 12px 12px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}
  .blog-block .lower-content .title a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
  }
  .blog-block .lower-content .title a:hover {
	color: var(--theme1);
  }
.blog-block .lower-content .text {
    font-size: 14px;
    font-weight: 400;
    color: #6a6f78;
    margin-bottom: 12px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px !important;
}


@media only screen and (max-width: 767px) {
    .blog-block .lower-content .title a {
		font-size: 17px;
	}
	.blog-block .lower-content .text {
		font-size: 14px;
		font-weight: 400;
	}
}
@media only screen and (max-width: 480px) {
	.blog-block .lower-content {
		padding: 14px 12px 12px;
		padding-right: 12px;
	}
}
  @media only screen and (max-width: 424px) {
    .blog-block .lower-content {
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
    }
  }

.blog-block .post-info {
    padding-left: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}
  .blog-block .post-info li {
    position: relative;
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
    margin-right: 10px;
    list-style: none;
  }
  .blog-block .post-info li i {
    margin-right: 3px;
    color: --theming1;
    font-size: 12px;
  }
.blog-block .title {
    line-height: 1.2em;
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 26px !important;
}
  .blog-block .title a:hover {
    color: --theming1;
  }

  .blog-block span.rea_single a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: all .3s ease-in-out;
  }
  .blog-block span.rea_single a i {
      vertical-align: middle;
      padding-left: 2px;
	  transition: all .3s ease-in-out;
  }
  .blog-block span.rea_single a i::before {font-weight: 700 !important;}
  .blog-block span.rea_single a:hover {color: var(--theme1);}
  .blog-block span.rea_single a:hover i {padding-left: 10px;}

  @media only screen and (max-width: 414px) {
    .blog-block .title {
        padding-bottom: 0;
    }
    .blog-block .lower-content .text {
        font-size: 15px;
        font-weight: 400;
    }
    .blog-block span.rea_single a {
        font-size: 15px;
    }
  }

/*--blog-page-css-end--*/

 /*--trending-blog-css-start--*/

.trending-blog-section {
    padding: 50px 0px;
    background: #f7f7f7;
}
  .trending-hadding-top {
    text-align: center;
  }
.trending-hadding-top h2 {
    font-weight: bold;
    color: #000;
    font-size: 36px;
    font-weight: 500;
    line-height: 29px;
}
.trending-hadding-top span {
    font-size: 15px;
    color: #000;
}

  .trending-blog-bx {
    margin-bottom: 18px;
  }

.trending-side-bx .trending-blog-img {
	height: 165px;
}
.trending-blog-img {
    border-radius: 12px;
    overflow: hidden;
    transition: all .4s ease-in-out;
}
  .trending-blog-img img {
    overflow: hidden;
    transition: all .4s ease-in-out;
  }
  .trending-blog-img img:hover {
    transform: scale(1.3);
  }
  .trending-sub-blog {
    position: relative;
  }
  .trending-mid-post {
    overflow: hidden;
    border-radius: 8px;
    height: 450px;
  }
.trending-mid {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 16px 0px;
    text-align: center;
}

.trending-blog-text h3 {
    line-height: .9;
    margin-bottom: 0;
}
  .trending-blog-text a {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all .3s ease-in;
  }
  .trending-blog-text a:hover {
    color: var(--theme1);
  }
.trending-side {
    background-color: transparent;
    padding-top: 12px;
    text-align: center;
}
  .trending-side h3 {
    line-height: .8;
  }
.trending-side a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    line-height: 20px;
    text-decoration: none;
    transition: all .3s ease-in;
}
  .trending-side a:hover {
    color: var(--theme1);
  }

  @media only screen and (max-width: 991px) {
    .trending-hadding-top h2 {
        font-size: 28px;
    }
  }

  
  @media only screen and (max-width: 767px) {
    .trending-mid-post {
        height: 300px;
    }
    .trending-blog-text a {
        font-size: 18px;
    }
    .trending-side a {
        font-size: 15px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        transition: all .3s ease-in;
    }
    .trending-hadding-top h2 {
        font-size: 24px;
    }
	.blog-section {
		padding: 40px 0px;
	}
	.trending-blog-section {
		padding: 40px 0px;
	}
	.trending-sub-blog {
		margin-bottom: 0;
	}
	.trending-side-bx .trending-blog-img {
		height: auto;
	}
  }

  @media only screen and (max-width: 480px) {
    .trending-hadding-top h2 {
        font-size: 22px;
    }
    .trending-blog-text a {
		font-size: 16px;
		line-height: 22px;
	}
  }

/*--search-in-css-start--*/

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    border-radius: 12px;
}
.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
    position: relative;
    padding: 8px 6px 8px 8px;
    border-radius: 8px;
}
.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--theme1);
	color: #fff;
	border: 1px solid  var(--theme1)
}

/*--trending-blog-css-end--*/
