
/* Transport Webpage */

.transport {
    padding-top: 50px;
    padding-bottom: 50px;
}

.transport__title {
    text-align: left;
    color: #1D2D53;
    font-family: "Proxima Nova";
    font-weight: 600;
    font-size: 35px;
    line-height: 38px;
}

.transport__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 50px;
}

.transport-card-list {
    display: block;
    margin: 30px 0 0px 0px;
    padding-bottom: 10px;
    white-space: nowrap;
}

.transport-card-list__banner.transport-card {
    margin-right: 17px;
    margin-top: 17px;
}

.transport-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 340px;
    height: 200px;
    vertical-align: top;
    border-radius: 10px;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.transport-card.passenger-color {
    background-color: rgba(243, 123, 62, 0.90);
}

.transport-card.minivan-color {
    background-color: rgba(29, 45, 83, 0.90);
}

.transport-card.bus-color {
    background-color: rgba(43, 43, 43, 0.90);
}

.transport-card.minibus-color {
    background-color: rgba(0, 129, 138, 0.90);
}

.transport-card:hover {
    transform: scale(1.03);
    transition-duration: 300ms;
    box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 4px 8px rgb(0 0 0 / 6%);
}

.link {
    cursor: pointer;
    text-decoration: none;
    outline: 0;
    touch-action: manipulation;
}

.transport-card__link {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.transport-card__icon {
    display: inline;
    width: 12px;
    filter: invert(100%);
    padding-right: 5px;
}

.transport-card__header {
    padding: 20px 0 0 20px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 25px;
    color: white;
}

.transport-card__subtitle-capacity {
    padding: 70px 0 0 20px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    color: white;
}

.transport-card__subtitle-clock {
    padding: 10px 0 0 20px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    color: white;
}

.transport-card__subtitle-price {
    padding: 10px 0 0 20px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    color: white;
}

.transport-card__image.image {
    top: 48%;
    left: 47%;
}

.transport-card__image.image {
    position: absolute;
    right: 0;
}

.transport-card__image {
    width: 170px;
    background-size: cover;
    transition: transform .3s ease-in-out;
    transform: scale(1);
}


@media (max-width: 1140px) {
    .transport__title {
        font-size: 33px;
    }
}
@media (max-width: 890px) {
    .transport__title {
        font-size: 31px;
    }
}
@media (max-width: 810px) {
    .transport__title {
        font-size: 29px;
    }
}
@media (max-width: 550px) {
    .transport {
        padding: 40px 15px 15px 15px;
    }
    .transport__list {
        margin-top: 25px;
    }
    .transport__title {
        font-size: 27px;
        line-height: 32px;
    }
}
