    .accordion-item {
        border-bottom: none;
        background-color: #000000;
        margin: 10px;
        border-radius: 5px;
    }
    .container-faq {
    width: 50%;
    margin: 0 auto;
}
.accordion {
  .accordion-item {
    button[aria-expanded='true'] {
      border-bottom: 1px solid $blue;
    }
  }
  .accordion-item:last-child {
        border: none
    }
.accordion-item button {
    position: relative;
    display: block;
    text-align: left;
    font-weight: 700;
    width: 100%;
    padding: 1.5em 30px;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
   
    &:hover, &:focus {
      cursor: pointer;
      color: $blue;
      &::after {
        cursor: pointer;
        color: $blue;
        border: 1px solid $blue;
      }
    }
    .accordion-title {
      padding: 1em 1.5em 1em 0;
      color: #ffffff;
      font-size: 2rem;
      font-weight: 400;
    }
    .icon-faq {
      display: inline-block;
      position: absolute;
      top: 22px;
      right: 15px;
      width: 22px;
      height: 22px;
      border-radius: 22px;
    
    
      &::before {
        display: block;
        position: absolute;
        content: '';
        top: 9px;
        left: 5px;
        width: 10px;
        height: 2px;
        background: #fff;
      }
      &::after {
        display: block;
        position: absolute;
        content: '';
        top: 5px;
        left: 9px;
        width: 2px;
        height: 10px;
        background: #fff;
      }
    }
  }
  .accordion-item button[aria-expanded='true'] {
    color: $blue;
    .icon {
      &::after {
        width: 0;
      }
    }
    + .accordion-content {
      opacity: 1;
      max-height: 11em;
      transition: all 200ms linear;
      will-change: opacity, max-height;
    }
  }
  .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    p {
      font-size: 1.7rem;
      font-weight: 300;
      margin: 2em 0;
      color: #fff;
    }
  }
}

.accordion-item button {
    padding: 0 10px;
}

.accordion-content p {
    padding-left: 30px;
}