.mvv-section{
    background:#f7f9fc;
}

.row{
    display:flex;
    gap:30px;
}

.col{
    flex:1;
}

.mvv{
  display:flex;
  align-items:center;
  gap:20px;
}

.mvv-card{
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #0d47a1;
}

.mvv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,71,161,.15);
}

.mvv-icon{
    width:75px;
    height:75px;
    background:#0d47a1;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.mvv-card h3{
    color:#0d47a1;
    font-size:30px;
    margin-bottom:20px;
    font-weight:700;
}

.mvv-card p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    text-align:justify;
    margin-bottom:18px;
}

.mvv-card ul{
    padding-left:22px;
    margin-bottom:18px;
}

.mvv-card ul li{
    margin-bottom:12px;
    color:#444;
    line-height:1.8;
    font-size:17px;
}

@media(max-width:768px){

.mvv-card{
padding:25px;
}

.mvv-card h3{
font-size:26px;
}

}