.Service_page {
  padding: 3% 0;
}


.Service_page .services .service_card {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 19px;
  margin-bottom: 30px;
  padding: 10px 20px 20px;
  cursor: pointer;
  height: 100%;
}

.Service_page .services .service_card .service_img_holder {
 aspect-ratio: 1/1;
}

.Service_page .services .service_card .service_img_holder .top_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.Service_page .services .service_card .card_content {
  padding-top: 20px;
  font-family: sans-serif;
}

.Service_page .services .service_card .card_content .service_title {
    color: #00648b;
    font-size: 18px;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
}

.Service_page .services .service_card .card_content .service_desc {
  font-size: 16px;
  letter-spacing: 0px;
  color: #000000;

  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* limit to 6 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Service_page .services .service_card .card_content .service_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

/* =================== Media Queries ================== */

@media (min-width: 0) and (max-width: 991px) {
  .Service_page {
    padding: 5% 0;
  }

  .Service_page .services .service_card {
    border-radius: 8px;
  }

 
  .Service_page .services .service_card .card_content .service_title {
    font-size: 20px;
  }

  .Service_page .services .service_card .card_content .service_desc {
    font-size: 15px;
    
  }

  .Service_page .services .service_card .card_content .service_subtitle {
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Service_page .services .service_card .card_content .service_title {
    font-size: 22px;
  }

  .Service_page .services .service_card .card_content .service_desc {
    font-size: 15px;
    
  }

  .Service_page .services .service_card .card_content .service_subtitle {
    font-size: 17px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .Service_page .services .service_card .card_content .service_title {
    font-size: 27px;
  }
}