.ways-head {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 100;
    padding: 0px 0px 90px 0px;
    height: 60px;
}

.ways-type {
    position: relative;
    margin-top: 100px;
}

.dash {
    position: absolute;
    width: 80%;
    left: 10%;
    border-bottom: 1px dashed #8AB6AD;
    top: 120px;
}

.car .dash {
    border-bottom: 1px dashed #DC8D40;
    width: 80%;
    left: 10%;
}

.ways-points {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding-bottom: 50px;
    counter-reset: number 0;
}

.ways-points li {
    display: block;
    text-align: center;
    max-width: 230px;
    position: relative;
    margin-top: 70px;
    font-family: TT Norms;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.2px;
}

.ways-points li:after {
    counter-increment: number 1;
    content: "" counter(number);

    position: absolute;
    width: 50px;
    height: 50px;
    top: -70px;
    background-color: #8AB6AD;
    border-radius: 50%;
    border: solid 6px #d2e3e0;
    color: #FFF;
    text-align: center;
    line-height: 50px;
    left: 50%;
    margin-left: -28px;
    font-weight: bold;
    font-size: 27px;
}

.car .ways-points li:after {
    background-color: #DC8D40;
    border: solid 6px #fcddc1;
}

.route-tabs-map {
    clear: both;
    margin: 50px 0px;
    text-align: center;
}
.property {
    font-family: TT Norms;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}
@media (max-width: 1000px) {
    .ways-points li {
        padding: 0px 10px;
    }
}
@media (max-width: 700px) {
    .ways-points {
        flex-flow: column wrap;
    }
    .ways-points li {
        width: 100%;
        max-width: 100%;
        padding-bottom: 30px;
    }
    .dash {
        display: none;
    }
    .ways-head {
        font-size: 22px;
    }
    .route-tabs-map {
        margin: 20px 0px;
    }
}