.service {
  width: 100%;
  padding: 160px 0;
}

.service-cards {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--box-shadow-common);
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.service-card.service-card-main {
  max-width: 100%;
}

.service-card.service-card-sub {
  width: 100%;
  height: 100%;
}

.service-title-group {
  gap: 16px;
  align-items: center;
  width: 60%;
}

.service-title-str {
  gap: 12px;
  align-items: center;
}

.service-cards-right {
  gap: 40px;
}

.service-label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 100px;
  color: #fff;
  background: var(--gradient-sub);
  max-width: max-content;
}

.service-title {
  margin-top: -5%;
  font-size: 30px;
  font-family: var(--font-tertiary);
  line-height: 1.5;
  text-align: center;
  width: max-content;
  background: var(--gradient-sub);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-icon {
  color: var(--gradient-sub);
}

.service-text {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #303030;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.service-text-sub {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  color: #303030;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.service-features {
  width: 100%;
  gap: 10px;
}

.service-features li {
  font-size: 12px;
  color: #707070;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 0.5px dashed #eba0eb;
}

.service-features li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-price-group {
  align-items: center;
  gap: 10px;
}

.service-price {
  font-size: 36px;
  font-weight: 300;
  font-family: var(--font-tertiary);
  line-height: 1;
  width: max-content;
  background: var(--gradient-sub);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price span {
  font-size: 18px;
}

.service-price-note {
  font-size: 10px;
  color: #666;
}

.service-card-sub-top-contents,
.service-card-sub-bottom-contents {
  width: 100%;
  gap: 20px;
  align-items: center;
}

.service-reverse-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media screen and (max-width: 1140px) {
  .service-cards {
    gap: 15px;
  }
  .service-cards-right {
    gap: 15px;
  }
  .service-card {
    padding: 20px;
  }
}

@media screen and (max-width: 1035px) {
  .service {
    width: 100%;
    padding: 80px 5%;
  }

  .service-card {
    padding: 10% 5%;
  }

  .service-cards {
    gap: 20px;
    flex-direction: column;
  }

  .service-title-group {
    width: 100%;
  }

  .service-cards-right {
    gap: 40px;
  }

  .service-card-sub-top-contents,
  .service-card-sub-bottom-contents {
    flex-direction: column;
  }

  .service-text-sub {
    text-align: center;
  }

  .service-reverse-wrap {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
