.contacts {
    position: relative;
    padding: 5rem 0;
}

.contacts__card-salon {
    background-color: white;
    width: 100%;
    height: 100%;
}

.card-salon__img-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 85%
}
.card-salon__img {
   position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-salon__info {
    padding: 2rem 0 2rem 1.5rem;
}

.card-salon__city {
    position: relative;
    color: #383B47;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 1rem;
}

.card-salon__city:after {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url("../images/svg/map-locator.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -1.5rem;
}

.card-salon__phone {
    position: relative;
    color: #383B47;
    text-decoration: none;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

.card-salon__phone:after {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url("../images/svg/phone-call.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -1.5rem;
}

.card-salon__address {
    color: #383B47;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    margin: .5rem 0;
}


.card-salon__map-link {
    color: #2671B7;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
}