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

@font-face {
  font-family: IvyMode;
  src: url("../fonts/IvyMode-Regular.ttf");
}
body {
  font-family: "Montserrat", serif;
  color: #000000;
  font-size: 16px;
}

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

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

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

.back-to-top i {
  font-size: 18px;
  color: #662105;
  line-height: 0;
  font-weight: 700;
}

.back-to-top:hover {
  background: #662105;
}

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

.back-to-top:hover i {
  color: #d7b46a;
}

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

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

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

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

/*----------# 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: 13px;
  font-weight: 500;
  color: #d7b46a;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}

.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: #d7b46a;
}

.navbar .dropdown ul a.active:focus {
    background: #662105;
    border-color: #662105;
    color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 0;
  color: #662105;
  font-size: 14px;
  border: 2px solid #d7b46a;
  /* font-weight: 600; */
  background-color: #d7b46a;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #662105;
  border-color: #662105;
}

.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 {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #662105;
  background-color: #d7b46a;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #fff;
    background: #662105;
    border-color: #662105;
}
.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: rgba(40, 58, 90, 0.9);
  -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: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

.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 .dropdown-menu.show {
    display: block;
}

.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;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #662105;
}

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

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

.section-title h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  color: #662105;
  line-height: 1.2;
}
.section-title h2 span {
  color: #d7b46a;
}
.section-title h5 {
  font-size: 1.2rem;
  line-height: 1.2em;
  font-weight: 700;
  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: url("../img/footerBg.jpg") center center no-repeat;
  background-size: cover;
  font-size: 14px;
}

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

#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 {
  padding: 10px 15px;
}

#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;
  font-family: "Jost", sans-serif;
  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 {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding: 10px 0;
  color: #fff;
}

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

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

.footer-middle {
  padding: 50px 0 30px;
}

.footer-middle h3 {
  font-size: 20px;
  font-weight: 500;
}

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

.swiper-button-arrow {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d7b46a;
  font-size: 20px;
  color: #662105;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
}

/*** slick slider common css ***/
.commonBtn {
  padding: 10px 30px;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  background-color: #d7b46a;
  transition: all 0.2s;
  text-transform: uppercase;
  color: #662105;
  font-size: 0.875rem;
  font-weight: 600;
  border: 0;
}

.commonBtn:hover {
  color: #d7b46a;
  background-color: #662105;
  border-color: #662105;
}

/*** form css ***/
label {
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.form-control {
  color: #666;
  padding: 0 0 15px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 2px;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #000000a8;
}

.form-control::placeholder {
  text-transform: uppercase;
}

.form-control:focus,
.form-select:focus {
  border-color: #d7b46a;
  box-shadow: none;
}

.disclaimer {
  padding: 10px;
}

.disclaimer h3 {
  color: #ececec;
  font-size: 15px;
}

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

.fixedMbBtn {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  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;*/
}

/* aboutus */
.aboutContent {
  position: absolute;
  top: 0;
  left: 0;
}
/* aboutus */

/* inceptionContent */
.inceptionContent {
  padding: 100px 0;
}
.inceptionContent {
  position: absolute;
  top: 0;
  left: 0;
}

.inceptionContentLeft h3 {
  color: #d7b46a;
  font-weight: 700;
  font-size: 24px;
}
/* inceptionContent */

/* milestones */
.milestonesContent {
  padding: 50px 0;
}
.milestonesContent {
  position: absolute;
  top: 0;
  left: 0;
}

.milestonesContentLeft {
  padding-top: 80px;
  padding-left: 50px;
}

.milestonesContentRightBox h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}
.milestonesContentRightBox p {
  font-size: 16px;
}

.milestonesContentRightBox img {
  width: 75px;
}
/* milestones */

/* ourJourney */
.ourJourneyContent {
  padding: 100px 0;
}
.ourJourneyContent {
  position: absolute;
  top: 0;
  left: 0;
}

.ourJourneyContentLeft h3 {
  color: #d7b46a;
  font-weight: 700;
  font-size: 24px;
}

.ourJourneyContentLeft {
  padding-top: 50px;
}

/* ourJourney */

/* ourProjects */

