.services{
    margin-top: 14.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.cards__services{
    width: 95%;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.card__service{
    width: 90%;
    padding: .3rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4rem;
    color: #034661;
    overflow-wrap: break-word;
}
.card__service img{
    width: 50%;
    margin-bottom: 1.5rem;
}
.name__service{
    font-size: 1.2em;
}
@media (min-width: 768px) { 
    .services{
        margin-top: 15.5rem;
    }
    .card__service{
        width: 30%;
        margin-bottom: 2rem;
    }
}
@media (min-width: 1024px) { 
    .services{
        flex-direction: row;
    }
    .card__service{
        width: 25%;
        padding: 0.35rem;
        margin-bottom: 2rem;
    }
    .card__service img{
        width: 85%;
    }
}