/* ====================================================
   ROYAL COACH CHARTER
   PRIVATE GROUP TRANSPORTATION
   ==================================================== */

.private-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #777;
}

.private-page *,
.private-page *::before,
.private-page *::after {
    box-sizing: border-box;
}


/* ALL PARAGRAPHS */

.private-page p {
    color: #777;
}


/* LABELS */

.private-label {
    display: block;
    margin-bottom: 10px;
    color: #79c843;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* TITLE */

.private-title {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px 30px 45px;
    text-align: center;
}

.private-title h1 {
    margin: 0 0 18px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
}

.private-title p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}


/* MAIN IMAGE */

.private-main-image {
    max-width: 1100px;
    height: 400px;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
}

.private-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* COMMON */

.private-section,
.private-intro {
    width: 100%;
    padding: 60px 20px 40px;
}

.private-grey {
    background: #f2f3f3;
}

.private-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.private-narrow {
    max-width: 850px;
}

.private-page h2 {
    max-width: 1000px;
    margin: 0 auto 25px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35;
}

.private-inner > p {
    max-width: 1100px;
    margin: 0 auto 15px;
    font-size: 16px;
    line-height: 1.85;
}


/* SERVICES GRID */

.private-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 55px;
    text-align: left;
}

.private-grid h3 {
    margin: 0 0 10px;
    color: #777;
    font-size: 17px;
    font-weight: 600;
}

.private-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}


/* PHOTOS */

.private-photo-row {
    max-width: 1100px;
    margin: 70px auto 10px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.private-photo {
    height: 340px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
}

.private-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* DETAILS */

.private-details {
    max-width: 1000px;
    margin: 22px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 12px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

.private-details span:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: #79c843;
}


/* STEPS */

.private-steps {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.private-steps > div > span {
    display: block;
    margin-bottom: 12px;
    color: #79c843;
    font-size: 12px;
    font-weight: 600;
}

.private-steps h3 {
    margin: 0 0 10px;
    color: #777;
    font-size: 16px;
    font-weight: 600;
}

.private-steps p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}


/* LINK */

.private-text-link {
    display: inline-block;
    margin-top: 15px;
    color: #79c843 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.private-text-link:hover {
    color: #559f28 !important;
}


/* FAQ */

.private-faq {
    max-width: 800px;
    margin: 40px auto 16px;
    text-align: left;
}

.private-faq h3 {
    margin: 30px 0 8px;
    color: #777;
    font-size: 16px;
    font-weight: 600;
}

.private-faq p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}


/* END */

.private-end {
    padding: 65px 30px;
    text-align: center;
}

.private-end p {
    margin: 0;
    font-size: 16px;
}


/* TABLET */

@media only screen and (max-width: 900px) {

    .private-grid {
        grid-template-columns: 1fr 1fr;
    }

    .private-steps {
        grid-template-columns: 1fr 1fr;
    }

}


/* MOBILE */

@media only screen and (max-width: 600px) {

    .private-title {
        padding: 45px 22px 35px;
    }

    .private-title h1 {
        font-size: 32px;
    }

    .private-main-image {
        height: 280px;
        margin-bottom: 45px;
    }

    .private-section,
    .private-intro {
        padding: 55px 22px;
    }

    .private-page h2 {
        font-size: 30px;
    }

    .private-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .private-photo-row {
        grid-template-columns: 1fr;
        margin: 45px auto;
        padding: 0 22px;
    }

    .private-photo {
        height: 260px;
    }

    .private-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .private-details {
        display: block;
    }

    .private-details span {
        display: block;
        margin-bottom: 7px;
    }

    .private-details span:not(:last-child)::after {
        content: "";
        margin: 0;
    }

}