.section-faqs {
    margin-bottom: 85px;
}
.faqs-wrapper {
    display: grid;
    row-gap: 12px;
}
.box_faq {
    position: relative;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
    padding: 21px 34px;
    border-radius: 15px;
    cursor: pointer;
}

.box_faq .label_faq {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* cursor: pointer; */
}
.box_faq .label_faq::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    height: 11px;
    width: 26px;
    background: url(../../img/icons/arrow.svg)no-repeat center;
    background-size: contain;
    transition: transform .2s ease-in-out;
}
.box_faq.active .label_faq::after {
    transform: rotate(178deg);
}
.box_faq .content_faq {
    position: relative;
    overflow: hidden;
    max-height: 0;
    transition: 0.3s;
}
.box_faq .content_faq p {
    padding: 20px;
    margin: 0;
}
.faq-title {
    font-weight: 500;
    font-size: 20px;
}

@media (max-width: 780px) {
    .content_faq {
        font-size: 14px;
    }
    .faq-title {
        font-size: 16px;
        padding-right: 25px;
    }
    .box_faq {
        padding: 16px;
    }
    .box_faq .label_faq::after {
        right: 18px;
        top: 12px;
    }
}