.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.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{
    position: relative;
    padding: 25px 60px 25px 25px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    color: var(--basic-company-text);
    line-height: 1.2;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 15px;
    transition: all .3s ease;
}
.faq__question.active {
    background: #fff;
    color: var(--basic-company-text);
}
.faq__question.active .faq__arrow{
    transform: rotate(-90deg);
}
.faq__content{
    position: relative;
    display: none;
    padding: 0px 60px 16px 16px;
}
.faq__answer{
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}
.faq__answer ul:last-child, .faq__answer ol:last-child {
    margin-bottom: 0;
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}
.faq__item:focus {
    background: #F7F7FB;
    border: 1px solid var(--basic-company);
}
.faq__item:focus .faq__question {
    background: #F7F7FB;
}
.faq__item.faq__bg {
    border-color: var(--basic-company);
    background: #F7F7FB;
}
.faq__item.faq__bg .faq__question{
    background: #F7F7FB;
}