/*
|--------------------------------------------------------------------------
| VALORABANK
| BUSINESS LOAN CSS
|--------------------------------------------------------------------------
*/

.business-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/business-loan-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.business-hero h1{

    font-size:3.2rem;

    font-weight:800;

}

.business-section{

    padding:100px 0;

    background:#f8fafc;

}

/* ==============================
CARD
============================== */

.business-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

}

/* ==============================
INPUTS
============================== */

.business-card input,
.business-card select{

    width:100%;

    padding:14px;

    border-radius:15px;

    border:1px solid #e5e7eb;

    margin-top:10px;

    margin-bottom:20px;

}

.business-card input:focus,
.business-card select:focus{

    outline:none;

    border-color:#103A8C;

    box-shadow:0 0 0 4px rgba(16,58,140,.1);

}

/* ==============================
SIMULATION
============================== */

.business-sim{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    padding:25px;

    border-radius:20px;

}

.business-value{

    font-size:32px;

    font-weight:800;

}

/* ==============================
BUTTON
============================== */

.btn-business{

    width:100%;

    padding:15px;

    border:none;

    border-radius:50px;

    font-weight:700;

    background:#FFD447;

    color:#081F4D;

    transition:.3s;

}

.btn-business:hover{

    transform:translateY(-3px);

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .business-hero h1{

        font-size:2.2rem;

    }

}