/*
|--------------------------------------------------------------------------
| VALORABANK
| LOANS HUB PAGE CSS
|--------------------------------------------------------------------------
*/

.loans-hero{

    min-height:55vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.92),
        rgba(8,31,77,.78)
    ),
    url('../images/banking/loans-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.loans-hero h1{

    font-size:3.2rem;

    font-weight:800;

}

.loans-section{

    padding:100px 0;

    background:#f8fafc;

}

/* ==============================
LOAN CARDS
============================== */

.loan-card{

    background:#fff;

    border-radius:30px;

    padding:35px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

    transition:.3s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.loan-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 90px rgba(0,0,0,.12);

}

.loan-icon{

    font-size:42px;

    margin-bottom:20px;

    color:#103A8C;

}

.loan-title{

    font-size:22px;

    font-weight:800;

    color:#081F4D;

}

.loan-text{

    color:#64748B;

    margin-top:10px;

    line-height:1.7;

}

/* ==============================
ARROW BUTTON
============================== */

.loan-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:20px;

    font-weight:700;

    color:#103A8C;

    text-decoration:none;

    transition:.3s;

}

.loan-link:hover{

    gap:12px;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .loans-hero h1{

        font-size:2.2rem;

    }

}