/* ==========================================================
   CERTIFICATE SEARCH PAGE
========================================================== */

.certificate-search-section{
    padding:0 0 80px;
    background:#fff;
}
.certificate-search-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e7edf5;
    box-shadow:0 12px 35px rgba(18,38,63,.08);
    margin-top:-90px;
    position:relative;
    z-index:20;

}
.certificate-search-card-header{

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    padding:28px 35px;
    text-align:center;

}
.certificate-search-card-header h3{

    color:#fff;
    margin-bottom:10px;
    font-size:34px;
    font-weight:700;

}

.certificate-search-card-header p{

    color:rgba(255,255,255,.92);
    margin:0;
    font-size:16px;

}

.certificate-search-form{

    padding:40px;
    background:#fff;

}
.certificate-search-form label{

    display:block;

    width:100%;
    max-width:520px;

    margin:0 auto 10px;

    color:var(--dark);

    font-weight:600;

}
.certificate-search-form .form-control{

    width:100%;
    max-width:520px;
    margin:0 auto;

    height:60px;

    border-radius:10px;

    border:1px solid #d9e2ec;

    padding:0 20px;

    font-size:16px;

    transition:.3s;

}
.certificate-search-form .form-control:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(75,103,163,.15);

}

.certificate-search-note{

    color:#6b7280;
    font-size:15px;

}

.certificate-search-note i{

    color:var(--primary);
    margin-right:8px;

}

/* ==========================================================
   SECTION BADGE
========================================================== */

.section-badge{

    display:inline-block;

    padding:8px 20px;

    background:rgba(75,103,163,.08);

    color:var(--primary);

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title{

    color:var(--dark);

    font-size:36px;

    font-weight:700;

    margin-bottom:18px;

}
.section-description{

    color:#6b7280;

    font-size:16px;

    line-height:1.9;
    max-width:900px;
    margin:0 auto 18px;

}
/* ==========================================================
   CHECK LIST
========================================================== */

.service-check-list{

    list-style:none;

    margin:30px 0 0;

    padding:0;

}

.service-check-list li{

    position:relative;

    padding-left:32px;

    margin-bottom:15px;

    color:#374151;

    font-weight:500;

}

.service-check-list li:before{

    content:"\f058";

    font-family:"Font Awesome 5 Free";

    font-weight:900;

    position:absolute;

    left:0;

    top:1px;

    color:var(--secondary);

}

/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    background:#fff;
    padding-top:80px;

}
.faq-section .accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

}

.faq-section .accordion-button{

    font-weight:600;

    color:var(--dark);

    padding:20px 24px;

}

.faq-section .accordion-button:not(.collapsed){

    background:rgba(75,103,163,.08);

    color:var(--primary);

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    padding:22px 24px;

    color:#6b7280;

    line-height:1.9;

}

/* ==========================================================
   CTA
========================================================== */

.cta-section{

    padding:30px 0 80px;

}
.cta-box{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

    padding:60px;

}

.cta-box h2{

    margin:15px 0;

    font-size:38px;

}

.cta-box p{

    opacity:.95;

    line-height:1.9;

}

.cta-box .btn-light{

    padding:14px 34px;

    border-radius:8px;

    font-weight:600;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

.certificate-search-section{

    padding:60px 0;

}

.certificate-search-form{

    padding:30px;

}

.section-title{

    font-size:34px;

}

.cta-box{

    padding:40px;
    text-align:center;

}

}

@media(max-width:767px){

.certificate-search-card-header{

    padding:28px 22px;

}

.certificate-search-card-header h3{

    font-size:28px;

}

.certificate-search-form{

    padding:25px 20px;

}

.section-title{

    font-size:28px;

}

.section-description{

    font-size:16px;

}

.cta-box{

    padding:30px 20px;

}

.cta-box h2{

    font-size:28px;

}

.certificate-search-form .btn{

    width:100%;

}

}