.footer-contact {
  display: grid;
  gap: 5px;
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--text);
}

.process-five {
  grid-template-columns: repeat(5, 1fr);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(43, 5, 87, 0.12);
  list-style: none;
}

.service-points li {
  position: relative;
  padding: 8px 14px 8px 30px;
  background: rgba(110, 45, 187, 0.05);
  border: 1px solid rgba(110, 45, 187, 0.12);
  border-radius: 8px;
  color: #1f0b38;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.service-points li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 8px;
  color: #6e2dbb;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .process-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-five .process-item:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 800px) {
  .process-five {
    grid-template-columns: 1fr 1fr;
  }

  .process-five .process-item:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .process-five .process-item:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .process-five,
  .service-points {
    grid-template-columns: 1fr;
  }

  .process-five .process-item {
    border-right: 0;
  }
}
