
  .accordion {
    list-style: none;
    list-style-type: none;
    width: 100%;
    border-top: 1px solid #d9e5e8;
  }
  .accordion li {
    border-bottom: 1px solid #d9e5e8;
    position: relative;
    /* padding: 5px 0; */
  }
  a h4 {
    margin: 0;
  }
  .accordion li a {
    padding: 18px 0;
  }
  .accordion li a:hover {
    background-color: #023f63;
    color: #d9e5e8;
    border: 1px solid #023f63;
    border-radius: 3px;
  }

  .accordion li p {
    display: none;
    padding: 10px 25px 30px;
    /* color: #6b97a4; */
  }
  .accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: 600;
    line-height: 3;
    font-size: 14px;
    font-size: 0.875rem;
    text-indent: 15px;
    user-select: none;
  }
  .accordion a:after {
    width: 8px;
    height: 8px;
    border-right: 1px solid #4a6e78;
    border-bottom: 1px solid #4a6e78;
    position: absolute;
    right: 10px;
    content: " ";
    top: 17px;
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .accordion a{
      color: #000000;
  }
  .accordion a:hover{
      text-decoration: none;
  }
  .accordion p {
    font-size: 16px;
  }
  
  a.active:after {
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  