.cart-features-container {
  .features-wrapper {
    max-width: 1440px;
    margin-inline: auto;
  }
  padding-top: 10.8em;
  font-size: calc(1 * 62.5%);
  .feature-item {
    max-width: 60.9em;
    margin-left: auto;
    margin-right: 15em;
    display: flex;
    gap: 2.2em;
    img {
      width: 3.6em;
      height: 3.6em;
    }
    h3 {
      font-size: 3em;
      line-height: 1;
    }
    .content p {
      font-weight: 400;
      font-size: 2em;
      line-height: 1.14;
      margin-bottom: 3em;
      margin-top: 0.9em;
    }
  }
}

@media only screen and (max-width: 1440px) and (min-width: 850px) { 
  .cart-features-container {
    font-size: calc(10 * 100vw / 1440);
  }
}
@media only screen and (max-width: 850px) { 
  .cart-features-container {
    padding-top: 0;
    .features-wrapper {
      backdrop-filter: brightness(0.7);
      padding-top: 10em;
    }
    .feature-item {
        max-width: unset;
        margin-inline: 20px;
        display: flex;
        gap: 1.2em;
      img {
        width: 2.6em;
        height: 2.6em;
      }
      h3 {
        font-size: 2em;
        line-height: 1;
      }
      .content p {
        font-weight: 400;
        font-size: 1.5em;
        line-height: 1.24;
        margin-bottom: 1.3em;
        margin-top: 0.5em;
      }
    }
  }
}