/* =========================================
   GOVT CARD
========================================= */

.govt-card{

    background:#ffffff;

    height:240px;

    padding:30px 20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.govt-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/* =========================================
   IMAGE
========================================= */

.govt-card img{

    width:100%;

    max-width:120px;

    height:90px;

    object-fit:contain;

    margin:0 auto 25px;

}

/* =========================================
   TITLE
========================================= */

.govt-card h4{

    font-family:'Manrope',sans-serif;

    font-size:20px;

    font-weight:700;

    color:#002147;

    margin-bottom:12px;

}

