/* FAQ styles */

p {
    margin-top: 17px;
}

.faq-questions {
    margin: 2em 0 0 0;
    padding: 0;
    list-style: none;
}

.faq-questions__item {
    color: #000;
    align-items: baseline;
    cursor: pointer;
    border: 1px solid #ccc;
}

.faq__question {
    display: flex;
}
.faq__question .number {
    margin-right: 6px;
}

.faq-answers {
    margin-top: 2em;
}

.faq-answers__item {
    margin-bottom: 3em;
}

.faq-answers__item:target {
    padding-top: 50px;
}

.faq__question__content {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 20px;
}
.faq__question__content.bg {
    background-color: #EBEBEB;
    width: 100%
}
.faq__question {
    margin-right: 20px;
}

.faq__arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: transform 250ms;
}

.faq__arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);

}

.faq__arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 20px;
    padding-left: 40px;
    background-color: #f6e1c1 ;
}

@media screen and (min-width: 1380px) {

    .faq-answers__item:target {
        padding-top: 80px;
    }

}