.section__faq {
  padding: 30px 0;
}
.section__faq__body {
  border: none;
  flex-direction: column;
  gap: 30px;
}
.section__faq__body::after {
  background: none;
}
.section__faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 1em auto 2em auto;
}
.section__faq__head img {
  padding: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%), #d9d9d9;
}
.section__faq__title {
  color: #0e0637;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.32px;
}
.section__faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  padding: 30px 20px;
  border-radius: 32px;
  border: 1px solid #e9f0fb;
  background: #fff;
}
.section__faq__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.section__faq__item img {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e9f0fb;
  background: #f9fbfe;
}
.section__faq__item__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section__faq__item__title {
  color: #0e0637;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}
.section__faq__item__text {
  color: #717184;
  font-size: 16px;
  line-height: 155%;
  text-wrap: pretty;
}
@media (max-width: 600px) {
  .section__faq__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
  .section__faq__list {
    row-gap: 50px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 14px;
    border: none;
  }
  .section__faq__item {
    flex-direction: column;
    gap: 15px;
  }
  .section__faq__item img {
    padding: 8px;
  }
  .section__faq__item__inner {
    gap: 8px;
  }
  .section__faq__item__title {
    font-size: 14px;
  }
  .section__faq__item__text {
    font-size: 12px;
  }
}
