#skills .about-item-highlights {
    justify-content: start;
}

#skills .about-item-container {
    margin-bottom: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 0rem;
    margin-right: 1.5rem;
}

.skill-item img {
    max-height: 4rem;
    max-width: 4rem;
    margin-bottom: 0.5rem;
}

.skill-item p {
    font-size: 1.05rem;
}

@media (max-width:767px) {
    .skill-item img {
        max-height: 4rem;
        max-width: 4rem;
        margin-bottom: 0.5rem;
    }

    .skill-item p {
        font-size: 1rem;
    }
}

@media (max-width:991px) {
    .skill-item img {
        max-height: 4.2rem;
        max-width: 4.2rem;
        margin-bottom: 0.5rem;
    }

    .skill-item p {
        font-size: 1rem;
    }
}


@media (min-width:992px) {
    #skills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
    }
    
    #skills .section-title {
        grid-column: 1/3;
    }

    #skills .about-item-container {
        margin: 0;
    }
}