.navbar.navbar-expand-lg {
    display: none !important;
}

.web-footer {
    display: none !important;
}


.pg-container {
    max-width: 1200px;
    margin-inline: auto;
}

.pg-booking {
    min-height: 100dvh;
    background: linear-gradient(111deg, #23282d 0%, #23282d61 25%, rgba(35, 40, 45, 0.1) 100%);
    background-repeat: no-repeat;
}

.pg-header__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.pg-header__navbar-brand {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.25rem;
}

.pg-booking--background-image {
    position: absolute;
    z-index: -1;
    background-image: url("/files/Background Image.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-filter: grayscale(0.9);
    filter: grayscale(0.9);
    width: 100%;
    height: 100dvh;
}



.pg-booking .pg-heading {
    font-size: 3rem !important;
    font-weight: 800;
}

.pg-booking .pg-content {
    padding: 6rem 1rem;
    color: #b49164;
}

.pg-booking .booking-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pg-btn {
    border: none;
    padding: .5rem 1rem;
    border-radius: .5rem;
    background-color: #b49164;
    color: #FFF;
}



.input-box {
    margin-bottom: 1rem;
    font-size: .875rem;
}

.input-box input,
select {
    width: 100%;
    font-size: inherit;
    border: 1px solid lightgray;
    padding: .5rem .5rem;
    border-radius: .25rem;
}

.input-box__label {
    font-size: inherit;
    font-weight: 600;
    color: #000;
}

.input-box__column {
    display: flex;
    gap: 1rem;
}

.input-box__column .input-box {
    flex-basis: 100%;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-item.blinking {
    animation: blink 1s step-start infinite;
}