.lp__additional-features {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 30px 0 40px 0;

  .container {
    .title {
      h4 {
        font-size: 24px;
        text-align: center;
        font-weight: 900;
        color: var(--brand-grey-dark);
        margin-bottom: 20px;
      }
    }

    .lp_features {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      margin-bottom: 25px;
      max-width: 800px;
      left: 50%;
      transform: translateX(-50%);

      .feature {
        flex-basis: 33%;
        width: 100%;

        p {
          position: relative;
          display: inline-block;
          font-size: 16px;
          font-weight: 400;
          color: var(--brand-grey-dark);
          padding-left: 20px;
          margin-bottom: 15px;

          &::before {
            position: absolute;
            content: "";
            left: 0;
            top: 6px;
            width: 11px;
            height: 8px;
            background: url(../../../img/icons/linea/arrows_check-logo-gray.svg) no-repeat center;
            background-size: contain;
          }
        }
      }
    }

    .subtitle {
      h5 {
        font-size: 15px;
        font-weight: 400;
        color: var(--brand-grey-dark);
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
      }
    }

    a {
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }
  }
}

@media screen and (max-width: 768px) {
  .lp__additional-features {
    .container {
      .lp_features {
        .feature {
          flex-basis: 100%;

          p {
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 10px;
          }
        }
      }
    }
  }
}