.section {
    position: relative;
    height: 100vh;
}

.section .section-center {
    /* position: absolute; */
    /* top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); */
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.5)
        ),
        url("../img/bg.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

#booking {
    font-family: "Alice", serif;
    /* background: rgba(30, 30, 30, 0.33); */
}

.booking-form {
    position: relative;
    /* max-width: 912px; */
    width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
}

.booking-form .booking-bg {
    position: absolute;
    left: 25px;
    top: -25px;
    bottom: -25px;
    width: 400px;
    background-image: url("../img/bg2.webp");
    background-size: cover;
    background-position: center;
    padding: 25px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-form .booking-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(60, 60, 60, 0.78);
}

.booking-form > form {
    margin-left: 425px;
    padding: 30px;
}

.booking-form .form-header {
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 20;
}

.booking-form .form-header h2 {
    font-family: "Playfair Display", serif;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 900;
    color: #fff;
    font-size: 30px;
    text-transform: capitalize;
}

.booking-form .form-header p {
    color: #fff;
    font-size: 18px;
}

.booking-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.booking-form .form-control {
    background-color: #fff;
    height: 45px;
    padding: 0px 15px;
    color: #151515;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none;
    /* border-radius: 40px; */
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .form-control::-webkit-input-placeholder {
    color: #e5e5e5;
}

.booking-form .form-control:-ms-input-placeholder {
    color: #e5e5e5;
}

.booking-form .form-control::placeholder {
    color: #e5e5e5;
}

.booking-form .form-control:focus,
.booking-form .form-control[disabled] {
    background: #f8f8f8;
}

.booking-form input[type="date"].form-control:invalid {
    color: #e5e5e5;
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-form select.form-control:invalid {
    color: #e5e5e5;
}

.booking-form select.form-control option {
    color: #151515;
}

.booking-form select.form-control + .select-arrow {
    position: absolute;
    right: 3px;
    bottom: 5px;
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: #e5e5e5;
    font-size: 14px;
}

.booking-form select.form-control + .select-arrow:after {
    content: "\279C";
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.booking-form .form-label {
    color: #3a3a3a;
    text-transform: uppercase;
    line-height: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: 400;
    /* margin-left: 20px; */
}

.booking-form .form-btn {
    margin-top: 30px;
}

.booking-form .submit-btn {
    display: block;
    width: 100%;
    color: #fff;
    background-color: #3a3a3a;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 40px;
    height: 55px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
    background-color: rgba(133, 104, 73, 1);
}
.front-logo {
    width: 10em;
    text-align: center;
    margin-bottom: 1em;
}
.text-white {
    color: white !important;
}
.module-section {
    background: #794046;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.bg-success {
    background-color: #28a745 !important;
    color: #ffffff !important;
}

@media only screen and (max-width: 768px) {
    .booking-form .booking-bg {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        top: -15px;
        width: 95%;
        margin: auto;
    }
    .booking-form > form {
        margin-left: 0px;
    }
    /* .booking-form .form-header {
        margin-top: 38em;
    } */
}
