body{
    background-color: #AC4F2F;
}

.topic__access-page{
    color: #fff;

    background-image: url(../images/topic_whiteUnderline.png);
}

.access-page{
    text-align: center;
    color: #fff;
}

.map-title{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2;
}

.address{
    line-height: 2.5;
}

.map{
    width: 95%;
    height: 562px;
}

.carOrTrain div{
    height: 120px;
    margin: 30px 2.5% 0;
    border: 5px solid #AA3C2D;

    background-image: url(../images/car.png);
    background-repeat: no-repeat;
    background-position: top 10px left 50% ;
    background-size: 50px 40px;
}

.carOrTrain div:last-of-type{
    background-image: url(../images/train.png);
}

.car , .train{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 55px;
}

.parking__title{
    font-size: 1.6rem;
    margin-top: 50px;
    line-height: 2;
}

.parking-address{
    line-height: 2;
}

.parking-img{
    display: inline-block;
    max-width: 95%;
}

.parking__list{
    text-align: end;
    margin-right: 2.5%;
}

/* responsive */
@media screen and (min-width:769px) {
    .address{
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .map{
        max-width: 1000px;
    }

    .carOrTrain div{
        width: 455px;
        margin: 30px 0 0;
    }

    .carOrTrain{
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .car , .train{
        font-size: 1.8rem;
        font-weight: 400;
        margin-top: 55px;
    }

    .car__item,.train__item{
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2;
    }

    .parking__title{
        font-size: 2rem;
    }

    .parking-address{
        font-size: 1.6rem;
    }

    .parking-img{
        display: block;
        max-width: 1000px;
        margin: 0 auto;
    }

    .parking__list{
        display: flex;
        justify-content: flex-end;
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .parking__list li{
        font-size: 1.8rem;
    }
    
}