/*  Sets styles contacts slider   */ 
/* -----------------------------  */

.c_contacts_offices {
    display: flex;
    justify-content: flex-start;
}

.c_contacts_offices li {
    list-style: none;
    margin-right: 40px;
}

.c_contacts_offices_li_active {
    font-weight: 800;
    border-bottom: 4px solid var(--eco-d-green);
    transition: border-bottom 0.1s ease-in-out;
}

.c_contacts_offices li:hover {
    cursor: pointer;
}

.c_contacts_map {
    width: 100%;
    height: 500px;
    background-color: white;
}

.c_contacts_employee {
    list-style: none;
    line-break: auto;
}

.c_contacts_ancor:hover {
    cursor:pointer;
}

.c_contacts_ancor::after {
    display: block;
    text-align: center;
    content: '';
    position: absolute;
    bottom: 0;
    left: 39.2%;
    width: 0px;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}

.c_contacts_ancor:hover::after {
    text-align: center;
    height: 1px;
    width: 125px;
    transition: width 0.3s ease-in-out;
}