.select nav {
    padding-top: 35px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.select nav ul {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    background: #ef6036; 
    display: flex;
    justify-content: space-between;   
    overflow: auto;
    
}

.select nav ul li{
    flex-grow: 1;
    text-align: center;
    padding: .5em;
    border-right: 2px solid #fff;
}

.select nav ul li a{
    color: white;
    display: block;
    text-decoration: none;
    padding: .5em auto;
}

.select nav ul li:last-child {
    border-right: none;
}

/* Statio Section */
.stations-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
}

.station-box {
    width: 28%;
    margin: 15px 0;
}

.station-img {
    width: 100%;
}

.station-img img {
    width: 100%;
}

.station-icons {
    width: 100%;
    background: #ef6036;
}

.station-icons .ico-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.station-icons .ico-box img{
    width: 25%;
}

.ico-txt {
    width: 100%;
}

.ico-txt h4 {
    color: #ef6036;
    font-size: 18px;
    margin: 15px;
    text-align: center;
}

.ico-txt p{
    color: #000;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width:768px ) {
    .select nav ul {
        overflow: auto;
        font-size: 12px;
    }

    .station-box {
        width: 100%;
        margin: 15px 0;
    }

    .station-icons .ico-box{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .station-icons .ico-box img{
        width: 20%;
    }
}