.widgets-faq{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
}
.widgets-faq .questions{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 0px 10px 25px 0px rgba(104, 104, 104, 0.10);
}
.widgets-faq .questions .question{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #EBEBEB;
    min-height: 80px;
    cursor: pointer;
}
.widgets-faq .questions .question .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.widgets-faq .questions .question.opened .title img{
    transform: rotate(90deg);
}
.widgets-faq .questions .question .answer{
    width: calc(100% - 48px);
    color: #625B71;
    display: none;
    font-size: 14px;
    line-height: 20px;
}
.widgets-faq .questions .question.opened .answer{
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px){
    .widgets-faq .questions .question .title{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1px;
    }
    .widgets-faq .questions .question .answer{
        font-size: 12px;
        line-height: 16px;
    }
}