.accordion {
  .accordion-item {
    border-bottom: 1px solid black;
    button[aria-expanded='true'] {
      border-bottom: 1px solid #959ca1;
    }
  }
.fa-icon{
display: inline-block;
            position: absolute;
            top: 18px;
            right: 0;
            width: 22px;
            height: 22px;
color: #1c437d;
}
button[aria-expanded='true'] {
    color: #1c437d;
    .fa-icon {
              rotate:180deg;
    }
}
  button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    &:hover, &:focus {
      cursor: pointer;
      color: #1c437d;
      &::after {
        cursor: pointer;
        color: #1c437d;
        border: 1px solid #1c437d;
      }
    }
    .accordion-title {
      padding: 1em 1.5em 1em 0;
    }
    
  }
  button[aria-expanded='true'] {
    color: #1c437d;
    + .accordion-content {
      opacity: 1;
      max-height: fit-content;
      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: 1rem;
      font-weight: 300;
      margin: 2em 0;
    }
  }
}
