.map-object{
    width: 100%;
    height: 600px;
}

.map-branch{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.map-branch__info{
    background: #f5f8fa;
    border-radius: 32px;
    padding: 28px;
}
.map-branch__area{
    border-radius: 32px;
    overflow: hidden;
}


.map-branch__item__name{
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    color: #2d2c38;
    margin-bottom: 12px;
}
.map-branch__item__prop{
    padding: 10px 0px;
}

.map-branch__item__prop__btn__box{
    margin-top: 10px;
}

.map-branch__item__prop:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.map-branch__item__desc{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #8d8ba2;
    margin-top: 10px;
    margin-bottom: 10px;
}
.map-branch__item__prop__title{
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #8d8ba2;
    margin-bottom: 6px;
}
.map-branch__item__prop__value{
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #2d2c38;
}
.map-branch__item__prop__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@media (min-width: 999px) {
    .map-branch{
        flex-direction: row-reverse;
    }
    .map-branch__area{
        width: 100%
    }

    .map-branch__info{
        flex: none;
        width: 373px;
    }
    .map-branch__item__prop__btn {
        display: inline-flex;
    }
}

@media (min-width: 1500px) {
    .map-branch__info{
        width: 573px;
    }

    .map-branch__item__name{
        font-size: 30px;
        min-height: 95px;
    }
    .map-branch__item__prop{
        padding: 14px 0px;
    }
    .map-branch__item__prop__title{
        margin-bottom: 8px;
    }
    .map-branch__item__prop__title, .map-branch__item__prop__value{
        font-size: 16px;
    }
}