html {
    min-height: 100%;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    font-family: "Font Awesome 5 Free", 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
	background: #fff;
	color: #222;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

a {
    /*background: #009C84;*/
    /*padding: 12px 26px;*/
    /*border-radius: 12px;*/
    /*margin: 20px;*/
    color: #009C84;
    display: inline-block;
    transition: .3s ease;
    font-weight: 500;
}


a:hover {
    text-decoration: none;
    /*background: #0f816f;*/
    color:  #0f816f;
}


a:focus {
	text-decoration: none;
	outline: unset;
}

button:focus, div:focus,
.btn:focus {
    outline: unset;
    box-shadow: unset;
}

.btn-goto {
    font-weight: 500;
    padding: 16px 50px;
    text-align: center;
    background-color: #009C84;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
    float: left;
    clear: both;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
    width: 95%;
    font-size: 24px;
    line-height: 1.5em;
    margin-bottom: 30px;
    margin: 20px auto;
}

@media(max-width: 990px) {
    p {
        width: 100%;
    }
}

.landing {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    background: rgb(255 255 255 / 70%);
    padding: 3em 3em 2em;
}

.logo {
    margin-bottom: 40px;   
}

.logo img {
    max-width: 100%;
    height: 86px;
    object-fit: cover;
}



/*-- Contact form --*/

.contact-us {
    position: relative;
}

.contact-us .row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 2;
}



.contact-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
}

.contact-bg:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    transform: translateY(-50%);
}

.contact-bg img {
    /*色彩增值*/
    mix-blend-mode: color-burn; 
    width: 100%;
    height: 860px;
    object-fit: cover;
}


.contact-detail {
    padding-left: 60px;
}

@media(max-width: 990px) {
    .contact-detail {
        width: 100%;
        order: 1;
        padding-left: 0;
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .contact-bg {
        top: 0;
        transform: unset;
    }
    
}

@media(max-width: 768px) {
    .contact-detail {
        width: 80%;
        flex-wrap: wrap;
        justify-content: left;
        margin-bottom: 0;
    }
    
    .detail-list {
        width: 100%;
    }
    
    .contact-bg img {
        height: 80vh;
    } 
}

.contact-detail .detail-list {
    margin-bottom: 60px;
}

.detail-list h4,
.detail-list p {
    margin-bottom: 10px;
    font-weight: bold;
}

.detail-list p {
    font-weight: 300;
}

.detail-list a {
    font-weight: 500;
    border-bottom: 1px solid #009B7C;
}

.contact-form {
    background: #222;
    border-radius: 40px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

#booking {
    margin-top: 40px;
}

@media(max-width: 990px) {
    .contact-form {
        width: 90%;
        order: 2;
        z-index: 9;
        padding: 50px 30px 30px;
    }
    
    #booking .contact-form {
        padding: 40px 20px;
        width: 100%;
    }
}

.contact-form .row {
    justify-content: left;
    margin-bottom: 0;
}

.contact-form .contact-btn {
  font-weight: 500;
  padding: 16px 50px;
  width: 200px;
  text-align: center;
  background-color: #007076;
  color: #fbfbfb;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
  float: left;
  clear: both;
}

.contact-form .contact-btn:focus {
    outline: none;
}

.contact-form .contact-btn:after {
  content: "\f1d8";
  position: absolute;
  padding-left: 10px;
  transform: translate(0px);
  font-weight: 900;
}


.contact-form .contact-btn:hover {
  background-color: #0D816F;
  color: #fff;
}

.contact-form .contact-btn:hover:after {
  animation: flyout 2s 3;
}

@keyframes flyout {
  0% {
    transform: translate(-2px, 5px);
  }
  
  30% {
    opacity: 0;
  }
  
  40% {
    transform: translate(30px, -30px);
  }
  
  50% {
    transform: translate(-20px, 40px);
    opacity: 0;
  }
  
  80% {
    opacity: 1;
    transform: translate(0px);
  }
  
  100% {
    opacity: 1;
  }
}


.contact-form .form-field {
    position: relative;
    margin: 32px 0;
    font-size: 14px;
    color: #fbfbfb;
}

.contact-form .form-field p {
    font-size: 14px;
}

@media(max-width: 576px) {
    .contact-form .form-field {
        margin: 10px 0;
    }
}

.contact-form .input-text {
    display: block;
    width: 100%;
    height: 45px;
    padding-left: 5px;
    padding-bottom: 0px;
    border-width: 0 0 1px 0;
    border-color: rgba(255,255,255,.8);
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 26px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form .input-text:focus {
    outline: none;
    border-color: #fbfbfb;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    color: #fbfbfb;
}

.contact-form .label {
    position: absolute;
    left: 14px;
    bottom: 11px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: rgba(255,255,255,.8);
    cursor: text;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

#Enquiry, #Title, #State {
    width: 100%;
    height: 45px;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid #fbfbfb;
    background: transparent;
    color: #fbfbfb;
    outline: 0;
    /*-webkit-appearance: none;*/
    -webkit-border-radius: 0;
}


#Enquiry:focus, #Title:focus, #State:focus {
    /*border: 0;*/
}

#Enquiry option {
    display: block;
}


.contact-form .form-control {
    background: transparent;
    border-radius: 16px;
    border-color: #fbfbfb;
    margin-top: 16px;
    padding: 18px;
    color: #fbfbfb;
}

.contact-form .form-control:placeholder {
    color: #777;
}

.form-control:focus {
    border-color: #009B7C;
}

.msg-label  {
    top: 11px;
    bottom: auto;
}


.form-field.has-error input {
    border-color: #a94442;
}

.contact-form .submit {
    text-align: center;
    margin: 15px 0;
    padding: 0 15px;
}

.g-recaptcha {
    float: left;
    margin-bottom: 20px;
}

@media(max-width: 990px) {
    .g-recaptcha {
        float: left;
    }
}

.g-recaptcha > div {
    width: 100% !important;
}

@media(max-width:767px) {
    .form-field {
        padding-top: 30px;
    }

    .g-recaptcha {
        -webkit-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
}


#formWidgetSubmitResultText {
    width: 100%;
    text-align: left;
    color: #86CCDD;
    margin: 20px 0;
    display: inline-block;
}


.contact-title {
    color: #fbfbfb;
}


.help-block {
    display: inline-block;
    margin-left: 10px;
    color: #bf0e0e;
}

option[value=""][disabled] {
  display: none;
}

/*-- Contact form end--*/

#header {
    display: none;
}