
/** news-section **/

.news-section{
  position: relative;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 12px;
}

.news-block-one .inner-box .image-box .category{
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 6px;
  padding: 10px 22px;
  background: #9680EF;
  z-index: 2;
}

.news-block:nth-child(2) .news-block-one .inner-box .image-box .category{
  background: #FC8A29;
}

.news-block:nth-child(3) .news-block-one .inner-box .image-box .category{
  background: #29B0FC;
}

.news-block-one .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-one .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 50px;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 28px;
  line-height: 39px;
  padding-bottom: 45px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #000;
  width: 2px;
  height: 2px;
  border-radius: 50px;
  right: -10px;
  bottom: 6px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}


/** news-style-two **/

.news-style-two{
  position: relative;
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #D9D9D9;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover{
  border-color: #fff;
  box-shadow: 0px 40px 45px 0px rgba(0, 0, 0, 0.05);
}

.news-block-two .inner-box .image-box{
  position: relative;
  display: block;
}

.news-block-two .inner-box .image-box img{
  width: 100%;
}

.news-block-two .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-two .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 53px 50px 40px 50px;
}

.news-block-two .inner-box .lower-content .category{
  position: absolute;
  display: inline-block;
  left: 50px;
  top: -20px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  background: #2C66BD;
  border-radius: 30px;
  padding: 10px 20px;
  z-index: 2;
}

.news-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 18px;
}

.news-block-two .inner-box .lower-content h3 a{
  position: relative;
  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{
  margin-bottom: 24px;
}

.news-block-two .inner-box .lower-content .link a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
  color: #2C66BD;
  gap: 10px;
}

.news-block-two .inner-box .lower-content .link a:hover{
  color: var(--theme-color);
}

.news-block-two .inner-box .lower-content .link a i{
  font-size: 22px;
  color: var(--theme-color);
}

.news-block-three .inner-box{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  padding-left: 280px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.news-block-three .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 280px;
}

.news-block-three .inner-box .image-box img{
  width: 100%;
}

.news-block-three .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-three .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-three .inner-box .content-box{
  position: relative;
  display: block;
  padding: 42px 50px 40px 50px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-left: none;
  border-radius: 0px 12px 12px 0px;
  min-height: 260px;
  transition: all 500ms ease;
}

.news-block-three .inner-box:hover .content-box{
  border-color: #fff;
}

.news-block-three .inner-box:hover{
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.05);
}

.news-block-three .inner-box .content-box .category{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  background: var(--theme-color);
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 25px;
}

.news-block-three:nth-child(even) .inner-box .content-box .category{
  background: #2C66BD;
}

.news-block-three .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 25px;
}

.news-block-three .inner-box .content-box h3 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}

.news-block-three .inner-box .content-box h3 a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .content-box .link a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
  color: #2C66BD;
  gap: 10px;
}

.news-block-three .inner-box .content-box .link a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .content-box .link a i{
  font-size: 22px;
  color: var(--theme-color);
}

.news-style-two .left-column{
  margin-right: -30px;
}


.news-block-four .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.news-block-four .inner-box:hover{
  background: #F4F2FD;
  box-shadow: none;
}

.news-block-four .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-four .inner-box .image-box img{
  width: 100%;
}

.news-block-four .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-four .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-four .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 40px;
}

.news-block-four .inner-box .lower-content .category{
  position: relative;
  display: inline-block;
  padding-left: 44px;
  font-size: 14px;
  line-height: 21px;
  color: #9680EF;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-block-four .inner-box .lower-content .category:before{
  position: absolute;
  content: '';
  background: #9680EF;
  width: 30px;
  height: 2px;
  left: 0px;
  top: 10px;
}

.news-block-four .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 24px;
}

.news-block-four .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-four .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.news-block-four .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.news-block-four .inner-box .lower-content .post-info li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--title-color);
}

.news-block-four .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-four .inner-box .lower-content .post-info li a:hover,
.news-block-four .inner-box .lower-content .post-info li:first-child i{
  color: var(--theme-color);
}

.news-block-four .inner-box .lower-content .post-info li i{
  font-size: 18px;
}


/** news-style-three **/

.news-style-three{
  position: relative;
  background: #F9F9FF;
}

.news-style-three .image-box .post-date{
  position: absolute;
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  font-weight: 500;
  background: var(--theme-color);
  padding: 12px 21px;
  border-radius: 40px;
  z-index: 2;
}

.news-style-three .news-block-two .image-box .post-date{
  bottom: -22px;
}

.news-style-three .category-box{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  color: #9680EF;
  font-weight: 500;
  padding-left: 19px;
  margin-bottom: 20px;
}

.news-style-three .category-box:before{
  position: absolute;
  content: '';
  background: #9680EF;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0px;
  top: 8px;
}

