.contacts__city::after{
    content: none;
}

.contacts ._item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.contacts ._icon {
    width: 40px;
}

.contacts ._content {
    width: calc(100% - 40px);
}

.contacts ._title {
    background: #dfe8f7;
    padding: 0 10px;
    height: 25px;
    color: #2d4c7d;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 100%;
}

.contacts ._text {
    width: 100%;
    padding: 10px 25px 20px 10px;
    font-size: 16px;
}

.contacts ._phone {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contacts ._phone a {
    font-size: 22px;
    display: block;
    text-decoration: none;
    color: black;
    margin-top: -5px;
    margin-bottom: 5px;
}
.contacts ._phone-callback {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.contacts ._phone-button {
    background: #2d4c7d;
    color: white;
    padding: 15px 25px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.contacts ._social-links {
    display: flex;
    height: 35px;
    margin-top: 10px;
    align-items: center;
    justify-content: space-evenly;
}

.contacts ._social-links a {
    height: 100%;
    display: block;
    text-decoration: none;
}

.contacts ._social-links img {
    height: 100%;
}

@media (max-width: 800px){
    .contacts ._phone, .contacts ._phone-callback {
        max-width: 400px;
    }

    .contacts ._right > ymaps {
        height: 300px!important;
    }

}

@media (max-width: 575px){

    .contacts ._phone {
        flex-direction: column-reverse;
    }

    .contacts ._phone-callback {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}