
.section-faq {
    background:url(../img/faq/bg.png) no-repeat left center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 120px;
}

.section-faq h2,
.section-faq .h2 {
    margin-bottom: 48px;
}

.accordion {
    width: 748px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-height: 520px;
    overflow-y: scroll;

    direction: ltr; 
  scrollbar-width: thin; 
  scrollbar-color: #CB008C #D1D1D1; 
  padding-right: 44px; 
}
.accordion::-webkit-scrollbar {
  width: 8px;
}
.accordion::-webkit-scrollbar-track {
  background-color: #D1D1D1;
  border-left: 2px solid #D1D1D1;
}
.accordion::-webkit-scrollbar-thumb {
  background-color: #CB008C;
  border-radius: 4px;
}
.accordion::-webkit-scrollbar-thumb:hover {
  background-color: #a60072;
}

.accordion-item {
    overflow: hidden;
    direction: rtl;
border: 1px solid transparent;
  border-radius: 12px !important;
 padding: 0;
  border: none !important;
  background-clip: padding-box;
  position: relative;
  background: rgba(255, 255, 255, 0.78);
}
.accordion-item:not(:last-child) {
    margin-bottom: 12px;
}
.accordion-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  padding: 1px; 
  background: linear-gradient(to right, #D9D9D9, #CB008C);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}


.accordion-header {
    margin: 0;
}
.accordion-button {
    font-size: 1em;
    color: #CB008C;
    font-weight: 500;

    background: transparent;
     padding: 18px 22px 18px 44px;
     display: block;
     position: relative;

}

.accordion-button::after {
    width: 12px;
    height: 12px;
    background-image: url(../img/faq/plus.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transform: none;
    border: none;
    display: flex;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 22px;

}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/faq/plus-active.svg);
    transform: none;
}
.accordion-body {
    color: #fff;
font-weight: 300;
    background: #CB008C;
         padding: 18px 22px;
         position: relative;
}
.accordion-body:before {
    left: 22px;
    right: 22px;
    top: 0;
    position: absolute;
    height: 1px;
    background: #fff;
    content: '';
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #CB008C;
    box-shadow: none;
}
.accordion-button:focus {
    z-index: initial;
    box-shadow: none;
}


@media (max-width: 767px) {
  .accordion {
    max-height: 406px;
    padding-right: 20px;
  }
  .accordion-button {
    padding: 12px 22px 12px 44px;
}

}