/*
|--------------------------------------------------------------------------
| VALORABANK
| PROFESSIONNELS PAGE CSS
|--------------------------------------------------------------------------
*/

.pro-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-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.pro-hero h1{

    font-size:3.2rem;
    font-weight:800;

}

.pro-section{

    padding:100px 0;

    background:#f8fafc;

}

/* ==============================
BUSINESS CARDS
============================== */

.pro-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    transition:.3s;

    height:100%;

}

.pro-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 90px rgba(0,0,0,.12);

}

.pro-icon{

    font-size:42px;

    margin-bottom:20px;

    color:#103A8C;

}

.pro-title{

    font-size:22px;

    font-weight:800;

    color:#081F4D;

}

.pro-text{

    color:#64748B;

    margin-top:10px;

    line-height:1.8;

}

/* ==============================
CTA BUSINESS
============================== */

.pro-cta{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    padding:80px 0;

    border-radius:40px;

    text-align:center;

}

.pro-cta h2{

    font-size:2.5rem;

    font-weight:800;

}

.btn-pro{

    background:#FFD447;

    color:#081F4D;

    padding:14px 35px;

    border-radius:50px;

    font-weight:700;

    border:none;

    display:inline-block;

    margin-top:20px;

    transition:.3s;

}

.btn-pro:hover{

    transform:scale(1.05);

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .pro-hero h1{

        font-size:2.2rem;

    }

}