/* -----services--- */
.service-images {
  position: relative;
  max-width: 480px;
  height: 360px;
  margin-bottom: 2rem;
}
.service-images::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: url(../images/stock-03.avif) no-repeat center center;
  background-size: cover;
  z-index: 7;
}
.service-img-01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.service-img-01 img {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  border-radius: 100%;
  border: 8px solid var(--color-accent-2);
  box-shadow: var(--box-shadow);
}
.service-img-01::before {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 250px;
  top: 2rem;
  left: 0;
  background: url(../images/stock-02.svg) no-repeat center center;
  border-radius: 100%;
  z-index: -2;
}
.service-img-02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.service-img-02 img {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  border-radius: 100%;
  border: 8px solid var(--color-accent-2);
  box-shadow: var(--box-shadow);
}
.service-img-02::before {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 250px;
  bottom: 2rem;
  left: 0;
  background: url(../images/stock-02.svg) no-repeat center center;
  border-radius: 100%;
  z-index: -2;
}
.category-name {
  color: var(--color-accent);
}
.service-row {
  display: flex;
  font-size: 1em;
  flex-wrap: wrap;
}
.service-name {
  margin-bottom: 5px;
  font-weight: bold;
}
.service-description {
  opacity: 0.8;
}
.service-line {
  flex: 1 1 auto;
  border-bottom: 1px solid #b1b1b1;
  height: 1rem;
  margin-left: 0.5rem;
  position: relative;
}
.service-price {
  padding-left: 0.5rem;
  width: auto;
  white-space: nowrap;
  text-align: right;
  font-weight: bold;
}
.service-price .label {
  font-weight: normal;
}
@media (max-width: 575.98px) {
  .service-images {
    max-width: 300px;
    height: 230px;
  }
  .service-images::before {
    width: 170px;
    height: 170px;
  }
  .service-img-01 img {
    width: 150px;
    height: 150px;
  }
  .service-img-01::before {
    width: 150px;
    height: 150px;
    top: 2rem;
    left: 0;
    background: url(../images/stock-02.svg) no-repeat center center;
    border-radius: 100%;
    z-index: -2;
  }
  .service-img-02 img {
    width: 150px;
    height: 150px;
  }
  .service-img-02::before {
    width: 150px;
    height: 150px;
    bottom: 2rem;
    left: 0;
  }
  .service-header-img {
    background: url(../images/bg-service-header-mobile.avif) no-repeat center center;
    background-size: cover;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .service-header-img {
    background: url(../images/bg-service-header-tablet.avif) no-repeat center center;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .service-header-img {
    background: url(../images/bg-service-header-desktop.avif) no-repeat center 55%;
    background-size: cover;
  }
}
