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

.section .section-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#booking {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
}

#booking::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
}

.booking-cta h1 {
    font-size: 42px;
    text-transform: uppercase;
    color: #181818;
    font-weight: 500;
}

.booking-cta p {
    font-size: 20px;
    color: #181818;
}

.booking-form {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.3);
    max-width: 642px;
    width: 100%;
    margin: auto;
    padding: 40px 30px;
}

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

.booking-form .form-control {
    background-color: #fff;
    height: 55px;
    padding: 0px;
    padding-top: 15px;
    color: #181818;
    font-size: 16px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.booking-form .form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.booking-form .form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.booking-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.booking-form input[type="date"].form-control:invalid {
    color: rgba(0, 0, 0, 0.2);
}

.booking-form .form-group:not(.input-not-empty) .form-control:not(:focus) {
    color: transparent;
}

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

.booking-form select.form-control+.select-arrow {
    position: absolute;
    right: 0px;
    bottom: 7px;
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.2);
    font-size: 12px;
}

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

.booking-form .form-label {
    color: #333;
    font-weight: 300;
    position: absolute;
    top: 20px;
    left: 0px;
    text-transform: uppercase;
    line-height: 24px;
    height: 23px;
    font-size: 12px;
    pointer-events: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .form-group .form-control:focus+.form-label {
    top: 0px;
    color: #c71a1e;
    font-size: 12px;
}

.booking-form .form-group.input-not-empty .form-label {
    top: 0px;
    color: #c71a1e;
    font-size: 12px;
}

.booking-form .submit-btn {
    color: #fff;
    background-color: #c71a1e;
    font-weight: 500;
    height: 55px;
    padding: 10px 35px;
    font-size: 16px;
    border: none;
    display: block;
    width: 100%;
    text-transform: uppercase;
}