.about {
  padding: 70px 0 100px;
}

.about__wrapper {
  display: flex;
  flex-flow: column;
  gap: 40px;
  align-items: center;
}

.about__inner {
  margin-top: -10px;
  display: flex;
  align-items: center;
  width: 100%;
  flex-flow: column;
  gap: 24px;
}
.about__title {
  font-weight: 700;
  font-size: 36px;
  color: #192059;
}
.about__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #192059;
  max-width: 818px;
}
.about__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  width: 100%;
  column-gap: 33px;
  row-gap: 30px;
}
.about__item {
  display: flex;
  border: 1px solid rgba(25, 32, 89, 0.2);
  border-radius: 8px;
  padding: 24px 24px 24px 18px;
  width: max-content;
  gap: 16px;
  align-items: flex-start;
}
.about__item-icon {
  max-width: 36px;
  overflow: hidden;
  border-radius: 4px;
}
.about__item-icon img {
  object-fit: contain;
}
.about__item-text-block {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.about__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #192059;
}
.about__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #192059;
}

@media (width <= 991px) {
  .about__title {
    text-align: center;
  }
  .about__list {
    flex-flow: column;
  }
  .about__item {
    max-width: 100%;
    width: 100%;
  }
  .about__item-text br,
  .about__item-title br {
    display: none;
  }
}

@media (width <= 479px) {
  .about__text {
    font-size: 16px;
  }
  .about {
    padding: 60px 0;
}