.problems{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin-top: var(--gutter-section);
    max-width: var(--max-xl-width);
}
.problems__headline{
    color: var(--blue);
    width: 100%;
    text-align: center;
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: calc(3rem + 75px);
}
.problems__cards-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:2rem;
}
.problems__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(212, 210, 210, 0.44) 0%, rgba(255, 255, 255, 0.00) 100%);
    /* box-shadow: 2px 15px 20px 0px rgba(0, 0, 0, 0.20); */
    margin-bottom: 70px;
    padding: 0 2rem 4rem 2rem;

}
.problems .card__image{
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-top: -75px; 
}
.problems .card__title{
    color: var(--blue);
    text-align: center;
    font-size: var(--fs-small);
    font-weight: 700;
    text-transform: uppercase;
    margin: 4rem;
    
}
.problems .card__description{
    color: var(--gray-50);
    text-align: left;
    font-size: var(--fs-smaller);
    font-weight: 400;
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .problems__card{
        width: 30%;
    }
    .problems__card:nth-child(4),.problems__card:nth-child(5){
        max-width: unset;
        width: 45%;
    }

}
