/* utils */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.solution {
  padding: clamp(72px, 28 * (100vw - 375px) / 1065 + 72px, 100px) 0 0;
}

.solution__tag {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #8067f5;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.solution__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(32px, 16 * (100vw - 375px) / 1065 + 32px, 48px);
  line-height: 100%;
  text-align: center;
  color: var(--text-dark);
  margin: 0 auto;
  margin-bottom: clamp(24px, 12 * (100vw - 375px) / 1065 + 24px, 36px);
  max-width: 880px;
}

.solution__list {
  display: grid;
  gap: clamp(8px, 8 * (100vw - 375px) / 1065 + 8px, 16px);
}

@media screen and (min-width: 768px) {
  .solution__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 900px) {
  .solution__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.solution__item {
  border-radius: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px);
  padding: 24px;
  background: #f6f7f9;
}

.solution__item-title-box {
  margin-bottom: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 4 * (100vw - 375px) / 1065 + 12px, 16px);
}

.solution__item-index {
  display: inline-flex;
  flex: 0 0 clamp(40px, 8 * (100vw - 375px) / 1065 + 40px, 48px);
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8 * (100vw - 375px) / 1065 + 40px, 48px);
  height: clamp(40px, 8 * (100vw - 375px) / 1065 + 40px, 48px);
  border-radius: 50%;
  background: linear-gradient(180deg, #f9efff 0%, #e3b3ff 100%);
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(16px, 4 * (100vw - 375px) / 1065 + 16px, 20px);
  line-height: 100%;
  color: var(--text-dark);
}

.solution__item-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(16px, 4 * (100vw - 375px) / 1065 + 16px, 20px);
  line-height: 100%;
  color: var(--text-dark);
  margin: 0;
}

.solution__item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #6e6f76;
}
/*# sourceMappingURL=solution.css.map */
