.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 15px;
    position: relative;
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__question{
    background: #F9FAFC;
    position: relative;
    padding: 20px 60px 20px 30px;
    transition: all 500ms ease;
    cursor: pointer;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #262727;
    text-transform: initial;
}
.faq__arrow{
    position: absolute;
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    right: 30px;
    left: initial;
    transition: all .3s ease;
}
.faq__question.active {
    background: #F9FAFC;
    color: initial;
}
.faq__question.active .faq__arrow{
    transform: rotate(-180deg);
}
.faq__content{
    background: #F9FAFC;;
    position: relative;
    display: none;
    padding: 0 30px 20px 30px;
    border-bottom-width: 0px;
}
.faq__answer{
    position: relative;
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}
