/*
|--------------------------------------------------------------------------
| VALORABANK
| SECURITY PAGE CSS
|--------------------------------------------------------------------------
*/

.security-hero{

    min-height:45vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.95),
        rgba(8,31,77,.80)
    ),
    url('../images/security/security-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.security-hero h1{

    font-size:3rem;
    font-weight:800;

}

.security-section{

    padding:80px 0;

    background:#f8fafc;

}

/* ==============================
CARDS
============================== */

.security-card{

    background:#fff;

    border-radius:25px;

    padding:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.3s;

}

.security-card:hover{

    transform:translateY(-6px);

}

.security-icon{

    font-size:40px;

    color:#103A8C;

    margin-bottom:15px;

}

.security-title{

    font-size:20px;

    font-weight:800;

    color:#081F4D;

}

.security-text{

    color:#64748B;

    margin-top:10px;

    line-height:1.7;

}

/* ==============================
LOCK SECTION
============================== */

.security-lock{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    padding:40px;

    border-radius:25px;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .security-hero h1{

        font-size:2.2rem;

    }

}