.service_banner {
  padding: 40px 0;
  margin-top: 90px;
  background-image: url(../images/heathcare-hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.service_banner .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: center;
}
.service_banner .grid img {
  width: 100%;
  display: block;
}
.service_banner h2,
h2 {
  font-size: 52px;
  color: #000;
  /* text-align: center; */
  margin: 20px 0 20px 0;
  font-weight: 600;
}
.service_banner p {
  font-size: 21px;
  color: #000;
  /* text-align: center; */
}
.service_banner a {
  color: #fff;
  background-color: #00a7ee;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: baseline;
  gap: 10px;
  transition: all 0.3s;
  font-size: 16px;
  position: relative;
  border-radius: 30px;
}
.service_banner a span {
}
.service_banner a:hover {
  color: #fff;
  background-color: #025090;
}
.service_pg_box1 {
  padding: 50px 0;
  /*background-image: url(../images/img_9.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.service_pg_box1 h2 {
  text-align: center;
}
.service_pg_box1 h3 {
  text-align: center;
  font-size: 21px;
  color: #000;
}
.service_pg_box1 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.spb1_box {
  min-height: 190px;
  border-radius: 10px;
  background-color: rgb(255 255 255 / 0.902);
  border: 1px solid rgb(51 204 255 / 0.902);
  padding: 40px;
  transition: all 0.3s;
}
.spb1_box:hover {
  background-image: -moz-linear-gradient(
    179deg,
    rgb(34 220 253 / 0.902) 0%,
    rgb(28 145 226 / 0.902) 50%,
    rgb(88 101 185 / 0.902) 100%
  );
  background-image: -webkit-linear-gradient(
    179deg,
    rgb(34 220 253 / 0.902) 0%,
    rgb(28 145 226 / 0.902) 50%,
    rgb(88 101 185 / 0.902) 100%
  );
  background-image: -ms-linear-gradient(
    179deg,
    rgb(34 220 253 / 0.902) 0%,
    rgb(28 145 226 / 0.902) 50%,
    rgb(88 101 185 / 0.902) 100%
  );
  color: #fff;
}
.spb1_box h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  font-weight: 600;
}
.spb1_box p {
  font-size: 18px;
  color: #8f9295;
}
.spb1_box:hover p {
  color: #fff;
}
.services_box1 {
  padding: 60px 0;
  position: relative;
  background-color: #eafaff;
}
/* .services_box1::before {
  position: absolute;
  bottom: -100px;
  height: 200px;
  left: -5%;
  width: 110%;
  background-color: #fff;
  content: "";
  border-radius: 100%;
  box-shadow: 9px 9px 90px rgba(211, 237, 255, 1);
} */
.services_box1_in {
  background-color: #013064;
  padding: 50px 80px;
  border-radius: 20px;
}
.services_box1_in h2 {
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 50px;
}
.services_box1_in p {
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  height: 260px;
}
.services_box1_in ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  clear: both;
}
.services_box1_in ul li {
  font-size: 19px;
  color: #fff;
  padding-left: 45px;
  font-weight: 400;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: 10px top;
  background-size: 23px;
}
/* ===========================
   ====== Media Queries ====== 
   =========================== */

/*------smallphones----------------*/
@media only screen and (min-width: 240px) and (max-width: 960px) {
  .service_banner .grid,
  .service_pg_box1 .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .service_banner h2,
  h2 {
    font-size: 32px;
  }
  .service_banner p,
  .spb1_box p {
    font-size: 16px;
  }
}
