  .service-bannerpage,
  .bannerpage {
      background-image: url('/assets/img/banner/services_banner.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      padding: 110px 0;
  }


  /*service design*/

  @media (max-width: 480px) {
    .all_services_wrap {
      -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
    .all_services_wrap .item {
      width: 100%;
      max-width: 100%;
    }
    .all_services_wrap .item .title {
      height: auto;
      padding-bottom: 10px;
    }
    .all_services_wrap .item .image{          
      min-height: 150px;
      margin-bottom: 0;
    }
  }

  @media (min-width: 481px) and (max-width: 767px) {
    .all_services_wrap {
      -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
    .all_services_wrap .item {
      width: 100%;
      max-width: 100%;
    }
    .all_services_wrap .item .title {
      height: auto;
      padding-bottom: 10px;
    }
    .all_services_wrap .item .image{          
      min-height: 150px;
      margin-bottom: 0;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .all_services_wrap {
      -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
    .all_services_wrap .item {
      width: 100%;
      max-width: 100%;
    }
    .all_services_wrap .item .title {
      height: auto;
      padding-bottom: 10px;
    }
    .all_services_wrap .item .image{          
      min-height: 150px;
      margin-bottom: 0;
    }
  }

  .all_services_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .all_services_wrap .item {        
    text-align: center;
    max-width: 350px;
    margin-bottom: 119px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
  }

  .all_services_wrap .item .image {
    position: relative;
    min-height: 250px;
    margin-bottom: 10px;
    overflow: hidden;
  }    

  .all_services_wrap .item .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .all_services_wrap .item .link_box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .all_services_wrap .item:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    border:1px solid #3e54ff;
  }