.faq-item {
    background: var(--light);
    padding: 1.5rem;
    position: relative;
}
.faq-item+.faq-item {
    margin-top: 0.875rem;
}
.faq-item:not(.opened) {
    cursor: pointer;
}
.faq-item::before {
    width: 1.5rem;
    height: 0.25rem;
    background: rgba(54, 53, 53, 0.78);
    content: "";
    position: absolute;
    right: 2rem;
    top: 2.6rem;
}
.faq-item:not(.opened)::after {
    width: 0.25rem;
    height: 1.5rem;
    background: rgba(54, 53, 53, 0.78);
    content: "";
    position: absolute;
    right: 2.6rem;
    top: 2rem;
}
.faq-item__question {
    font-weight: 900;
    padding-right: 3rem;
    font-size: 120%;
}
@media(min-width: 768px){
    .faq-item__question {
        font-size: 140%;
    }
}
.faq-item__index {
    color: var(--primary);
}
.faq-item__answer {
    font-size: 1rem;
    line-height: 1.375rem;
    max-height: 0;
    overflow: hidden;
    transition: all ease 0.5s;
}
.faq-item.opened .faq-item__answer {
    max-height: 500px;
    padding: 1rem 0;
}