.faq-block{
    padding: 50px 0;
}
.faq-block__title{
    padding-top: 17px;
}
.faq-item{
    position: relative;
}
.faq-item:before{
    content: '';
    transition: all .3s;
    position: absolute;
    background: #F0F5F5;
    left: -15px;
    right: -5px;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;

}
.faq-item.active{
    margin-bottom: 15px;
}
.faq-item:hover:before,
.faq-item.active:before{
    opacity: 1;
    border-radius: 8px;
}
.faq-item.active:before{
    bottom: -15px;
}
.faq-item__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px 17px 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.faq-item__top:after {
    content: "";
    width: 0.45em;
    height: 0.45em;
    border: initial;
    border-right: 0.15em solid #000;
    border-top: 0.15em solid #000;
    transform: rotate(135deg);
    position: relative;
    transform-origin: 50% 50%;
    flex-shrink: 0;
    top: 50%;
    transition: all .5s;
}
.faq-item.active .faq-item__top:after {
    transform: rotate(135deg) scale(-1);
}
.faq-item__top .faq-item__question,
.faq-item__bottom{
    font-size: 20px;
    line-height: 30px;
    transition: all .5s;
}
.faq-item__top .faq-item__question{
    width: calc(100% - 20px);
}
.faq-item.active .faq-item__top .faq-item__question {
    color: #141414;
    font-family: 'Ermilov', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    transition: all .5s;
}
.faq-item__bottom {
    overflow: hidden;
    background: #F0F5F5;
    padding: 0 20px 0 0;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    position: relative;
    z-index: 1;
}
.faq-border{
    display: flex;
    width: 100%;
    height: 1px;
    margin: 48px 0;
    background-color: #93A6A6;
}
@media (max-width:768px) {
    .faq-item:before{
        right: 0;
        left: 0;
    }
    .faq-item__top{
        padding: 17px 18px 17px 10px;
    }
    .faq-item__bottom {
        padding: 0 20px 0 10px;
    }
    .faq-border {
        display: none;
    }
    .faq-block__row{
        margin-bottom: 20px;
    }
    .faq-block{
        padding-top: 0;
    }
    .faq-item.active .faq-item__top .faq-item__question,
    .faq-item__top .faq-item__question{
        font-size: 16px;
        line-height: 1.4;
    }
    .faq-item__bottom{
        font-size: 14px;
        line-height: 1.4;
    }
    .faq-block__title {
        padding-top: 0;
        margin-bottom: 15px;
    }
}
