.mod-faq {
  h2,
  .faq-content {
    /* text-align: center; */
    @media (width < 768px) {
      padding: 0 20px;
    }
  }

  h2:first-of-type {
    margin: 0;
  }

  .faq-content {
    margin-bottom: 50px;
  }

  .faq-questions {
    margin: 0;
    list-style: none;

    &:not(.accordion) {
      h3 {
        &:before {
          content: 'Q';
          font-size: 54px;
          line-height: 1em;
          font-weight: var(--fw-regular);
          font-family: var(--secondary-font);
          position: absolute;
          padding-right: 11px;
          /* border-right: 2px solid var(--light-color); */
          left: 14px;
          top: 33px;
          transform: translateY(-25%);
        }
      }
    }

    li {
      background-color: transparent;
      margin-bottom: 20px;
    }

    h3 {
      font-size: 22px;
      line-height: 1.2em;
      font-weight: var(--fw-bold);
      font-family: var(--primary-font);
      text-transform: none;
      /* border-bottom: 2px solid var(--light-color); */
      position: relative;
      padding: 33px 70px 0 86px;
      margin-top: 0;
      text-align: left;
    }

    .faq-answer {
      padding: 0 70px 10px 86px;
      position: relative;
      &:before {
        /* Letter Style */
        /* content: 'A';
        font-size: 54px;
        line-height: 1em;
        font-weight: var(--fw-regular);
        font-family: var(--secondary-font);
        display: block;
        margin-bottom: 10px;
        position: absolute;
        left: 14px;
        top: 26px;
        transform: translateY(-25%); */

        /* Full Word Style */
        /* content: 'Answer:';
        font-size: 22px;
        line-height: 1.2em;
        font-weight: var(--fw-bold);
        display: block;
        margin-bottom: 10px; */
      }
    }
  }
}

/*----------  Flexible Accordion Menu  ----------*/

.accordion {
  width: 100%;
  li {
    border-top: 1px solid var(--primary-color);
    margin-left: 0px !important;
    padding: 0;
    position: relative;
    width: 100%;
    &:before {
      content: 'Q';
      font-size: 54px;
      line-height: 1em;
      font-weight: var(--fw-regular);
      font-family: var(--secondary-font);
      position: absolute;
      padding-right: 11px;
      /* border-right: 2px solid var(--light-color); */
      left: 14px;
      top: 33px;
      transform: translateY(-25%);
    }

    h3 {
      font-family: var(--secondary-font);
      /* margin-top: 30px; */
      margin-bottom: 0;
      /* padding-bottom: 10px; */
      /* padding-left: 90px; */
      position: unset;
      &:before, &:after {
        background-color: var(--primary-color);
        content: '';
        height: 1px;
        width: 16px;
        position: absolute;
        right: 20px;
        top: 40px;
        transition: all 0.3s;
      }
      &:after {
        transform: rotate(-90deg);
      }
      &.accordion-open {
        &:after {
          transform: rotate(0deg);
        }
      }
    }
    div {
      cursor: pointer;
      /* padding: 0 80px 0 0; */
      margin: 0;
      &.accordion-slider {
        display: none;
        /* padding-bottom: 32px; */
        /* padding-left: 90px; */
      }
    }
  }
}