.mapBlock{
    background: url("../images/map.png") no-repeat center var(--default);
    color: var(--alter);
    padding-top: 100px;
    padding-bottom: 102px;
}

.mapBlock__wrap{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.mapBlock__title{
    align-self: flex-start;
    margin-bottom: 180px;
}

.mapBlock__line{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 630px;
    max-width: 100%;
    /* border-bottom: 1px solid var(--alter); */
    border-bottom: 1px solid #fefefe33;
    margin-bottom: 37px;
    padding-bottom: 8px;
}
.mapBlock__line:last-child{
    margin-bottom: 0;
}
.mapBlock__text{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.6px;
}
.mapBlock__digit{
    font-size: 96px;
    font-family: 'Angst', sans-serif;
    color: var(--accent);
    letter-spacing: -5px;
    line-height: .8;
}


@media screen and (max-width: 576px) {
    .mapBlock__title {
        margin-bottom: 50px;
    }
    .mapBlock__line {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 12px;
        margin-bottom: 24px;
    }
    .mapBlock__text {
        font-size: 15px;
        opacity: 0.8;
    }
    .mapBlock {
        padding-bottom: 0;
        margin-bottom: 100px;
        background-size: contain;
        background-position-y: calc(50% + 60px);
    }
}