@charset "utf-8";
/* --------------------------------------------------
faq.css
-------------------------------------------------- */

/*
FAQ
-------------------------------------------------- */
.faq {
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom:1px dotted #ddd;
    list-style: none;
    counter-increment: faq;
}

.faq:last-child {
    border-bottom:none;
}

.faq > .answer {
    position:relative;
    padding-left:40px;
    margin-top:12px;
}

.faq > .answer:before {
    font-size:1.4rem;
    content: "A"counter(faq);
    position: absolute;
    left: 0;
    background:#666;
    color:#fff;
    width:30px;
    height:30px;
    border-radius:30px;
    text-align:center;
    line-height:30px;
}

.faq > .question {
    position:relative;
    padding-left:40px;
    color:#e9967a;
    font-size:1.7rem;
}

.faq > .question:before {
    font-size:1.4rem;
    content: "Q"counter(faq);
    position: absolute;
    left: 0;
    background:#f39b85;
    color:#fff;
    width:30px;
    height:30px;
    border-radius:30px;
    text-align:center;
    line-height:30px;
}


@media ( min-width: 450px ) and ( max-width: 768px ) {
    .tbAdj.gutters .col {
        width: 49% !important;
    }
    .tbAdj.gutters .col {
        margin-left: 2%;
    }
    .tbAdj.gutters .col.span_8:first-child {
        margin-left: 0;
    }
    .tbAdj.gutters .col.span_6:nth-child(odd) {
        margin-left: 0;
    }
}

@media ( max-width: 450px ) {
    .tbAdj.gutters .col {
        text-align:center;
    }

    .faq > p.question{
        font-size:1.6rem;
    }
}
