.cp_contacts-list:first-child {
    margin-top: 100px;
}
.cp_contacts-list:not(:first-of-type) {
    margin-top: 40px;
}

.cp_contacts-title {
    margin: 0 0 20px;
    color: var(--title-color);
}

.cp_contacts-item {
    display: flex;
    flex-direction: column;

    padding-top: 20px;
    padding-bottom: 20px;
}
.cp_contacts-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.cp_contacts-employee {
    display: grid;
    grid-template-columns: minmax(100px, 530px) minmax(270px, auto);
    grid-gap: 5px 40px;
}
@media (max-width: 576px) {
    .cp_contacts-employee {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}
.cp_contacts-employee:not(:first-of-type) {
    margin-top: 20px;
}

.cp_contacts-text {
    margin: 0;
    color: var(--primary-text-color);
}
.cp_contacts-text--secondary {
    color: var(--secondary-text-color);
}
.cp_contacts-text--brand {
    color: var(--brand-color);
}
.cp_contacts h5 {
    margin: 0 0 10px;
    color: var(--title-color);
}
.cp_contacts h5 a {
    color: var(--title-color);
}
.cp_contacts h5:hover a {
    color: var(--brand-color);
    text-decoration: underline !important;
}

.cp_contacts-icon {
    min-width: auto !important;
    min-height: auto !important;
}