.faq__list{
    list-style-type: none!important;
    margin: 0;
    position: relative;
    padding: 0!important;
}
.faq_li {
    flex-direction: column;
    gap: 0!important;
    margin-top: 48px;
}
.faq__item::before{
    content: none!important;
}
.faq__item{
    margin-bottom: 20px!important;
    position: relative;
    border: 1px solid #F5D6D8;
    border-radius: 10px;
    overflow: auto;
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    gap: 0!important;
    background-color: var(--boxed-color);
    padding-left: 0!important;
}
.faq__item.visible,
.faq__item:hover{
    box-shadow: 0px 5px 28px 0px #71001E2E;
}
.faq__question{
    position: relative;
    padding: 15px 24px;
    transition: all 500ms ease;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 76px;
    width: 100%;
}
.faq__arrow{
    width: 24px;
    min-width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}
.faq__question.active .faq__arrow{
    transform: rotate(180deg);
}
/* .faq__arrow::before{
    content: "";
    display: block;
    width: 2px;
    height: 14px;
    background-color: var(--button-color);
    position: absolute;
    transition: all .5s ease;
}
.faq__arrow::after{
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--button-color);
} */
.faq__question > span {
    /* min-height: 56px; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.faq__question.active .faq__arrow::before,
.faq__question:hover .faq__arrow::before{
    opacity: 0;
    visibility: hidden;
}
.faq__content{
    position: relative;
    display: none;
    padding: 10px 24px;
}
.faq__answer{
    position: relative;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 24px 24px 0;
    border-top: 1px solid #F5D6D8;
}
.faq__item:last-of-type{
    margin-bottom: 0!important;
}
.faq_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 32px;
}