.external-features-section {
  background-color: #593020;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 24px 20px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 24px;
  box-shadow: 0px 9px 12px -3px rgba(0, 0, 0, 0.08), 0px 3px 4.5px -1.5px rgba(0, 0, 0, 0.03);

  img {
    height: auto;
    width: 100%;
  }

  .ef-heading {
    color: #fff;
    font-size: 24.5px;
    line-height: 100%;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .ef-description * {
    color: #fff;
    font-size: 15.5px;
    line-height: 150%;
  }

  .ef-description p {
    margin-bottom: 10px;
  }

  .button-primary {
    background: #fff;
    color: #593020;
    font-weight: 600;
    text-transform: uppercase;
  }

  .button-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .feature-icon {
    max-width: 18px;
  }

  .feature-name {
    color: #fff;
    font-size: 12.5px;
    line-height: 150%;
    margin: 0;
  }

  @media (min-width: 992px) {
    padding: 48px 30px 38px;
    margin-bottom: 112px;

    .inner {
      display: flex;
      gap: 50px;
      align-items: center;
      padding: 0 20px;

      > div {
        width: 50%;
      }
    }

    .button-wrapper {
      padding-top: 0;
    }

    .ef-heading {
      font-size: 32px;
      margin-bottom: 24px;
    }

    .features-list {
      flex-wrap: wrap;
      flex-direction: row;
      gap: 12px;

      > .feature-item:first-child {
        width: 100%;
      }

      > .feature-item:nth-child(2) {
        width: 59%;
        justify-content: end;
      }

      > .feature-item:nth-child(3) {
        width: 38%;
        justify-content: start;
      }
    }

    .feature-icon {
      max-width: 22px;
    }

    .ef-description * {
      font-size: 18px;
    }

    .e-right-inner {
      max-width: 535px;
      margin-left: auto;
    }

    .ef-description p {
      margin-bottom: 16px;

      strong {
        font-size: 20px;
      }
    }

    .feature-name {
      font-size: 14px;
    }

  }

}