.contacts-block{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.contacts-block__grid {
    width: 100%;
    max-width: calc((100% / 2) - 10px);
    margin-bottom: 30px;
}
.contacts-block__grid-img {
    margin-bottom: 30px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contacts-block__city {
    position: relative;
    color: #0f2271;
    text-transform: uppercase;
    font-size: 21px;
    margin-bottom: 20px;
    display: block;
    padding-left: 30px;
}
.contacts-block__list-wrap {
    margin-bottom: 20px;
}
.contacts-block__list-wrap:last-child {
    margin-bottom: 0;
}
.contacts-block__city::before {
    border-style: solid;
    border-width: 3px 3px 0 0;
    content: '';
    display: inline-block;
    height: 10px;
    left: 0;
    position: absolute;
    top: 3px;
    transform: rotate(135deg);
    vertical-align: top;
    width: 10px;
}
.address {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.address:last-child {
    margin-bottom: 0;
}
.address__img-frame {
    margin-right: 20px;
    max-width: 180px;
    width: 100%;
    height: 165px;
    background-color: #eaeaea;
}
.address__img-frame img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.address__text {
    color: #0f2271;
    font-size: 16px;
    line-height: 30px;
}
.address__address pre {
    line-height: 22px;
    margin: 0;
    font-family: inherit;
    font-size: 14px;
}
@media (max-width: 1253px) {
    .contacts-block__grid-img img {
        width: 100%;
    }
    .address {
        flex-wrap: wrap;
    }
    .address__img-frame {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .contacts-block__grid {
        max-width: 100%;
    }
    .contacts-block__grid-img img {
        width: 100%;
    }
    .address {
        flex-wrap: wrap;
    }
    .address__img-frame {
        max-width: 100%;
    }
}