* {
  margin: 0;
  padding: 0;
}

html {
  font-size      : 20px;
  scroll-behavior: smooth;
}

.section-spacing {
  padding: 40px 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
}

/* Form */
.form-title {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
} 

.modal-footer {
  justify-content: center;
}

.submit-btn {
  background-color: #5695c9;
  color: #fff;
}

.submit-btn:focus {
  box-shadow: none;
  color: #fff;
}

/* Hide Number Field arrows */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; 
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Banner */
.banner-wrapper {
  background-image: url('../img/banner-bg.jpg');
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  position: absolute;
  top: 6%;
  right: 0;
  transform: translateX(-50px);
  width: 20%;
}

.brand-logo img {
  border-radius: 52px;
  background: #e0e0e0;
  box-shadow:  5px 5px 12px #c7c7c7,
             -5px -5px 12px #f9f9f9;
}

.ribbon_div{
	 position: absolute;
/*    top: 15%;*/
    top: 12%;
    left: 27%;
    text-align: center;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-logo {
    width: 15%;
  }

  .ribbon-content {
    width: 70%;
  }
}

@media only screen and (max-width: 991px) {
  .banner-wrapper {
    height: 50vh;
  }
}

@media only screen and (max-width: 767px) {

.ribbon_div{
	 position: absolute;
    top: 10%;
    left: 6%;
    text-align: center;
    margin: 0 auto;
}

  .brand-logo {
    width: 22%;
    top: 2%;
    transform: translateX(-30px);
  }

  .ribbon-content {
    width: 90%;
  }
  
  .luxurious-lifestyle-section {display:none;}
}


/* ZERO-G BEDS */
.zero-g-beds-title {
  color: #57c5ce;
  margin-bottom: 30px;
  font-family: 'gill_sans_bold';
  font-size: 45px;
  line-height: 30px;
  letter-spacing: 5px;
}

.zero-g-beds-subtitle {
  margin-bottom: 40px;
  font-family: 'gill_sans_bold';
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.zero-g-beds-content {
  padding-top: 40px;
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: 1.2px;
}

.remote-controlled-section {
  padding: 30px 0;
  background-image: url('../img/muddy-bg.jpg');
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.remote-controlled-wrapper p {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 0;
  font-weight: 600;
}

.btn-know-more-primary {
  text-transform: uppercase;
  background-color: #5695c9;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 3px 0 0 #497eaa;
  font-family: 'myriad_pro_bold';
}

.hand {
  position: relative;
}

.hand::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: red;
}

.btn-know-more-primary:focus {
  box-shadow: 0 3px 0 0 #497eaa;
}

.hand {
  width: 12%;
}

.gold-bg-section {
  background-image: url('../img/gold-gradient.jpg');
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .remote-controlled-wrapper {
    display: flex;
  }

  .remote-controlled-wrapper p:not(:last-child)::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: gray;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .zero-g-beds-title { 
    font-size: 35px;
    letter-spacing: 3.5px;
    margin-bottom: 25px;
  }
  
  .zero-g-beds-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .zero-g-beds-content { 
    padding-top: 25px;
    font-size: 16px;
  }

  .remote-controlled-section {
    margin: 30px 0;
  }

  .remote-controlled-wrapper p {
    padding: 10px;
    letter-spacing: 2px;
  }

  .zero-g-beds-content {
    letter-spacing: 2.2px;
  }
}

@media only screen and (max-width: 767px) {
  .zero-g-beds-title { 
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: 3px;
    margin-bottom: 15px;
  }

  .zero-g-beds-subtitle {
    line-height: 22px;
    letter-spacing: 1px;
    font-size: 18px;
    margin-bottom: 28px;
  }

  .zero-g-beds-img {
    margin-bottom: 20px;
  }

  .zero-g-beds-content {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
  }

  .remote-controlled-wrapper p {
    font-size: 16px;
  }

  .remote-controlled-wrapper p:not(:last-child)::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 50%;
    height: 1px;
    background-color: gray;
    transform: translateX(-50%);
  }
  
  .gold-bg-section {
    padding-top: 12px;
  }
}


/* LUXURIOUS LIFESTYLE */
.luxurious-lifestyle-section {
  background-image: url('../img/bed.jpg');
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-transform: uppercase;
}

.luxurious-lifestyle-wrapper {
  position: relative;
}

.luxurious-lifestyle-wrapper::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-10px);
}

.luxurious-lifestyle-wrapper span {
  font-family: 'myriad_pro_bold';
  font-size: 20px;
  letter-spacing: 2px;
}

.luxurious-lifestyle-wrapper h2 {
  color: #ca9b4a;
  font-family: 'myriad_pro_bold';
  font-size: 40px;
  letter-spacing: 2.5px;
}

