.skills {
    display: flex;
    flex-direction: column;
}

.skills .hProfissionais ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 1rem;
    column-gap: 2%;
}

.skills .hProfissionais ul img {
    max-width: 50px;
    max-height: 50px;
    margin: 0 .5rem;
}

.skills .hPesssoal ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.skills .hPesssoal ul li {
    margin-left: 2rem;
    padding: .5rem;
}

@media only screen and (min-width: 768px) {
    .skills {
        flex-direction: row;
    }
    .skills .hPesssoal, .hProfissionais {
        width: 48%;
    }
}