.faq_block {
    margin-bottom: 70px;
}
.faq_block h2{
    font-weight: 600;
    font-size: 30px;
    color: #151515;
    margin-bottom: 41px;
    margin-top: 0;    
}
.faq-item {
    position: relative;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}
.faq-item:hover {
    background: #eee;
}
.faq-item-active {
    background: #eee;
    border-bottom: 3px solid #fff;
    border-bottom: 2px solid #fff;
    box-shadow: 0 4px 7px 0 #eee;
}
.faq-question-text {
    position: relative;
    border-top: 1px solid rgba(238, 238, 238, 0.93);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
}
.faq-question-text::after {
    content: '';
    width: 36px;
    height: 36px;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    background-color: #541076;
    position: absolute;
    right: 20px;
    top: 0;
    background-image: url(../images/sourse/arrow_white.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    transition: background-color .3s linear, rotate .3s linear;
    -moz-transition: background-color .3s linear, rotate .3s linear;
    -webkit-transition: background-color .3s linear, rotate .3s linear;
    -o-transition: background-color .3s linear, rotate .3s linear;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}
.faq-answer-text {
    opacity: 0;
    height: 0;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    overflow: hidden;
}
.faq-item .fade-in {
    opacity: 1;
    height: auto;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 40px;
    display: block;
    padding-left: 20px;
}
.services_main_item_active .faq-question-text::after {
    background-color: #276652;
    rotate: 180deg;
}