.pageHero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40svh;
    display: flex;
    align-items: flex-end;
    padding: 6rem 0
}

.overlay {
    width: 100%;
    height: 30svh;
    background-color: var(--overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 3rem 4rem;
}

.tourInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 6rem;
    row-gap: 4rem;
}

.tourDescription {
    width: 45%;
    font-size: 1.8rem;
    line-height: 1.4;
}

.tour-image {
    width: 45%;
    height: 500px;
    object-fit: contain;
}

.bookingForm {
    border-top: 1px #000 solid;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 4rem;
}

.bookingFormHeading {
    width: 100%;
}

.inputBlock {
    width: 45%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formInput,
.dateInput {
    width: 90%;
    font-size: 2rem;
    line-height: 1.8;
    padding-left: 2rem;
}

.fieldset-row {
    width: 100%;
}

.dateBlock {
    width: 10%;
    margin: 1rem 0;
}

.fieldset {
    width: 100%;
    margin: 2rem 0;
}

.bookingFormSubmitButton {
    padding: 1.5rem 4rem;
    background-color: var(--beige);
    color: var(--brown);
    border-radius: 10px;
    font-weight: 800;
}

.terms-info {
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.terms-content {
    width: 95%;
    /* background-color: green; */
}

/* responsive4 */
@media (max-width:1249px) {
    .tourInfo {
        padding: 1rem;
        row-gap: 2rem;
    }
    .tourDescription {
        width: 80%;
    }

    .tourDescription p {
        text-wrap-style: auto;
    }

    .tour-image {
        width: 80%;
        height: auto;
        object-fit: contain;
    }
}


/* responsive9 */
@media (max-width:430px) {
    .tourInfo {
        padding: 0;
    }
    .bookingForm {
        width: 80%;
        flex-direction: column;
    }
}