.ourProjects {
  background: url("../img/projectsBg.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.projectStatus {
  background: transparent
    linear-gradient(0deg, #03011a7a 0%, #03011a00 80%, #03011a00 100%) 0% 0%
    no-repeat padding-box;
    background: transparent linear-gradient(0deg, #03011ad6 0%, #03011a00 80%, #03011a00 100%) 0% 0% no-repeat padding-box;
  height: 100%;
  width: 100%;
  left: 0;
}

.ourProjectsSliderFour .projectStatus {
    background: transparent linear-gradient(0deg, #03011ad6 0%, #03011a00 80%, #03011a00 100%) 0% 0% no-repeat padding-box;
}

.projectStatustext {
  background: #d7b46a;
  padding: 8px 10px;
  color: #17213f;
  font-size: 6px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
}

.artisricImpression {
    background: #d7b46a;
    padding: 5px;
    color: #000000;
    font-size: 5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
}

.projectName {
  bottom: 25px;
  width: 100%;
}

.projectName h4 {
  font-family: ivyMode;
  color: #fff;
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
}

.projectName h4 span {
  color: #d7b46a;
}

.projectName span.knowMore {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 10px;
  color: #b6b6b6;
  font-weight: 300;
}

/* ourProjects */

/* contact */
.contact {
  background: url("../img/queryBg.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
/* contact */
footer{
  padding: 100px 0 0;
  overflow: hidden;
  background: url("../img/footerBg.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.address-box .section-title {
  margin-bottom: 20px;
  font: normal normal 500 17px / 28px Montserrat;
  letter-spacing: 4px;
  color: #000000;
  text-transform: uppercase;
}

.address-container {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.icon {
  color: #D7B46A;
  font-size: 20px;
  flex-shrink: 0;
}

.address-text {
  font: normal normal normal 13px / 25px Montserrat;
  letter-spacing: 0px;
  color: #000000;
}

.contact-link {
  font: normal normal normal 13px / 25px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 10px; */
}

.contact-link:hover {
  color: #8B4513;
}

.social-links {
  margin-top: 20px;
  font: normal normal normal 10px/50px Montserrat;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
}

.social-links a {
  /* color: #666; */
  text-decoration: none;
  margin-right: 15px;
  /* font-size: 14px; */
  /* text-transform: uppercase; */
  font: normal normal 300 10px/50px Montserrat;
  letter-spacing: 2px;
  color: #662105;
  text-transform: uppercase;
}

.social-links a:hover {
  color: #8B4513;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #00000047;
}

.copyright {
  font: normal normal 300 10px/13px Montserrat;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
}
.footerLogo img{
  width: 80%;
  display: block;
}
.propertyModal .modal-body{
  overflow: hidden;
  background: url("../img/Featuresbg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-color: transparent;
}
.propertyModal .modal-content {
  border-radius: 0;
  border: none;
}

.propertyModal .property-modal {
  max-width: 60%;
}

.propertyModal .left-panel {
  background: #D7B46A 0% 0% no-repeat padding-box;
  /* box-shadow: 15px 15px 49px #000000A8; */
  color: #000;
  padding: 2rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.propertyModal .right-panel {
  padding: 2rem;
  /* background-color: #f8f9fa; */
}

.propertyModal .feature-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.propertyModal .features-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; */
  margin-top: 2rem;
}

.propertyModal .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font: normal normal normal 13px/23px Montserrat;
  letter-spacing: 0px;
  color: #000000;
}

.propertyModal .modal-header {
  border: none;
  padding: 0.5rem;
}

.propertyModal .close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: #D4AF37;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.propertyModal .property-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font: normal normal bold 28px / 28px Montserrat;
  letter-spacing: 0px;
  color: #0A0A0A;
}

.propertyModal .property-location {
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.propertyModal .property-location::after{
  content: "";
  position: absolute;
  bottom: -15px;
  width: 120%;
  height: 1px;
  background: #000000;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
}
.propertyModal .property-details p{
  font: normal normal normal 14px/20px Montserrat;
  letter-spacing: 0px;
  color: #000000;
}

.propertyModal .salient-title {
  color: #662105;
  margin-bottom: 2rem;
  font-size: 22px;
  text-align: left;
}

.propertyModal .salient-title span {
  color: #D7B46A;
  font-weight: 800;
}

.propertyModal .additional-features {
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #000;
  padding-top: 2rem;
}
.propertyModal .additional-features p {
  width: 50%;
  float: left;
}
.amenit {
  position: relative;
  padding: 10px 0;
}

.amenit::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 1px;
  background: #000000;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
}

.amenit::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: #000000;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.construction-status h6{
  font: normal normal 500 14px/24px Montserrat;
  letter-spacing: 3px;
  color: #000000;
  text-transform: uppercase;
}

.construction-status p {
  font-size: 14px;
}

.callMobile {
    position: fixed;
    bottom: 57px;
    right: 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #d7b46a;
    color: #662105 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    font-size: 22px;
    line-height: 1.2;
}

.callMobile a {
    color: #662105 !important;
}


@media(max-width:767px) {
    .navbar-mobile ul{
        bottom: auto;
    }
    
    .enquireNowSideFormBtn {
        top: 50%;
        right: -56px;
        background-color: #d7b46a;
        padding: 6px 20px;
    }
    
    .enquireNowSideFormBtn p {
        font-size: 14px;
    }
}
