
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

body{ font-family: 'Open Sans', sans-serif; }

.section {
	position: relative;
	height: 100vh;
}
.header{ position: absolute; top: 15px; width: 100%;  }
 .section-center {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-30%);
	transform: translateY(-30%);
}

#booking {
	font-family: 'Open Sans', sans-serif;
	background-image: url('../img/hero_bg.jpg');
	background-size: cover;
	background-position: center;


}

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

.booking-form {
	background-color: rgba(255, 255, 255, 0.75);
	padding: 0px 0px 30px 0;
	-webkit-box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

.booking-form .form-group {
	position: relative;
	margin-bottom: 15px; margin-left: 20px; margin-right: 20px;
	font-weight: 400;
}

.booking-form h5{ background: #F58220; color: #fff; font-size: 21px; font-weight:700;  margin: 0 0 15px 0; padding: 12px 15px; text-align: center;  }
.booking-form .form-control {
	background-color:#fff;
	border-radius: 0px;
	border: solid 1px #ccc;
	height: 40px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #333;
	font-size: 14px;
}

.booking-form .form-control::-webkit-input-placeholder {
	color: rgba(62, 72, 92, 0.3);
}

.booking-form .form-control:-ms-input-placeholder {
	color: rgba(62, 72, 92, 0.3);
}

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

.booking-form input[type="date"].form-control:invalid {
	color: rgba(62, 72, 92, 0.3);
}

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


.booking-form .form-label {
	display: inline-block;
	color: #3e485c;
	font-weight: 700;
	margin-bottom: 6px;
	margin-left: 7px;
}

.booking-form .submit-btn {
	display: block; margin: auto; text-align: center; width: 110px;
	color: #fff;
	background-color: #000;
	font-weight: 700;
	padding: 14px 30px;
	border-radius: 4px;
	border: none;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
	opacity: 0.9;
}

.booking-cta {
	margin-top: 80px;
	margin-bottom: 30px;
}

.booking-cta h1 {
	font-size: 52px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

.booking-cta p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1200px){
	.container {
	    width: 1300px;
	}
}



/* The Modal (background) */
#myBtn{ display: none; }
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 98%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-200px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-200px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
      color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 1;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 8px 15px;
  background-color: #F58220;
  color: white;
}
.modal-header h2{ margin: 0; padding: 0; line-height: normal; font-size: 18px; }
.modal-body {padding: 30px 0;}
.project-list{ position: relative; }
.project-list h3{ font-size: 32px; color: #fff; margin:50px 0 20px 0; padding: 0;   }
.project-list ul{ margin:0; padding: 0 0 0 0px; list-style: none; }
.project-list ul li{ list-style: none; font-size: 16px; color: #fff;font-weight: normal; padding: 5px 0 5px 40px; background: url(../img/bullet-list-icon.png) no-repeat left/30px; }

.logo-transparent img{ height: 80px; }
/* Mobile Screen  */

 @media (max-width:768px) {
 	#myBtn{ display:block; background: #F58220; text-align: center; color: #fff; padding: 10px 10px; position: fixed; bottom: 0; 
 		font-size: 18px; font-weight: bold; border: 0; width: 100%;     text-transform: uppercase;  text-shadow: -1px 2px 1px black; }
 	#booking {	background-image: url('../img/hero_bg.jpg'); height: 100%;  background-size: cover;
    background-repeat: no-repeat; margin-bottom: 10%;   position: absolute; width: 100%;  }

 	.booking-form{ margin: 0px 0; box-shadow: inherit; }
.section-center{position: relative; top: inherit; left: inherit;transform: inherit; padding-bottom: 30px; }
.section-center::before{ position: absolute;content: ''; background-color: #111; bottom: 0;width: 100%;z-index: 0; height: 53%; }
.header{ position: relative; top: 15px;  }
.logo-transparent{    text-align: left;    display: inline-block;width: 100%;}
.logo-transparent img{width: 100%;}
.project-list{padding-bottom: 30px;}
}
