/* Airports */
.main-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #182012;
    text-align: center;

}

.airport-sec {
    padding: 80px 0;
    background-color: #b3e98b4d;
}

.main-airport {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.airport-col {
    width: 50%;
    flex: 0 0 auto;
    padding: 0 15px;
}

.airport-card {
    padding: 15px;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    transition: all .5s ease;
}

.airport-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #182012;
    background-color: #182012;
    margin: 0 auto 20px;
}

.airport-card-img img {
    transition: all .5s ease;
    transform: scaleX(1);
}

.airport-card:hover img {
    transform: scaleX(-1);
}

.airport-card-content {
    margin-bottom: 20px;
}

.airport-card-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.airport-card-content p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.airport-btns {
    padding: 10px 15px;
    border: 1px solid #182012;
    margin: auto;
    width: 50%;
    transition: all .5s ease;
}

.airport-btns a {
    font-size: 16px;
    font-weight: 700;
    color: #182012;
    text-decoration: none;
    transition: all .5s ease;
}

.airport-card:hover .airport-btns {
    background-color: #182012;
}

.airport-card:hover .airport-btns a {
    color: white;
}

/* service */
.services-sec {
    padding: 80px 0;
}

.service-main {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-col {
    width: 33.33%;
    flex: 0 0 auto;
    padding: 0 15px;
}

.service-card {
    padding: 50px;
    border: 1px solid #182012;
}

.service-circle {
    position: relative;
}

.service-number {
    width: 80px;
    height: 80px;
    background: #182012;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: -37%;
    top: 50%;
    transform: translateY(50%);
}

.service-number span {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #182012;
}

.service-card p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.service-btn {
    margin-top: 20px;
}

.service-btn a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: underline;
    color: #222222;
}

/* Station */
.station-sec .main-heading h2 {
    text-align: left !important;
}

.station-sec p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.main-station {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.station-sec {
    padding: 50px 0px 200px;
    background-color: #b3e98b4d;
}

.station-left,
.station-right {
    width: 50%;
    flex: 0 0 auto;
    padding: 0 15px;
}

.station-left ul {
    list-style: none;
    padding-left: 20px;
    margin: 40px 0 30px;
    list-style-type: disclosure-closed;
}

.station-left ul li {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.station-left ul li a {
    color: #222222;
    text-decoration: underline;
}

.train-img-main {
    position: relative;
}

.train-upper-img {
    position: relative;
    width: 472px;
    height: 590px;
    border-right: 7px solid #182012;
}

.train-upper-img img {
    padding-right: 18px;
    object-position: left;
}

.train-lower-img {
    position: absolute;
    right: -30px;
    bottom: -139px;
    width: 306px;
    height: 320px;
}

.train-lower-img img {
    object-position: left;
    border: 10px solid #fff;
}

/* Fleet */
.fleet-sec {
    padding: 80px 0;
}

.main-fleet {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.fleet-col {
    padding: 0 15px;
    width: 100%;
    flex: 0 0 auto;
}

.fleet-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #b3e98b4d;
    border-radius: 12px;
    border: 1px solid #b3e98b4d;
    padding: 30px 40px;
    position: relative;
    transition: all 0.5s ease-out;
    margin-top: 80px;
    margin-bottom: 30px;
}

.fleet-div::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 5px;
    height: 0%;
    background-color: #182012;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: all 0.5s ease-out;
}

.fleet-div:hover::before {
    height: 100%;
}

.fleet-left {
    width: 50%;
}

.fleet-left h3 {
    font-size: 24px;
    font-weight: 800;
    color: #182012;
}

.fleet-left p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.fleet-right {
    width: 50%;
    text-align: right;
}

.fleet-right img {
    transition: all 0.5s ease-out;
}

.fleet-div:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #182012;
    color: #fff;
}

.footer-inner {
    padding: 80px 0;
}

.ft-logo {
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.footer h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.link-div {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 30px;
}

.link-div h4 {
    margin-bottom: 0;
}

.link-div ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.link-div ul li {
    margin-bottom: 0;
}

.copy-right {
    border-top: 1px solid #ffffffbe;
    padding: 20px 0;
}

.copy-right a {
    color: #fff;
    text-decoration: underline;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .main-heading h2 {
        font-size: 32px;
    }

    .train-upper-img {
        position: relative;
        width: 357px;
        height: 590px;
        border-right: 7px solid #182012;
    }

    .train-upper-img img {
        width: 345px;
    }

    .fleet-right img {
        width: 100%;
    }

    .service-card {
        padding: 50px 30px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-number span {
        font-size: 35px;
    }

    .service-number {
        width: 64px;
        height: 64px;
        left: 50%;
        top: -86px;
        transform: translateX(-50%);
    }

    .airport-btns {
        width: 70%;
    }

    .airport-card-content h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main-heading h2 {
        font-size: 26px;
    }

    .main-station {
        flex-direction: column;
    }

    .station-sec {
        padding: 50px 0;
    }

    .station-left,
    .station-right {
        width: 100%;
    }

    .train-upper-img {
        display: none;
    }

    .train-lower-img {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .train-lower-img img {
        width: 100%;
    }

    .station-left ul {
        margin-top: 30px;
    }

    .station-left ul li {
        font-size: 14px;
    }

    .service-main {
        flex-direction: column;
    }

    .service-col {
        width: 100%;
    }

    .service-card {
        padding: 50px;
    }

    .service-number {
        width: 64px;
        height: 64px;
        left: 50%;
        top: -81px;
        transform: translateX(-50%);
    }

    .service-number span {
        font-size: 35px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-btn a {
        font-size: 16px;
    }

    .airport-sec {
        padding: 50px 0;
    }

    .main-airport {
        margin-top: 50px;
        flex-direction: column;
    }

    .airport-col {
        width: 100%;
    }

    .airport-card-content h3 {
        font-size: 20px;
    }

    .airport-btns {
        width: 100%;
    }

    .main-fleet {
        flex-direction: column;
    }

    .fleet-div {
        flex-direction: column;
        padding: 20px;
        margin-top: 20px;
    }

    .fleet-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .fleet-left h3 {
        font-size: 20px;
    }

    .fleet-left p {
        font-size: 13px;
    }

    .fleet-right {
        width: 100%;
        text-align: center;
    }

    .fleet-right img {
        width: 100%;
    }

    .footer-inner {
        padding: 50px 0;
    }

    .footer h4 {
        font-size: 18px;
        margin-top: 30px;
    }

    .link-div h4 {
        margin-bottom: 0;
        margin-top: 0;
    }
}