.accordion {
    background: none;
    box-shadow: none;
    border: none;
 }
 .accordion::after {
     display: none;
 }
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #F05654;
  }
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #00498E;
    /* font-size: 1.15rem; */
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    text-transform: uppercase;
  }
  .accordion button img {
      width: 20px;
      margin-bottom: 0px;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color:#F05654;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color:#F05654;
    border: 1px solid#F05654;
  }
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded=true] {
    color:#F05654;
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 12em; 
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    margin-bottom: 30px;
    margin-top: 15px;
    overflow-y: scroll;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content li {
        font-size: 16px;
      font-weight: 300;
      line-height: 25px;
      border: none;
      padding: 5px;
      text-align: left;
      list-style-type: square;
      color: #7a7a7a;
  }
  .accordion .accordion-content ul {
      margin: 1em 0 1em 5%;
      display: block;
      list-style-type: square;
  }
  
  @media (max-width: 992px) {
      .accordion button[aria-expanded="true"] + .accordion-content {
          overflow-y: scroll;
      }
  }