.feature__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  align-items: stretch;
}

.feature__item {
  width: 100%;
  border-radius: 20px;
  background: #f5f7fc;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.feature__item-padding {
  padding: 48px 48px 0 48px;
}

.feature-header p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: var(--h2-blog-lh);
color:#333338;
}
.adapt-cards__card .adapt-cards__arrow-btn svg .colored_theme_svg {
  stroke-opacity: 50%;
}
.adapt-cards__card:hover .adapt-cards__arrow-btn svg {
  opacity: 100%;
  color:var(--brand-blue);
}
.adapt-cards__card:hover .adapt-cards__arrow-btn svg path{
  fill:var(--brand-blue);
}
.feature-header span {
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
}
.feature-header li {
  list-style: disc;
  margin-bottom: 8px;
  left: 20px;
  position: relative;
}
.feature-header a {
  text-decoration: underline;
}
.features-buttons {
  padding-top: 24px;
  padding-bottom: 48px;
}

.feature__image {
  display: grid;
}

.feature__image img {
  width: 100%;
  align-self: end;
}

.features--screen .big-text,
.feature-header span {
  color: var(--text-color) !important;
}


@media (min-width: 1280px) and (max-width: 1400px) {
  .feature__block {
    display: grid;
    grid-template-columns: repeat(2, minmax(600px, 1fr));
  }
}
@media (min-width: 900px) and (max-width: 1280px) {
  .feature__block {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .feature__block {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 991px) {
  .feature__image img {
    max-width: 100%;
  }
  .features-buttons{
    padding: 20px 0 32px 0;
  }
  .feature-header p{
    font-size: 20px;
  }
  .feature-header li, 
  .feature-header span,
  .block__body .block__subtitle.text-centered.h2.subtitle--centered p,
  .info-decor__info .big-text{
    font-size: 15px;
  }
  .features-buttons a{
    font-size: 13px;
  }
  .block__container h2{
    font-size: 28px;
  }
  .feature__block{
    gap: 12px;
  }
  .solution--solution__wrap.solution--new__wrap {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .feature__block {
    grid-template-columns: 1fr;
  }

  .feature__item-padding {
    padding: 28px 28px 0 28px;
  }

}
h2{
color: #333338;
}