.about-sys{
  overflow: hidden;
}
.about-sys__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-sys__image {
  aspect-ratio: 37/45;
  max-width: 100%;
}

.about-sys__content {
  max-width: 592px;
  width: 100%;
  padding: 40px 32px 41px 32px;
  box-sizing: border-box;
  background-color: #fff;
}

.about-sys__content h2 {
  margin: 0 0 20px 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 127%;
  color: #282828;
  letter-spacing: inherit;
}

.about-sys__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #282828;
  max-width: 100%;
  padding-right: 0;
  margin: 0;
}

.about-sys__content p+p {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .about-sys__row {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 861px) {
  .about-sys__content {
    padding: 25px 20px;
  }
}