.faq {
    margin-bottom: 0 !important;
}
.accord__contaner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
}
.accord__contaner > * {
}
.accord__card {
    cursor: pointer;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: var(--mar-32);
    width: 100%;
}
.accord__card_title {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}
.accord__card_title h3 {
    margin-bottom: 0;
}

.accord__card_title_arrow {
    display: none;

    /* max-height: 22px;
    max-width: 22px;
    min-height: 22px;
    min-width: 22px;
    width: 100%;
    height: 100%;

    background-color: var(--accent1);
    border-radius: 100%; */
}

.faq .accord__card_title_arrow {
    /* display: none; */
    display: block !important;
    max-height: 44px;
    max-width: 44px;
    min-height: 44px;
    min-width: 44px;
    width: 100%;
    height: 100%;
    background: url(/assets/faqArrow.svg) center/cover no-repeat;
}
/* .accord__card_title_arrow::after,
.accord__card_title_arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--white);
}
.accord__card_title_arrow::before {
    width: 60%;
    height: 1px;
}
.accord__card_title_arrow::after {
    width: 1px;
    height: 60%;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.accord__card_title_arrow.active::after {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
} */

.accord__card_content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.accord__card_content p {
    margin-top: var(--mar-s-s);
    margin-bottom: 0;
    height: 100%;
    font-size: 14px;
}
.faq {
}
@media (max-width: 768px) {
    .accord__contaner {
        flex-direction: column;
    }
}