.mobile-hand {
  width: 20%;
}

.mobile-controlled-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.mobile-controlled-desc {
  font-family: 'avenir_black';
  letter-spacing: 2px;
}

/*.mobile-controlled-content {
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-family: 'avenir_book';
}*/
.mobile-controlled-content,
.mobile-controlled-content1 {
  letter-spacing: 4px;
  line-height: 25px;
  font-family: 'avenir_book';
}
.mobile-controlled-content1{
  margin-bottom: 15px;
}

.btn-know-more-secondary {
  text-transform: uppercase;
  background-color: #b88d43;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 2px;
  border: none;
  box-shadow: 0 3px 0 0 #775b2c;
}

.btn-know-more-secondary:focus {
  box-shadow: 0 3px 0 0 #775b2c;
}

/* elevations */
.elevations-section {
  text-align: center;
}

.elevations-content {
/*  margin-bottom: 30px;*/
  letter-spacing: 1.2px;
}

.elevations-img {
  border: 8px solid #fff;
  /* min-height: 307px; */
}

.elevations-btn {
  margin-top: 20px;
}

.special-features-section {
  margin-top: 40px;
}

.special-features-title {
  margin-bottom: 20px;
  position: relative;
}

.special-features-title::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 40%;
  height: 2px;
  background-color: #471b02;
}

.special-features-title::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 40%;
  height: 2px;
  background-color: #471b02;
}

.special-features-wrapper {
  background-color: #471b02;
  color: #fff;
  padding: 20px 0;
}

.special-features-content-container {
  display: flex;
}

.special-features-content-wrapper {
  padding: 0 20px;
}

.special-features-content-wrapper span {
  color: #9c8137;
}

@media only screen and (max-width: 991px) {
  .mobile-hand {
    width: 30%;
  }

  .mobile-controlled-wrapper {
    padding: 20px 20px 30px 20px;
  }

  .mobile-controlled-desc {
    font-size: 32px;
  }

  .mobile-controlled-content {
    font-size: 25px;
  }

  .special-features-title::before, .special-features-title::after {
    width: 34%;
  }
}

@media only screen and (max-width: 767px) {
  .d-why-choose1{
    width: 100% !important;
    flex-basis: unset !important; 
  }
  .luxurious-lifestyle-wrapper {
    padding-left: 40px;
  }

  .luxurious-lifestyle-wrapper::before {
    transform: translateX(30px);
  }

  .luxurious-lifestyle-wrapper span {
    font-size: 16px;
  }

  .luxurious-lifestyle-wrapper h2 {
    font-size: 33px;
  }

  .mobile-hand {
    width: 35%;
  }

  .mobile-controlled-desc {
    font-size: 24px;
  }

  .mobile-controlled-content {
    font-size: 18px;
  }

  .btn-know-more-primary, .btn-know-more-secondary {
    font-size: 16px;
  }

  .elevations-content {
    font-size: 16px;
  }

  .elevations-img {
    margin-bottom: 20px;
  }

  .special-features-title {
    font-size: 24px;
  }

  .special-features-title::before, .special-features-title::after {
    width: 18%;
  }

  .special-features-content {
    font-size: 16px;
  }

  .special-features-content-container {
    flex-flow: row wrap;
  }

  .special-features-content-wrapper {
    padding: 10px 0;
    flex-basis: calc(100% / 2);
  }
  .titleSec span:last-child:not(first) {
      font-size: 38px !important;
  }
  .titleSec span:first-child:not(last) {
      font-size: 20px !important;
      margin-bottom:10px;
  }
}
.slideshow-container {
  position: relative;
  background: transparent;
}

/* Slides */
.mySlides {
  display: none;
  padding: 20px 40px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  color: #212529;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
    width: 42px;
    height: 42px;
    padding: 0;
    line-height: 42px;
    text-align: center;
  transition: all 0.5s ease-in-out;
}

/* Position the "next button" to the right */
.next {
  right: -20px;
}
/* Position the "prev button" to the right */
.prev {
  left: -20px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: white;
  text-decoration: none !important;
  transform: scale(1.2);
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
    background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}


/* Add a blue color to the author */
.author {color: cornflowerblue;}

.zero-g-title1{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  font-family: 'Open Sans', sans-serif;
}
.d-why-choose2{
      flex-wrap: wrap;
}

