/* Header */
header {
    background: url(../../../images/common/pattern-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.header-title {
    font-size: 36px;
    color: var(--white);
    text-transform: uppercase;
    margin: 15px 0;
}

.header-title::before {
    content: ' ';
    position: absolute;
    border-bottom: 4px solid var(--accent);
    width: 10%;
    text-align: center;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}
/* End Header */

/* Faq List */
#faqList {
    padding: 50px 0;
}

.faq-gutter {
    margin-left: -12px;
    margin-right: -12px;
}

.faq-gutter > [class*="col"] {
    padding-left: 12px;
    padding-right: 12px;
}

.faq-card {
    margin-bottom: 24px;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.35);
}

.faq-card .card-header {
    background-color: var(--primary);
}

.faq-card .fas,
.faq-card h2{
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.faq-card ul {
    padding-left: 16px;
}

.faq-card ul li {
    margin-bottom: 8px;
}

.faq-card ul li:last-child {
    margin-bottom: 0px;
}
/* End Faq List */
