/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: AUTHENTICSIGNATURE;
  src: url(../fonts/IvyMode-SemiBold.ttf);
}
body {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 16px;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

.btn:hover {
  background-color: transparent;
  color: #000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b38053;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*# Header --------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(0 0 0 / 90%);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

.logo img {
  /*    width: 190px;*/
  /* width: 230px; */
}

/*----------# Navigation Menu ----------------------------------------------------*/
/*** Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #b38053;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*** Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(0 0 0 / 90%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #b38053;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*-----------# Sections General --------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #efefef;
}

.section-title h2 {
  font-size: 50px;
  margin-bottom: 15px;
  position: relative;
  color: #b38053;
  line-height: 1;
  background: transparent
    linear-gradient(93deg, #b78834 0%, #b78834 57%, #b38053 100%) 0% 0%
    no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: AUTHENTICSIGNATURE;
  text-transform: capitalize;
}
.section-title h5 {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 400;
  color: #000;
}

.uael-separator {
  line-height: 0;
}
.separator {
  border-top-style: solid;
  display: inline-block;
  border-top-color: #141a2a;
  border-top-width: 1px;
  width: 25%;
  margin: 0 0 28px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------# Footer --------------------------------------*/
#footer {
  background-color: #eeeeee;
  font-size: 14px;
  color: #000;
}

#footer .footer-newsletter {
  padding: 50px 0;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding: 10px 0;
  color: #000;
  border-top: 1px solid #d3d0d0;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*** slick slider common css ***/

.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: #bd8e30;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 21px;
  border-radius: 50%;
  line-height: 1.2;
  cursor: pointer;
}

.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.swiper-button-custom-next,
.swiper-button-custom-prev {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: #bd8e30;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  line-height: 1.2;
  cursor: pointer;
}

.swiper-button-custom-prev {
  right: auto;
  left: 0;
}

/*** slick slider common css ***/
.commonBtn {
  padding: 8px 20px;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  background-color: #000;
  transition: all 0.2s;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875rem;
  border: 0;
  border-radius: 0px;
  font-family: "Montserrat", serif;
  min-width: 142px;
}

