.slideshow-section {

  .slide__content {
    color: var(--c-grey-medium);
    margin-bottom: 30px;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: inherit;
    }
  }

  .slide-buttons {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
  }
}

.features-box {
  background: #fdf3ed;
  padding: 30px 30px 10px;
  margin: 0 0 30px;

  @media (min-width: 768px) {
    display: flex;
    flex-wrap: wrap;
  }

  @media (min-width: 1024px) {
    margin-top: 40px;
    margin-bottom: 70px;
  }

  .item {
    margin-bottom: 20px;

    @media (min-width: 768px) {
      flex: 1 1 33.33%;
      padding: 0 10px;
    }

    .title {
      text-transform: uppercase;
      margin: 0 0 10px;

      @media (min-width: 768px) {
        margin: 0 0 20px;
      }
    }

    p {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.custom-button {
    background-color: #000;
    background-color: var(--c-grey-dark);
    background-size: 0;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    color: var(--c-white);
    display: inline-block;
    font-size: 14px;
    font-size: var(--fs-small);
    font-weight: 700;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 4px 8px 0;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    &:hover {
      background-color: #d8292f;
      background-color: var(--c-red);
      text-decoration: none;
    }
}