.faqs-content-inner{
    display: flex;
    flex-wrap: wrap;
}
.single-faq{
    flex: 0 0 32%;
    width: 32%;
    margin: 0.5%;
    border: 1px solid #eee;
    transition: .25s ease all;
}
.single-faq:hover{
    box-shadow: 0 0 7px #eee;
}
.single-faq-inner{
    width: 100%;
    display: inline-block;
    padding: 20px;
}
.single-faq-left{
    float: left;
    padding-right: 10px;
}
.single-faq-right{
    float: left;
    width: 80%;
}
.faq-question, .faq-answer{
    color: #111;
}
.faq-question{
    margin-bottom: 20px;
}
.faq-answer{
    font-size: 15px;
}
.question-sign-wrapper{
    height: 20px;
    width: 20px;
    background: #1ea5f6;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.question-sign{
    color: white;
    font-size: 32px;
}
@media screen and (max-width: 1023px){
    .single-faq{
        flex: 0 0 49%;
        width: 49%;
    }
    .single-faq-inner {
        padding: 15px;
    } 
    .single-faq-right{
        float: left;
        width: 77%;
    }    
}
@media screen and (max-width: 767px){
    .single-faq{
        flex: 0 0 99%;
        width: 99%;
    }
}