.service-page-banner{
  height:118px;
  background:
    linear-gradient(rgba(93,154,199,.88),rgba(93,154,199,.88)),
    url("assets/images/breadcrumb-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 105px;
  font-family:Arial,sans-serif;
}

.service-page-banner h2{
  font-size:20px;
  color:#000;
  margin:0 0 12px;
  font-weight:700;
}

.service-page-banner p{
  margin:0;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.service-page-banner span{
  padding:0 8px;
}

.services-page-section{
  width:100%;
  background:#f5f5f5;
  padding:43px 0 70px;
  font-family:Arial,sans-serif;
  position:relative;
  overflow:hidden;
}

.services-page-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("assets/images/service-bg.jpg") center/cover no-repeat;
  opacity:.06;
}

.services-page-heading{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:32px;
}

.services-page-heading h2{
  font-size:30px;
  font-weight:700;
  color:#000;
  margin:0 0 12px;
}

.services-page-heading span{
  width:170px;
  height:2px;
  background:#5b97c6;
  display:block;
  margin:auto;
}

.services-page-grid{
  position:relative;
  z-index:2;
  max-width:1140px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:44px 34px;
}

.services-page-card{
  background:#fff;
  border:1px solid #d3d3d3;
  min-height:455px;
  padding:35px 30px 30px;
  text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
  transition:.35s ease;
}

.services-page-card:hover{
  background:#5b97c6;
  transform:translateY(-4px);
}

.services-page-icon{
  width:110px;
  height:110px;
  margin:0 auto 35px;
}

.services-page-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.services-page-card h3{
  font-size:20px;
  line-height:1.25;
  color:#000;
  font-weight:700;
  margin:0 0 13px;
}

.services-page-card p{
  font-size:16px;
  line-height:1.55;
  color:#6d7a86;
  margin:0 0 18px;
}

.services-page-arrow{
  font-size:18px;
  color:#333;
  display:inline-block;
  transform:rotate(-45deg);
  transition:.35s ease;
}

.services-page-card:hover .services-page-arrow{
  transform:rotate(0deg);
}

.services-page-card:hover h3,
.services-page-card:hover p,
.services-page-card:hover .services-page-arrow{
  color:#fff;
}

@media(max-width:991px){
  .service-page-banner{
    padding:0 25px;
  }

  .services-page-grid{
    grid-template-columns:repeat(2, 1fr);
    padding:0 20px;
  }
}

@media(max-width:576px){
  .services-page-grid{
    grid-template-columns:1fr;
  }

  .services-page-card{
    min-height:auto;
  }

  .services-page-heading h2{
    font-size:25px;
  }
}