[class*=ymaps][class*=-ground-pane] {
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}

.contacts__map-wrapper {
    display: flex;
    gap: 20px;
}

.contacts__map-list {
    width: 500px;
    box-shadow: 0 0 10px #4285F433;
    border-radius: 16px;
    margin-bottom: 20px;
    background-color: #fff;
}

@media (max-width: 670px) {
    .contacts__map-wrapper {
        margin: 5px;
        flex-direction: column-reverse;
    }
    .contacts__map-list {
        width: 100%;
    }
}

.contacts__map-list__item {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(52, 61, 66, 0.1);
}

.contacts__map-list__item:last-child {
    border: none;
}

.contacts__map-list__item-name {
    font-family: "Nunito", sans-serif;
    color: #343D42;
    font-size: 20px;
    line-height: 27px;
    font-weight: 800;
    margin-bottom: 5px;
}

.contacts__map-list__item-address {
    color: #343D42B2;
    font-size: 16px;
    line-height: 20px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.contacts__map-list__item-schedule {
    color: var(--color-theme-main);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.contacts__map-list__item-phone {
    font-family: "Nunito", sans-serif;
    color: #343D42;
    font-size: 16px;
    line-height: 22px;
    margin-left: 5px;
    font-weight: 700;
}