<style>
*{


}

body{

}

.container01{
    max-width:1100px;
    margin:auto;
}

.title01{
    text-align:center;
    font-size:34px;
    color:#143d7a;
    margin-bottom:45px;
    font-weight:700;
}

.cards01{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
}

.card01{
    background:#fff;
    border-radius:18px;
    padding:25px 20px;
    text-align:center;
    transition:.35s;
    border:1px solid #edf2f7;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.card01:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.icon01{

    margin:auto;
    border-radius:5%;
    overflow:hidden;
    
}

.icon01 img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card01 h3{
    margin:18px 0 12px;
    font-size:18px;
    color:#1b2b52;
}

.card01 p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}





@media(max-width:768px){
    .cards01{
        grid-template-columns:1fr;
    }
}

</style>