.station {
    background-color: #EEEEEE;
    padding: 0 0 3rem 0;
    position: relative;
}

.station .hero {
    width: 100vw;
    height: 20rem;
    background-color: #000000;
    position: relative;
}

.station .hero img {
    width: 100vw;
    height: 20rem;
    object-fit: cover;
}

.station h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    width: 100vw;
    height: 20rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.65);
    align-content: center;
}

.station .breadcrumb {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin: 3rem 5rem 3rem 5rem;
}

.station .breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.station .breadcrumb a:hover {
    text-decoration: underline;
}

.station .breadcrumb i {
    font-size: 0.75rem;
    color: #C80000;
    margin: 0 0.25rem;
}

.station .breadcrumb b {
    font-weight: 700;
}

.station .part {
	width: calc(100vw - 10rem);
	height: 20rem;
	margin: 2rem 5rem 0 5rem;
	background-color: #FFFFFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0.25rem;
    overflow: hidden;
    position: relative;
}

.station .part img {
	height: 20rem;
	width: 30rem;
	object-fit: cover;
}

.station .part h2 {
    font-size: 2rem;
    font-weight: 700;
    justify-content: center;
    vertical-align: center;
    position: absolute;
    top: 0;
    left: 30rem;
    display: block;
    width: calc(100vw - 40rem);
    height: 20rem;
    padding: 9rem 0;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .station .breadcrumb {
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
        margin: 3rem 5% 2rem 5%;
        text-align: center;
    }

    .station .part {
        width: calc(100vw - 10%);
        height: 25rem;
        margin: 2rem 5% 0 5%;
    }

    .station .part img {
        height: 20rem;
        width: 100%;
        object-fit: cover;
    }

    .station .part h2 {
        font-size: 2rem;
        font-weight: 700;
        justify-content: center;
        vertical-align: center;
        position: absolute;
        top: 12.25rem;
        left: 0;
        display: block;
        width: 100%;
        height: 5rem;
        padding: 9rem 0;
        text-align: center;
    }
}