*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#333;
    line-height:1.8;
}

a{
    text-decoration:none;
}

.navbar{
    padding:15px 0;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
}

.nav-link{
    color:#222;
    font-weight:500;
    margin-left:18px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#0d6efd;
}

.btn-main{
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    padding:12px 30px;
    transition:.3s;
}

.btn-main:hover{
    background:#084298;
    color:#fff;
}

.section{
    padding:80px 0;
}

.section-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.section-text{
    font-size:17px;
    color:#666;
}

.card-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card-box:hover{
    transform:translateY(-5px);
}

@media(max-width:991px){

.nav-link{
    margin-left:0;
    padding:12px 0;
}

.navbar-brand{
    font-size:24px;
}

.section-title{
    font-size:30px;
}

}
 
/* ===========================
        FOOTER
=========================== */

.footer-section{
    background:#417ed9a3;
    color:#417ed9a3;
    padding:70px 0 25px;
    margin-top:80px;
}

.footer-logo{
    color:#33333;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-logo span{
    color:#0d6efd;
}

.footer-title{
    color:#33333;
    font-size:20px;
    margin-bottom:20px;
    font-weight:600;
}

.footer-text{
    color:#0b0c0c;
    line-height:1.9;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#0b0c0c;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:6px;
}

.footer-divider{
    border-color:rgba(255,255,255,.12);
    margin:40px 0 20px;
}

.copyright{
    margin:0;
    color:#b8c0cc;
}

.footer-section .text-md-end a{
    color:#cfd5df;
    margin-left:10px;
}

.footer-section .text-md-end a:hover{
    color:#0d6efd;
}

@media(max-width:991px){

.footer-section{
    text-align:center;
}

.footer-logo{
    font-size:26px;
}

.footer-title{
    margin-top:15px;
}

.footer-section .text-md-end{
    text-align:center !important;
    margin-top:12px;
}

}
```