.d-why-choose1{
    width: 24%;
    text-align: center;
    margin: 5px;
    
    padding: 20px;
    background-color:rgb(255 255 255 / 68%);
}
.d-why-choose h5{
  text-align: center;
  color: #471b02;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.25rem;
  position: relative;
}
/*.d-why-choose h5:before{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 37%;
    height: 2px;
    background-color: #471b02;
}
.d-why-choose h5:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 37%;
    height: 2px;
    background-color: #471b02;
}*/
.d-why-choose p{
     font-size: 20px;
    font-weight: 600;

  color: #471b02;
  position: relative;
}

.d-why-choose span{
  color: #fff;
}

#popup_enq input, #popup_ideodemo input {
    border: 1px solid #ccc;
    outline: 0;
    background: #6f6f6f00;
    padding: 10px;
    margin: 3px 0 !important;
    border-radius: 5px;
    width: 100%;
    color: #000;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
.side_btn {
    position: fixed;
    top: 35%;
    right: 0px;
    z-index: 9999;
}
    .side_btn img {
      animation: floating-text 0.4s ease alternate infinite;
    }

    .bed-form{
    text-align: center;
    }
    .bed-form #popup_enq2 .modal-dialog, #popup_ideodemo .modal-dialog{
    width: 70%;
    max-width: 70% !important;
  }
  .bed-form .bed-icon-form .bed-icon-f-detail img{
    width: 50px;
    height: 50px;
  }
  .bed-form .bed-icon-form .bed-icon-f-detail{
    padding: 8px 17px;
    margin: 5px auto;
    display: block;    
    width: 80%;
}
  .bed-form .modal .modal-dialog .modal-content .modal-header .modal-title  strong{
    font-size: 18px;
  }
  .bed-form .bed-icon-form .bed-icon-f-detail h4{
    font-size: 20px;
    font-weight: 600;
    color: #5c5c5c;
  }
  .bed-form .bed-icon-form .bed-icon-f-detail p{
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin: 7px 0;
  }
  .bed-icon-form hr {
    margin:5px 0;
  }
  #popup_enq2 textarea{
    border: 1px solid #ccc;
    outline: 0;
    background: #6f6f6f00;
    padding: 10px;
    margin: 3px 0 !important;
    border-radius: 5px;
    width: 100%;
    color: #000 !important;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
  }
  .form-control1::placeholder {
    color: #999 !important;
  }
  .bed-form .modal-body{
    margin-top: 30px;
  }
  @media only screen and (max-width: 768px) {
  .side_btn1{
    top: 17%;
  }
  .particles_effect .container1 {
    height: 113% !important;
  }
  .uk-container h1{
    font-size:20px !important;
  }
}
  .bed-form .modal-content{
    padding: 0px 42px;
  }
  .side_btn1 {
    position: fixed;
    top: 31%;
    left: -6px;
    z-index: 9999;
  }
  .bed-form .modal-content{
    padding: 0px 42px;
  }
 .modal-header .close {
    margin-top: -12px;
    padding: 15px 15px;
}
  .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}
  button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
  }
  .modal-title {
    margin: 0;
    line-height: 1.42857143;
    font-size: 18PX;
  }
  .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    display: block;
  }
  #popup_enq2 input, #popup_ideodemo input {
    border: 1px solid #ccc;
    outline: 0;
    background: #6f6f6f00;
    padding: 10px;
    margin: 3px 0 !important;
    border-radius: 5px;
    width: 100%;
    color: #000;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
#popup_enq2 textarea {
    border: 1px solid #ccc;
    outline: 0;
    background: #6f6f6f00;
    padding: 10px;
    margin: 3px 0 !important;
    border-radius: 5px;
    width: 100%;

    color: #000 !important;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
.sticky-form {
    position: absolute;
    width: 75%;
	z-index:111;
    bottom: 0px;
    margin-bottom: 0px;
	transform: translate(-50%,0);
    left: 50%;
    background-color:#006b7496;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    opacity: 0.98;
    padding: 15px 30px 15px 32px;
}
.sticky-form input{
    border: 1px solid #ccc;
    outline: 0;
    background: #fff;
    padding: 10px;
    margin: 3px 0 !important;
    border-radius: 5px;
    width: 100%;
    color: #000;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
.sticky-form .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 20%;
    max-width: 25%;
}

@media only screen and (max-width: 767px){
	.sticky-form {
    position: relative;
    width: 100%;
	bottom:0;
    margin-bottom: 10px;
    transform: translateY(-55%);
    left: 0;
    background-color: #006b7496;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    transform: none;
    border-radius: 0;
    opacity: 0.98;
    padding: 15px 30px 15px 32px;
    margin-left: 0;
	margin-bottom: 0px;
}
	.bed-form #popup_enq2 .modal-dialog, #popup_ideodemo .modal-dialog{
	width:100% !important;
		max-width:100% !important;
}

}
