.vstep-faq{
    max-width: 853px;
    margin: 0 auto;
    padding: 60px 15px 50px;
}
.vstep-faq h1{
    margin: 0px auto 50px;
    color: #777777;
    text-align: center;
    font-size: 35px;
    font-family: balootammabold;
    max-width: 800px;
}
.faq-content .note-item {
    margin-top: 25px;
    border: 2px solid #E5E5E5;
    border-radius: 11px;
    min-height: 68px;
}
.faq-content .note-item.active{
    border-color: #FF9600;
}
.faq-content .note-title {
    border-radius: 14px;
    color: #777777;
    font-size: 20px;
    font-family: 'balootammamedium';
    padding: 15px 20px 15px;
    position: relative;
    padding-right: 50px;
}
.faq-content .note-title:hover{
    cursor: pointer;
}
.faq-content .note-title::after {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../../images/ept/faq-plus.svg);
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 17px;
}
.faq-content .note-item.active .note-title::after {
    background: url(../../images/ept/faq-minus.svg);
    background-repeat: no-repeat;
    top: 30px;
}
.faq-content .note-description {
    color: #777777;
    font-size: 17px;
    padding: 0px 20px 15px 20px;
    display: none;
}
.faq-content .note-item.active .note-description {
    display: block;
}
.faq-content .note-description strong{
    font-weight: 400;
    font-family: balootammabold;
}
@media(max-width: 767px){
    .vstep-faq{
        padding-top: 35px;
    }
    .vstep-faq h1{
        font-size: 28px;
        margin-bottom: 20px;
    }
    .faq-content .note-item {
        margin-top: 15px;
    }
}   