div#faq-container{
    position: relative;
    display: flex;
    flex-direction: column;
align-items: center;
    justify-content: center;
    z-index: 10;
}
div#faq-container section{
    width: 100%;
    padding: var(--page-spacing);
    padding-bottom: 2rem;
}
div#faq-container section h1,
div#faq-container section h2{
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 2.5rem;
    color: var(--primary);
    padding: 0;
    text-align: center;
    margin: 0 auto 2rem auto;
    width: fit-content;
    background-repeat: no-repeat;
}
div#faq-container section h1 b,
div#faq-container section h2 b{
    font-family: 'Simonetta-Black';
    font-weight: 900;
}
div#faq-container section h1{
    background-image: url('../images/icons/faq.png');
    background-position: left center;
    background-size: 5rem;
    padding: 1.5rem 0rem 1.5rem 7rem;
}
div#faq-container section h2{
    background-image: url('../images/icons/question-dialog.png');
    background-position: right center;
    background-size: 8rem;
    padding: 1.5rem 9rem 1.5rem 0;
}

div#faq-container section div.columns{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
div#faq-container section div.columns div.col{
    width: 30%;
}
div#faq-container section div.columns div.col article{
    width: 100%;
    padding-bottom: 2rem;
}
div#faq-container section div.columns div.col article h3{
    font-family: 'Simonetta-Regular';
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin: 0 0 1.5rem 0;
}
div#faq-container section div.columns div.col article p,
div#faq-container section.section-2 p{
    font-family: 'lora';
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 1rem 0;
}
div#faq-container section.section-2 p{
    color: var(--primary);
}

div#faq-container div.card-resize-container{
    position: relative;
    width: 100%;
    padding: var(--page-spacing);
}
div#faq-container div.card-resize-container div.card-resize{
    margin: 0 auto;
    width: 50%;
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 1.3rem;
    text-align: center;
}
div#faq-container div.card-resize-container:after{
    content: "";
    position: absolute;
    background-image: url('../images/phrase-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    top:0;
    left: 0;
    right:0;
    bottom:0;
    z-index: -10;
}

@media only screen and (max-width: 768px) {
    div#faq-container section div.columns{
        flex-direction: column;
    }
    div#faq-container section div.columns div.col{
        width: 100%;
    }
    div#faq-container div.card-resize-container div.card-resize{
        width:100%;
        margin: 0 auto 7rem auto;
    }
}