.service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25em;
}
@media (max-width: 1024px) {
  .service__list {
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.service__item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2.5em;
}
@media (max-width: 768px) {
  .service__item {
    padding: 2em;
  }
}
.service__item-head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .service__item-head {
    margin-bottom: 2em;
  }
}
.service__item-head-catch {
  font-size: 2em !important;
}
@media (max-width: 768px) {
  .service__item-head-catch {
    font-size: 1.6875em !important;
  }
}
.service__item-image {
  margin-bottom: 2.5em;
}
.service__item-image img {
  margin: 0 auto;
}
.service__item-body-text {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 1.75em;
}
.service__item-body-btn {
  padding: 1.25em;
}
.service__item-link + .service__item-link {
  margin-top: 0.5em;
}
.service__item-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  line-height: 1.4;
  color: #3BB24D;
}
.service__item-link a:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233BB24D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 13v6a2 2 0 0 1 -2 2H5a2 2 0 0 1 -2 -2V8a2 2 0 0 1 2 -2h6'/><path d='M15 3h6v6'/><path d='M10 14 21 3'/></svg>") no-repeat center/contain;
}
.service__item-link a:hover {
  opacity: 0.7;
}