.newsItem{
  margin-bottom: 30px;
  .newsImg{
    figure{
      width: 100%;
      height: 350px;
      overflow: hidden;
      border-radius: 25px;
      & a {
        display: block;
        position: relative;
        height: 100%;
        width: 100%;
        &::before {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: #11784499;
            opacity: 0;
            transition: 0.5s;
            content: "";
        }
        &::after {
            width: 60px;
            height: 60px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: 0.5s;
            content: "";
            background: url(../images/Link.png) no-repeat center center var(--orange-color);
            border-radius: 50%;
            opacity: 0;
        }
      }
      img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
      }
    }
  }
  .newsTitle{
    padding-top: 10px;
    a{
      color: #000;
    }
  }
  &:hover{
    & .newsImg {
      & figure {
        & a {
            &::before {
                opacity: 1;
            }
            &::after {
                opacity: 1;
            }
        }
      }
    }
    .newsTitle{
      a{
        color: #007743;
      }
    }
  }
  
}
.pagination{
    justify-content: center;
    padding-top: 30px;
}

/*==case study Details start===*/
.overviewDetailsTop{
  display: flex;
  justify-content: space-between;
  ul{
    li{
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      span{
        color: #007743;
        margin-right: 10px;
        font-size: 24px;
      }
      p{
        font-size: 24px;
      }
    }
  }
}
.caseDetailsImg{
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.caseDetailsTxt{
  padding-top: 20px;
}

/*====gallery section ====*/
.galleryBox{
  padding-bottom: 165px;
  
.gallerySlider{
  .galleryItem{
    margin: 0 15px;
    .productItemImg{
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      a{
        width: 100%;
        height: 100%;
        position: relative;
        display: block;        
        img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center;
        }
        &::before{
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-color: #11784499;
          opacity: 0;
          transition: 0.5s;
          content: "";
        }
      }
    }
    &:hover{
      .productItemImg{
        a{     
          &::before{
            opacity: 1;
          }
        }
      }
    }
  }
  .slick-arrow{
        position: absolute;
        font-size: 0px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #D9D9D9;
        border: none;
        top: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }
    .slick-arrow{
          background-color: #D9D9D9;
          border: none;
          transform: translateX(-50%);
          transition: 0.5s;
          bottom: -90px;
          top: auto;
          &.slick-next{
              right:calc(50% - 60px);
              background: url(../images/right_arrow_icon_right.png) no-repeat center center #D9D9D9;
              background-size: 80%;
              transform: none;
          }
          &.slick-prev{
              left:calc(50% - 60px);
              background: url(../images/left_arrow_icon_black.png) no-repeat center center #D9D9D9;
              background-size: 80%;
              transform: none;
          }
          &:hover{
              &.slick-next{
                  background: url(../images/right_arrow_icon.png) no-repeat center center #00B565;
                  background-size: 80%;
              }
              &.slick-prev{
                  background: url(../images/left_arrow_icon.png) no-repeat center center #00B565;
                  background-size: 80%;
              }
          }
    }
}
}
/*===gallery section ====*/

@media(max-width: 991px) {
.overviewDetailsTop {
    & ul {
        & li {
            span {
                font-size: 16px;
            }
            p {
                font-size: 16px;
            }
        }
    }
}
.caseStudyBox{
  .headingWrap {
      & .secH {
          &::after {
              right: auto;
              transform: translateX(-50%);
              left: 50%;
          }
      }
  }
}

}
@media(max-width:768px) {
  .overviewDetailsTop{
    flex-wrap: wrap;
    .leftInfo{
      width: 100%;
    }
    .rightInfo{
      width: 100%;
    }
  }
  .caseDetailsImg{
    height: 250px;
    img{
      width: 100%;
      object-fit: cover;
      object-position: center;
      height: 100%;
    }
  }
  .listWrap {
      ul {
          column-count: 1;
      }
  }
  .caseStudyBox{
    &.p_40{
      padding: 20px;
    }
  }
}

