.faq__content {
    margin-bottom: 40px;
}
.faq_item {
    position: relative;
    border-bottom: 1px solid rgba(138, 180, 70, .2);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 12px 24px;
}
.faq_item:last-child {
    border-bottom: 0;
}
.faq .faq_item-toggle {
    position: absolute;
    right: 0;
    top: calc(50% - 15px);
}
.faq_item-question {
    font-size: 18px;
    line-height: 24px;
    color: #221F1E;
    margin: 15px 0;
    padding-right: 60px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.faq_item-answer {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s;
}
.faq_item-answer li {
    padding-left: 20px;
    position: relative;
}
.faq_item-answer li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 11px;
    left: 5px;
}
.faq_item--act .faq_item-answer {
    max-height: 1000px;
}
.faq_item--act svg {
    transform: rotate(90deg);
}

@media (max-width: 800px) {
    .faq_item--act .faq_item-question {
        margin-bottom: 0;
    }
}