.acc-wrapper {
  margin-bottom: -1rem;
}
.acc-wrapper img {
  max-width: 240px;
}
.acc-wrapper .acc-item {
  background-color: #fff;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-bottom: 3px solid var(--bs-gray-300);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  color: #212529;
  transition: all 0.3s ease-in-out;
}
.acc-wrapper .acc-item:hover {
  color: var(--bs-primary);
  border-bottom-color: var(--bs-primary);
}
.acc-wrapper .acc-item .acc-title {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: space-between;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 0;
  text-transform: uppercase;
}
.acc-wrapper .acc-item .acc-title::after {
  flex-shrink: 0;
  width: auto;
  transition: all 0.3s ease-in-out;
  content: "\f107";
  font-family: FontAwesome;
  right: 1.25rem;
  line-height: 1;
  transform: rotate(360deg);
}
.acc-wrapper .acc-item .acc-title .title-faq {
  display: inline-block;
  margin-bottom: 0;
}
.acc-wrapper .acc-item .acc-title .title-faq span {
  font-weight: 700;
}
.acc-wrapper .acc-item .acc-content {
  display: none;
}
.acc-wrapper .acc-item .acc-content p {
  margin: 0 auto;
}
.acc-wrapper .acc-item .acc-content ol {
  padding-left: 1rem;
}
.acc-wrapper .acc-item .acc-content .list-group {
  margin: -0.25rem -1.375rem -1rem -1.375rem;
}
.acc-wrapper .acc-item .acc-content .list-group .list-group-item {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.acc-wrapper .acc-item.active .acc-content {
  display: block;
}
.acc-wrapper .acc-item.open {
  background-color: #fff;
  color: var(--bs-primary);
  border-bottom-color: var(--bs-primary);
}
.acc-wrapper .acc-item.open a {
  color: var(--bs-primary);
}
.acc-wrapper .acc-item.open a:hover {
  color: #212529;
}
.acc-wrapper .acc-item.open .acc-title {
  color: var(--bs-primary);
  padding-bottom: 1rem;
  font-weight: 700;
}
.acc-wrapper .acc-item.open .acc-title:hover {
  color: #212529;
}
.acc-wrapper .acc-item.open .acc-title:hover > .acc-item.open {
  border-bottom-color: var(--bs-primary);
}
.acc-wrapper .acc-item.open .acc-title::after {
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}

@media only screen and (max-width: 991px) {
  .acc-wrapper .acc-item .acc-content p {
    width: 100%;
  }
  .acc-wrapper .acc-item .acc-title {
    font-size: 18px;
  }
}