.features {
  padding: 40px 0;
}
.features__content {
  align-items: center;
  display: flex;
  min-height: 100%;
}
.features__wrapper {
  display: flex;
  gap: 30px;
  max-width: 1025px;
  margin: 0 auto;
}
.features__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--features-item-bg, var(--block-bg, #211442));
  border-radius: 10px;
  padding: 20px 10px;
  color: var(--text-color, #fff);
}
.features__item--interactive {
  cursor: pointer;
}
.features__media {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.features__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.features__image {
  display: block;
  height: auto;
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

@media screen and (max-width: 992px) {
  .features__item {
    min-height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .features__wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .features__item {
    flex: 0 0 48%;
    width: 48%;
  }
}
@media screen and (max-width: 568px) {
  .features__item {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=features.css.map */