.news-style-three h3{
  padding-bottom: 34px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 26px !important;
}

.news-style-three .news-block-three .inner-box{
  padding-left: 300px;
}

.news-style-three .news-block-three .inner-box .image-box{
  width: 300px;
}

.news-style-three .news-block-two .inner-box{
  background: #fff;
  border: none;
}

.news-style-three .news-block-three .inner-box .content-box{
  border: none;
}

.news-style-three .news-block-three .inner-box .content-box h3{
  margin-bottom: 35px !important;
}

.news-style-three .news-block-two .inner-box .lower-content{
  padding-top: 37px;
}

.news-block-two .inner-box .lower-box,
.news-block-three .inner-box .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-block-two .inner-box .lower-box .user-box a,
.news-block-three .inner-box .lower-box .user-box a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--title-color);
}

.news-block-two .inner-box .lower-box .user-box a:hover,
.news-block-three .inner-box .lower-box .user-box a:hover{
  color: var(--theme-color);
}

.news-block-two .inner-box .lower-box .user-box a i,
.news-block-three .inner-box .lower-box .user-box a i{
  font-size: 18px;
  color: var(--theme-color);
}

.news-block-two .inner-box .lower-box .link a,
.news-block-three .inner-box .lower-box .link a{
  color: #15095E;
}

.news-style-three .more-text h5{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.news-style-three .more-text h5 a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-color);
}

.news-style-three .more-text h5 a span{
  position: relative;
  display: inline-block;
  line-height: 20px;
  border-bottom: 1px solid var(--theme-color);
}

.news-style-three .more-text h5 a i{
  font-size: 22px;
  color: var(--title-color);
}

.blog-grid .news-block-four .inner-box .lower-content .post-info li i{
  color: var(--theme-color);
}

.blog-grid .news-block-four .inner-box .lower-content{
  padding: 40px 35px;
}

.blog-grid .news-block-four .inner-box{
  margin-bottom: 60px;
}


.sidebar-page-container{
  position: relative;
}

.news-block-five .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  transition: all 500ms ease;
}

.news-block-five .inner-box:hover{
  box-shadow: none;
  background: #F4F2FD;
}

.news-block-five .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-five .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-five .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.news-block-five .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 40px 50px;
}

.news-block-five .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 29px;
}

.news-block-five .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--title-color);
}

.news-block-five .inner-box .lower-content .post-info li span{
  color: #9680EF;
}

.news-block-five .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #000;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  right: -10px;
  bottom: 6px;
}

.news-block-five .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-five .inner-box .lower-content h3{
  display: block;
  font-size: 28px;
  line-height: 39px;
  margin-bottom: 15px;
}

.news-block-five .inner-box .lower-content h3 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}

.news-block-five .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.news-block-five .inner-box .lower-content p{
  margin-bottom: 35px;
}

.news-block-five .inner-box .lower-content .theme-btn:before,
.news-block-five .inner-box .lower-content .theme-btn:after{
  background: #9680EF;
}



/** rtl-css **/

.rtl .news-block-five .inner-box .lower-content .post-info li:before{
  right: inherit;
  left: -10px;
}


/** responsive-css **/

@media only screen and (max-width: 1600px){

}

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .news-style-two .left-column{
    margin-right: 0px;
  }

  .news-style-two .right-column{
    margin-left: 0px;
  }

  .blog-list-content{
    margin-left: 0px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px){
  .news-section,
  .news-style-two{
    padding: 65px 0px 40px 0px;
  }

  .news-block-three .inner-box{
    padding-left: 0px;
  }

  .news-block-three .inner-box .image-box{
    position: relative;
    width: 100%;
  }

  .news-block-three .inner-box .content-box{
    border: 1px solid #D9D9D9;
    border-top: none;
    border-radius: 0px 0px 12px 12px;
  }

  .news-section.pt_0{
    padding-top: 0px;
  }

  .news-style-three .news-block-three .inner-box{
    padding-left: 0px;
  }

  .news-style-three .news-block-three .inner-box .image-box{
    width: 100%;
  }

  .news-style-three{
    padding: 65px 0px;
  }

  .news-section.blog-grid{
    padding: 70px 0px 0px 0px;
  }

  .sidebar-page-container{
    padding-top: 70px;
  }

}

@media only screen and (max-width: 599px){
  .news-block-two .inner-box .lower-content,
  .news-block-three .inner-box .content-box,
  .blog-grid .news-block-four .inner-box .lower-content{
    padding-left: 30px;
    padding-right: 30px;
  }

  .news-block-two .inner-box .lower-content .category{
    left: 30px;
  }
}

@media only screen and (max-width: 499px){

}











































