/* ==========================================================
Function
========================================================== */
.function{
    background:#ffffff;
}
.function__grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.function-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:24px;
    padding:36px;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}
.function-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.function-card__icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#ECFDF5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:24px;
}
.function-card h3{
    margin-bottom:16px;
    font-size:22px;
    color:#111827;
}
.function-card p{
    color:#64748b;
    line-height:1.8;
}
@media(max-width:992px){
.function__grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:768px){
.function__grid{
grid-template-columns:1fr;
}
.function-card{
padding:28px;
}
}