.faq-title{
    font-size: 250%;
    font-weight: 600;
    margin: 6% 0;
}

.faqs-holder{
    margin: 0 auto;
    width: 80%;
}

.faq-holder {
    margin-bottom: 4%;
    padding-bottom: 2%;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq-title-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-btn{
    width: 15px;
    margin-right: 10px;
    transition-duration: 0.3s;
}

.faq-question {
    font-weight: 600;
    font-size: 112%;
    margin: 0;
}

.faq-answer {
    display: none;
    margin-top: 2%;
    font-weight: 300;
    font-size: 95%;
}

@media only screen and (max-width: 800px) {
    .faqs-holder{
        width: 92%;
    }

    .faq-title{
        margin: 10% 0 14% 0;
        font-size: 200%;
    }

    .faq-holder {
        margin-bottom: 10%;
        padding-bottom: 4%;
    }

    .faq-question{
        font-size: 100%;
    }
}