.commonBtn:hover {
  color: #fff;
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

.contactUs .commonBtn {
  background-color: #b38053;
}

.contactUs .commonBtn:hover {
  background-color: #000;
  border-color: #000;
}

/*** form css ***/
label {
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.form-control {
  color: #666;
  border-color: #dddddd;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
}

#footer {
  /* background: #000000; */
  color: #000;
}

.disclaimer h3 {
  color: #000;
  font-size: 14px;
}

.disclaimer p {
  color: #000;
  font-size: 10px;
}

.fixedMbBtn {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b38053;
  color: #fff;
  z-index: 99;
}

.fixedMbBtn a {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 5px;
  color: #fff;
}

.fixedMbBtn a:nth-child(1) {
  border-right: 1px solid #fff;
}

/*** sideForm ***/

.sideFormWrapper {
  right: -300px;
  width: 300px;
  z-index: 99999;
  transition: right 0.4s ease-in-out;
}

.sideFormWrapper.active {
  right: 0;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.sideFormTop {
  padding: 30px 30px 15px;
  background-color: #b38053;
}

.sideFormTop .form-control {
  background-color: #fff;
  border: 0;
  border-radius: 0;
}

.sideFormTop .form-check-label {
  font-size: 11px;
  color: #fff;
  font-weight: 300;
}

.sideFormBottom {
  background-color: #f9f5ef;
}

.sideFormClose {
  padding: 10px 20px;
  border-right: 1px solid #b7adad;
  cursor: pointer;
}

.sideFormBottom button {
  flex: 1;
  border: 0;
  background-color: transparent;
  color: #000;
}

.enquirenowButton {
  cursor: pointer;
  position: fixed;
  bottom: 64px;
  right: -62px;
  background-color: #b38053;
  z-index: 9999;
  transform: rotate(-90deg);
  display: flex;
  flex-direction: row-reverse;
  /* padding: 10px 15px 10px 0; */
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.enquirenowButton .text {
  padding: 10px 15px;
  color: #fff;
}

.sideFormOPen {
  padding: 10px 15px;
  cursor: pointer;
  background-color: #fff;
}

.sideFormOPen img {
  transform: rotate(-90deg);
  transform-origin: center center;
}
/*** sideForm ***/

/*** modalForm ***/
.modal-dialog {
  max-width: 400px;
}

.modal-content {
  padding: 15px 25px;
  background-color: #b38053;
}

.modal-body {
  background-color: #b38053;
}

.modal-title,
.modal .form-check-label {
  color: #fff;
  word-wrap: normal;
  text-wrap: auto;
  text-align: start;
}
.form-check-label {
  font-size: 12px;
}
button.btn-close {
  position: absolute;
  top: 0;
  right: 0;
  filter: invert(1);
  opacity: 1;
  padding: 10px;
  background-color: #fff;
  border-radius: 0;
  z-index: 9;
}

.modal .form-control {
  border-radius: 0;
}

.modal .btn {
  background-color: #000;
  border-color: #000;
}
/*** modalForm ***/

.projectHighlights {
  background: url("../img/Highlightsbgpattern.png") no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.element-icon img {
  width: 180px;
}

.playIcon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  cursor: pointer;
}

.iframeBlock {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumbImg {
  transition: opacity 0.5s ease-in-out;
}

.opacity-0 {
  opacity: 0;
}

.iframeBlock iframe {
  height: 100% !important;
}

.overview {
  /*	background-image: url('../img/overviewBg.png') ;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;*/
}

.amenities {
  background-image: url("../img/AmenitiesBg.png");
  background-size: 100% 100%;
  background-position: center center;
}

.amenitiesSlider .slick-slide {
  margin: 0 15px;
}

/* the parent */
.amenitiesSlider .slick-list {
  margin: 0 -15px;
}

.amenitiesSlider .slick-arrow.slick-prev {
  left: -20px;
}
.amenitiesSlider .slick-arrow.slick-next {
  right: -20px;
}

.overlayBg {
  opacity: 0;
  color: #fff;
  font-size: 36px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s linear;
}
.amenitiesSlider .galleryBox:hover .overlayBg {
  opacity: 1;
}

.galleryContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;

  background: #00000099;
  padding-top: 10px;
}

.configuration {
  /* background-image: url("../img/configurationbg.png"); */
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.configurationBlockText h3 {
  font-size: 18px;
  margin: 10px 0 0;
}

.configurationBlockText a {
  font-size: 12px;
  color: #bd8e30;
  text-decoration-line: underline;
  text-underline-offset: 8px;
  text-transform: uppercase;
}

.location {
  /* background-image: url("../img/locationbg.png"); */
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.accordion-item:first-of-type {
  border: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}

.accordion-body {
  padding: 10px 0;
}

.accordion-button {
  background-color: transparent;
  padding: 10px 0;
}

.accordion-item {
  border: 0;
  background-color: transparent;
}

.accordion-item ul {
  padding: 0;
  margin: 0;
}

.accordion-item ul li {
  font-size: 14px;
  list-style-type: circle;
  position: relative;
  padding-left: 15px;
}

.accordion-item ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #b38053;
  border-radius: 50%;
}

.accordion-item ul li + li {
  margin-top: 10px;
}

.accordion-item:nth-child(n + 2) {
  border-top: 1px solid #bdbdbd;
}

.contactUs {
  background-image: url("../img/contactusBg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.contactUs .form-control {
  border-radius: 0;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #bcbcbc;
  padding: 10px 0;
}

#footer .footer-bottom .copyright {
  font-size: 12px;
}

.disclaimerText {
  padding: 10px 0;
  border-top: 1px solid #bcbcbc;
}

.footerMain {
  padding: 30px 0 10px;
}

.footerMain p {
  font-size: 12px;
}

.footerMain .addressBox p {
  font-size: 12px;
}

.footerMain p span {
  font-weight: 400;
}

.footerMain .addressBox p span.text {
  font-weight: 400;
}

.footerLogo img {
  width: 130px;
}
.form-control option {
  padding: 15px 15px;
}

.gallery {
  background-image: url("../img/AmenitiesBg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.gallerySwiper .swiper-slide {
  text-align: center;
}

.sideFormWrapper .text-danger,
.modal .text-danger {
  margin-top: 4px;
  /*	color: #000 !important;*/
  color: #ff0000 !important;
}

.element-title {
  color: #bd8e30;
  font-weight: 600;
}

.element-title span {
  font-family: AUTHENTICSIGNATURE;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.overviewContent p {
  font-weight: 300;
}

.footer-bottom {
  justify-content: space-between;
}

#footer .footer-bottom .copyright a {
  color: #000;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* black overlay with 40% opacity */
  z-index: 1;
}
.overlay {
  position: relative;
  display: inline-block;

  overflow: hidden;
}
.configurationBlockText {
  padding-bottom: 30px;
}

.section-title,
.overviewContent {
  text-align: center;
}
.projectHighlights-li {
  list-style: disc;
  text-align: left;
  padding: 10px;
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
.bi-chevron-next::before {
  content: "\f285";
}
.accordion-button {
  padding-top: 10px !important;
}
.projectHighlights-li::marker {
  color: #b38053;
  font-size: 20px;
}

.gallerySwiper img {
  width: 100%;
}

.fancybox__thumbs {
  display: none !important;
}

.loactionDetailWrapper ul li {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.loactionDetailWrapper ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #bcbcbc;
}

.loactionDetailWrapper ul li span {
  color: #b38053;
}

.iframeWrapper iframe {
  width: 100%;
  height: 500px;
  border: 4px solid #b38053;
}

.loactionDetailWrapper ul {
  padding: 0;
}

@media (max-width: 767px) {
  .iframeWrapper iframe {
    height: 350px;
  }
  .loactionDetailWrapper ul {
    margin-top: 30px;
  }

  .loactionDetailWrapper ul li {
    font-size: 14px;
  }
}
