.faq-right img {
    width: 100%;
    position: sticky;
    top: 5%;
}
.faq-left h4 {
    color: #2f3241;
    font-size: 31px;
    line-height: 1.25;
    font-family: 'Poppins-Bold';
    margin-bottom: 15px;
}
.faq-left h6 {
    color: #515151;
    font-size: 16px;
    line-height: 1.5;
    /* font-family: 'roboto-Medium'; */
}
.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 #e8e8e8;
  } */
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000;
    /* font-size: 1.15rem; */
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    /* text-transform: uppercase; */
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    padding-right: 30px;
  }
  .accordion button img {
      width: 20px;
      margin-bottom: 0px;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color:#000;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color:#000;
    border: 1px solid#000;
  }
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  .accordion button .icon {
    /* display: inline-block; */
    position: absolute;
    top: 9px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: rgba(0,0,0,.05);
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
  }
  .ac_arrow {
    position: relative;
    transition: .3s all;
    transform: rotate(90deg);
    width: 12px;
  }   
  /* .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] .ac_arrow {
    transform: rotate(-90deg);
  }
  .accordion button[aria-expanded=true] {
    color:#000;
  }
  .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: 5px;
    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 p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    color: #000000c9;
  }
  .accordion .accordion-content p a {
    color: #3a5380;
  }
  .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;
  }
  .accordion .accordion-item {
    margin-bottom: 15px;
  }
  

  @media (max-width: 600px) {
    .faq-left {
      padding: 0px;
    }
    .accordion button .accordion-title {
      padding: 1em 2.5em 1em 0;
    }
    .accordion button {
      font-size: 15px;
    }
    .accordion .accordion-content p {
      font-size: 14px;
    }
    .faq-left h4 {
      font-size: 22px;
    }
    .faq-bg {
      background-position: center;
    }
  }

  @media (max-width: 992px) {
      .accordion button[aria-expanded="true"] + .accordion-content {
          overflow-y: scroll;
      }
      .faq-bg {
        background-image: linear-gradient(rgba(255, 255, 255, 0.934), #fff), url(../images/faq-right.jpg);
        background-size: cover;
      }
  }