.contacts-item{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px #ccc solid;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    padding-right: 1rem;
}

.contacts-phones-list{
    display: flex;
    gap: .5em;
}

.contacts-icon{
    width: 3rem;
    flex-shrink: 0;
}

@media (max-width: 620px) {
    .contacts-icon{
        width: 2rem;
    }

    .contacts-item{
        font-size: 1.6rem;
        line-height: 2rem;
    }
}