@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

.FAQexample {
    margin-top: 7%;
}

.question {
    font-size: 18px;
    margin-top: 3%;
    line-height: 1.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
    border: solid 1px #a87f7e;
    background-color: #fcf9f9;
    padding: 20px;
    border-radius: 3px;
}

.question:hover {
    color: #a87f7e;
}

.question img {
    width: 30px;
    height: 30px;
    margin-right: 20px;
    cursor: pointer;
}

.answer {
    font-size: 18px;
    padding: 20px;
    line-height: 1.8em;
    display: none;
}

.otherQuestions {
    text-align: right;
    margin-top: 3%;
}

@media screen and (max-width: 1000px) and (min-width:769px) {
    .question {
        font-size: 16px;
    }

    .question img {
        width: 20px;
        height: 20px;
    }

    .answer {
        font-size: 16px;
    }

    .FAQexample .other {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {

    .FAQexample {
        margin: 7% 0 0 0;
    }
    
    .question {
        font-size: 14px;
    }

    .question img {
        width: 16px;
        height: 16px;
    }

    .answer {
        font-size: 14px;
    }

    .FAQexample .other {
        font-size: 14px;
    }
}