/* ==========================================================
Problem
========================================================== */
.problem{
    background:#ffffff;
}
.problem__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:70px;
}
.problem-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:24px;
    padding:36px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.03);
}
.problem-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.08);
}
.problem-card__icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ECFDF5;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:26px;
}
.problem-card__title{
    font-size:24px;
    margin-bottom:18px;
    color:#18181b;
}
.problem-card p{
    color:#64748b;
    line-height:1.9;
}
.problem__bottom{
    margin-top:90px;
    text-align:center;
}
.problem__bottom p{
    font-size:24px;
    margin-bottom:36px;
    color:#1e293b;
}
.problem__bottom strong{
    color:var(--primary-color);
}
.problem__bottom .button{
    width:260px;
    margin:auto;
}
@media(max-width:992px){
.problem__grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:768px){
.problem__grid{
grid-template-columns:1fr;
}
.problem-card{
padding:28px;
}
.problem__bottom p{
font-size:20px;
}
}