.dz-services-exact {
  background: #f4f8fa;
  color: #1d252b;
  min-height: 70vh;
  padding: 28px 0 86px;
  overflow: hidden;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dz-services-exact * {
  box-sizing: border-box;
}

.dz-services-container {
  max-width: 1170px;
}

.dz-services-breadcrumb {
  margin: 0 0 42px;
  padding: 0;
}

.dz-services-breadcrumb .breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 37, 42, .05);
}

.dz-services-breadcrumb .breadcrumb-item {
  color: #667085;
  font-size: 14px;
  font-weight: 500;
}

.dz-services-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #98a2b3;
  content: "/";
}

.dz-services-breadcrumb a {
  color: #0c81c9;
  font-weight: 700;
  text-decoration: none;
}

.dz-services-breadcrumb a:hover {
  color: #12b8c2;
}

.dz-services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.dz-services-intro h1 {
  margin: 0 0 18px;
  color: #1f252a;
  font-size: clamp(38px, 5vw, 48px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.04em;
}

.dz-services-intro p {
  max-width: 680px;
  margin: 0;
  color: #58646c;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

.dz-services-count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0c81c9;
  box-shadow: 0 12px 28px rgba(31, 37, 42, .05);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.dz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}

.dz-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 37, 42, .055);
  transition: transform .18s ease, box-shadow .18s ease;
}

.dz-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 37, 42, .09);
}

.dz-service-card__media {
  display: block;
  height: 236px;
  background: #eefbfd;
  overflow: hidden;
}

.dz-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.dz-service-card:hover .dz-service-card__media img {
  transform: scale(1.04);
}

.dz-service-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 184, 194, .22), transparent 34%),
    linear-gradient(135deg, #eefbfd, #f2f4f5);
  color: #12b8c2;
  font-size: 44px;
}

.dz-service-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 30px;
}

.dz-service-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dz-service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eefbfc;
  color: #0b9fa8;
  font-size: 12px;
  font-weight: 700;
}

.dz-service-chip--muted {
  background: #f2f4f5;
  color: #667085;
}

.dz-service-card__title {
  margin: 0 0 16px;
  color: #1f252a;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
}

.dz-service-card__title a {
  color: inherit;
  text-decoration: none;
}

.dz-service-card__title a:hover {
  color: #0c81c9;
}

.dz-service-card__text {
  margin: 0 0 28px;
  color: #5c6870;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.dz-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.dz-service-price {
  color: #1f252a;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.dz-service-price span {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

.dz-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18bdc5, #0c81c9);
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(12, 129, 201, .20);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.dz-service-link:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
}

.dz-services-empty {
  padding: 42px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 37, 42, .055);
}

.dz-services-empty h2 {
  margin: 0 0 12px;
  color: #1f252a;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.dz-services-empty p {
  margin: 0;
  color: #5c6870;
  font-size: 16px;
  line-height: 1.65;
}

.dz-services-pagination {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.dz-services-pagination .pagination {
  gap: 8px;
  margin: 0;
}

.dz-services-pagination .page-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  color: #0c81c9;
  box-shadow: 0 10px 22px rgba(31, 37, 42, .045);
  font-weight: 700;
}

.dz-services-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #18bdc5, #0c81c9);
  color: #ffffff;
}

@media (max-width: 1199.98px) {
  .dz-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .dz-services-exact {
    padding-top: 22px;
  }

  .dz-services-intro {
    display: block;
  }

  .dz-services-count {
    margin-top: 22px;
  }
}

@media (max-width: 767.98px) {
  .dz-services-exact {
    padding-bottom: 62px;
  }

  .dz-services-breadcrumb {
    margin-bottom: 32px;
  }

  .dz-services-intro {
    margin-bottom: 34px;
  }

  .dz-services-intro h1 {
    font-size: 36px;
  }

  .dz-services-grid {
    grid-template-columns: 1fr;
  }

  .dz-service-card__media {
    height: 220px;
  }

  .dz-service-card__body {
    padding: 26px;
  }
}

@media (max-width: 575.98px) {
  .dz-service-card__footer {
    display: block;
  }

  .dz-service-link {
    width: 100%;
    margin-top: 16px;
  }

  .dz-service-price {
    display: block;
  }
}


/* Services cards image crop correction */
.dz-service-card__media img {
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 992px) {
  .dz-service-card__media {
    height: 255px;
  }
}

@media (max-width: 767.98px) {
  .dz-service-card__media {
    height: 245px;
  }
}
