.section {
	/*position: relative;*/
	/*height: 100vh;*/
}

.section .section-center {
	/*position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);*/
}

#booking {
	/*font-family: 'Alice', serif;
	background: rgba(133, 104, 73, 0.33);*/
}

.booking-form {
	position: relative;
	/*max-width: 900px;*/
	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 0px 10px 1px rgba(0, 0, 0, 0.1);
}

.booking-form .booking-bg {
	position: absolute;
	left: 25px;
	top: -25px;
	bottom: -25px;
	width: 400px;
	background-image: url('../img/background.jpg');
	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: rgb(72 140 202 / 40%);
}

.booking-form>form {
	margin-left: 425px;
	padding: 30px;
}

.booking-form .form-header {
	margin-bottom: 30px;
	margin-top: 60px;
	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: 42px;
	text-transform: capitalize;
}

.booking-form .form-header p {
	color: #fff;
	font-size: 18px;
}

.booking-form .form-group {
	position: relative;
	margin-bottom: 10px;
}

.booking-form .form-control {
	background-color: #f7f7f7;
    height: 45px;
    padding: 7px 10px 8px 10px;
    color: #444444;
    border: 1px solid #dadada;
    font-size: 13px;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .form-control::-webkit-input-placeholder {
	color: #b1b1b1;
}

.booking-form .form-control:-ms-input-placeholder {
	color: #b1b1b1;
}

.booking-form .form-control::placeholder {
	color: #b1b1b1;
}

.booking-form .form-control:focus {
	color: #444444;
    background-color: #fff;
    border-color: #488ccac4;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(72 140 202 / 30%);
}

.booking-form input[type="date"].form-control:invalid {
	color: #b1b1b1;
}

.booking-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.booking-form select.form-control:invalid {
	color: #b1b1b1;
}

.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: 30px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: #488cca;
    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 {
	font-size: 14px;
	margin-bottom: 2px;
	color: #488cca;
	font-weight: 400;
}

.booking-form .form-btn {
	margin-top: 30px;
}

.booking-form .submit-btn {
	display: block;
    width: 100%;
    color: #fff;
    background-color: #488cca;
    font-weight: 400;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    height: 50px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
	background-color: #076dca;
}

@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;
	}
}