/* ===========================================
   DEPARTMENTS SECTION
=========================================== */

.departments-section{

    background:#f8fafc;

}

.department-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    border:1px solid #edf1f5;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.35s;

}

.department-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.department-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0b4ea2;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.department-card:hover .department-icon{

    background:#ffc107;

    color:#111;

    transform:rotate(8deg);

}

.department-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#111;

}

.department-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.department-btn{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:#0b4ea2;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.department-btn:hover{

    background:#ffc107;

    color:#111;

}

@media(max-width:991px){

    .department-card{

        padding:30px 22px;

    }

}

@media(max-width:576px){

    .department-icon{

        width:75px;

        height:75px;

        font-size:28px;

    }

    .department-card h4{

        font-size:21px;

    }

}