.faq {
    margin: 80px 0;
}
.faq_item {
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .10);
    cursor: pointer;
    padding: 8px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.faq_item:last-child {
    border-bottom: 0;
}
.faq .faq_item-toggle {
    position: absolute;
    right: 0;
    top: calc(50% - 15px);
}
.faq_item-question {
    padding: 5px 60px 5px 0;
    position: relative;
    text-transform: uppercase;
}
.faq_item-answer {
    max-height: 0;
    transition: max-height .7s;
    overflow-y: hidden;
}
.faq_item--act .faq_item-answer {
    max-height: 500px;
}
.faq_item svg {
    transition: all .7s;
}
.faq_item--act svg {
    transform: rotate(90deg);
    opacity: .5;
}

@media screen and (max-width: 800px) {
    .faq {
        margin: 40px 0;
    }
    .faq_item {
        padding: 8px;
    }
    .faq_item--act .faq_item-answer {
        max-height: 1000px;
    }
    .faq_item--act .faq_item-question {
        margin-bottom: 0;
    }
}