/* CSS Document */
.qa_nav{
    margin-bottom: 3em;
}
.qa_list.grid{
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.qa_list img{
    max-width: 100px;
    width: 100%;
}
.qa_wrap:not(:last-of-type){
    margin-bottom: 4em;
}
.qa_wrap {
    max-width: 800px;
    margin: auto;
}
.qa_wrap h3{
    text-align: center;
    margin-bottom: 1em;
}
.qa_box:first-of-type{
    border-top: 1px solid #978b7c;
}
.qa_box{
    border-bottom: 1px solid #978b7c;
    padding: 1em 0;
}
.qa_box .qa_question{
    cursor: pointer;
    position: relative;
    padding-left: 2em;
    padding-right: 2em;
}
.qa_box .qa_question::before{
    content: "Q";
    font-family: "EvolveSans", sans-serif;
    font-size: 2.4rem;
    position: absolute;
    left: 0;
    top: auto;
}
.qa_box .qa_question::after{
    content: "+";
    font-family: "EvolveSans", sans-serif;
    font-size: 4rem;
    line-height: 1;
    transform-origin: center center;
    transition: transform .3s ease;
    flex-grow: 1;
    position: absolute;
    right: 0;    
}
.qa_box .qa_question.active::after{
    transform: rotate(45deg);
}
.qa_box .qa_answer{
    padding:1em 0 1em 2em;
    position: relative;
    display: none;
}
.qa_box .qa_answer::before{
    content: "A";
    font-family: "EvolveSans", sans-serif;
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
}