.benefits-component {
  min-height: 475px;
  font-size: 16px;

  .benefits-content-header {
    p {
      margin-bottom: 0;
    }
  }

  .section-title {
    font-family: "ITC Avant Garde Gothic W05 Bol", helvetica, arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }

  .accordion {
    .card {
      border: none;
      border-bottom: 1px solid #000 !important;
      border-radius: 0 !important;
    }
    .card-header {
      background: none;
      padding: 0.40rem 0;
      margin-bottom: 0 !important;
      border-bottom: none !important;

      &.active {
        font-family: ITC Avant Garde Gothic W05 Md,helvetica,arial,sans-serif;
        font-weight: 700;
        border-bottom: none;
      }
    }
    .card-body {
      p {
        margin-bottom: 0.5rem;
      }
    }

    .btn-link {
      text-decoration: none;
      color: #000;
      width: 100%;
      text-align: left;
      font-size: 16px;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0;

      &:hover {
        text-decoration: none;
        color: inherit;
      }

      &:focus {
        box-shadow: none;
        text-decoration: none;
      }
    }
    .collapse {
      padding: 0.5rem 0;
      &.show {
        padding: 0;
      }
    }
  }

  .benefits-content-media {
    position: relative;
    width: 100%;

    .benefits-media {
      position: absolute;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 1;
      width: 727px;

      &.show {
        opacity: 1;
        z-index: 2;
      }
    }
  }

  @media (max-width:575px) {
    .benefits-content-media {
      overflow: hidden;
      min-height: 255px;

      & .benefits-media {
        max-width: 92%;
        height: auto;
        top: 0;
      }
    }
  }

}
