

.faq-section{
    width:100%;
    margin:70px auto;
    font-family:Arial,Helvetica,sans-serif;
    color:#222;
}

.faq-container{
    max-width:1440px;
    margin:0 auto;
    padding:0 0px;
}

.faq-title{
    text-align:left;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    color:#1d2939;
}

.faq-subtitle{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
    color:#0A4DA2;
    font-size:16px;
    line-height:1.8;
}

/* Accordion */

.faq-accordion{
    border-top:1px solid #e5e7eb;
}

.faq-item{
    border-bottom:1px solid #e5e7eb;
}

.faq-question{
    position:relative;
    width:100%;
    background:#fff;
    border:0;
    outline:none;
    cursor:pointer;
    text-align:left;
    padding:24px 60px 24px 0;
    font-size:16px;
    font-weight:600;
    color:#1f2937;
    transition:.3s;
}

.faq-question:hover{
    color:#222222;
}

.faq-question:after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    line-height:34px;
    text-align:center;
    border-radius:50%;
    background:#f5f7fa;
    color:#0d6efd;
    font-size:24px;
    font-weight:400;
    transition:.35s;
}

.faq-item.active .faq-question:after{
    content:"−";
    background:#0d6efd;
    color:#fff;
}

.faq-answer{
    display:none;
    padding:0 0 28px;
    color:#555;
    font-size:14px;
    line-height:1.9;
}

.faq-answer p{
    margin:0;
}

/* Smooth appearance */

.faq-item.active .faq-answer{
    display:block;
    animation:faqFade .35s ease;
}

@keyframes faqFade{
    from{
        opacity:0;
        transform:translateY(-6px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

/* Tablet */

@media (max-width:992px){

    .faq-section{
        margin:60px auto;
    }

    .faq-title{
        font-size:30px;
    }

    .faq-question{
        font-size:18px;
        padding:22px 52px 22px 0;
    }

}

/* Mobile */

@media (max-width:768px){

    .faq-section{
        margin:20px auto;
    }

    .faq-container{
        padding:0 0px;
    }

    .faq-title{
        font-size:22px;
    }

    .faq-subtitle{
        font-size:15px;
        margin-bottom:35px;
    }

    .faq-question{
        font-size:17px;
        line-height:1.6;
        padding:18px 45px 18px 0;
    }

    .faq-question:after{
        width:28px;
        height:28px;
        line-height:28px;
        font-size:20px;
    }

    .faq-answer{
        font-size:15px;
        line-height:1.8;
        padding-bottom:22px;
    }

}
