.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq_list {
    max-width: 960px;
    width: 100%;
}
.faq__item{
    width: 100%;
    background-color: var(--basic-company);
    margin-bottom: 5px;
    padding: 0 40px;
    border-radius: 2px;
    position: relative;
    transition: all .4s ease;
    border: 1px solid var(--basic-company)
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question{
    padding: 25px 0;
    text-transform: none;
    position: relative;
    transition: all .4s ease;
    cursor: pointer;
    gap: 20px;
    line-height: 1.2;
    min-height: 74px;
    color: var(--second-company-text);
}
.faq__question.active {
    color: var(--basic-company)
}
.question_text {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 700;
    transition: all .3s;
    line-height: 1;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 15px;
    transition: all .3s ease;
}
.faq__item.visible {
    background: transparent;
    color: var(--basic-company);
}
.faq__question.active .faq__arrow{
    transform: rotate(-90deg);
}
.faq__content{
    padding: 0 !important;
    border-bottom: none;
    position: relative;
    display: none;
}
.faq__answer{
    font-size: 16px;
    font-weight: 400;
    opacity: .8;
    padding: 24px 0;
    position: relative;
    line-height: 1.5;
    border-top: 1px solid #00000029;
}
.faq__question.active .see_more_plus {
    transform: rotate(180deg);
}
.see_more_plus {
    transition: all .4s ease;
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}