/**
==========================================================
Digital Nation Inn
Knowledge Hub
==========================================================
*/

.dni-knowledge{
    padding:80px 0;
    background:#f8fbff;
}

.dni-knowledge .section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eef4ff;
    color:#0d6efd;
    font-size:.9rem;
    font-weight:600;
}

.dni-knowledge h2{
    margin-top:20px;
    font-size:2.6rem;
    font-weight:700;
}

.dni-knowledge .lead{
    max-width:760px;
    margin:20px auto 0;
    color:#6c757d;
    line-height:1.8;
}

.dni-knowledge .card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.dni-knowledge .card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.dni-knowledge .card-body{
    padding:30px;
}

.dni-knowledge .display-5{
    margin-bottom:18px;
}

.dni-knowledge h3{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:15px;
}

.dni-knowledge p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:25px;
    min-height:95px;
}

.dni-knowledge .btn{
    width:100%;
    border-radius:50px;
    padding:12px 20px;
    font-weight:600;
}

.dni-knowledge .alert{
    border:none;
    border-radius:20px;
    padding:35px;
}

.dni-knowledge .alert h4{
    font-weight:700;
    margin-bottom:15px;
}

.dni-knowledge .alert p{
    margin-bottom:0;
    color:#495057;
}

@media(max-width:991px){

    .dni-knowledge{
        padding:60px 0;
    }

    .dni-knowledge p{
        min-height:auto;
    }

}

@media(max-width:576px){

    .dni-knowledge{
        padding:50px 0;
    }

    .dni-knowledge h2{
        font-size:2rem;
    }

    .dni-knowledge .card-body{
        padding:25px;
    }

}