.features_block {
  padding-bottom: 120px;
}
.features_block h2 {
  font-size: 36px;
  line-height: 54px;
  font-weight: 600;
  margin-bottom: 100px;
}
.features_block h2 strong {
  background: linear-gradient(90deg, #4a3bbe 0%, #be73fa 77.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 54px;
  font-weight: 600;
}
.features_block .items_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.features_block .items_wrapper .item {
  padding: 32px;
  background-color: #f7f7f8;
  border-radius: 16px;
}
.features_block .items_wrapper .item h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 24px;
  font-weight: 700;
}
.features_block .items_wrapper .item p {
  min-height: 112px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.features_block .items_wrapper .item p.has_button {
  min-height: auto;
  margin-bottom: 0;
  min-height: 84px;
}
.features_block .items_wrapper .item .btn_holder {
  border-radius: 6px;
  background-color: #614efa;
  display: table;
  margin: 18px 0;
}
.features_block .items_wrapper .item .btn_holder:hover {
  background-color: #4a3bbe;
}
.features_block .items_wrapper .item .btn_holder a {
  font-size: 14px;
  padding: 8px 10px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .features_block .items_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .features_block .items_wrapper .item .btn_holder {
    margin: 31px 0;
  }
  .features_block .items_wrapper .item .img_wrapper img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .features_block {
    padding-bottom: 60px;
  }
  .features_block h2 {
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 48px;
  }
  .features_block h2 strong {
    font-size: 26px;
    line-height: 42px;
  }
  .features_block .items_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .features_block .items_wrapper .item .img_wrapper img {
    width: 100%;
    height: auto;
  }
  .features_block .items_wrapper .item p {
    min-height: unset;
  }
}