@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
:root{
	--primary-color:#d998a3;
	--dark-rose: #f9f4ed;
	--green:#2b3d2d;
	--primary-grad: linear-gradient(45deg, #b76e78, #d998a3, #d8a2a9, #f7d5d8, #efd1d5, #ebbec4, #d8a2a9,#b76e78);
}
body {
	color:#191919;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	overflow-x:hidden;
	font-size:16px;
}
ul{padding-left:0; margin-bottom:0;}
a:hover {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.primary-color {
  color: #b57e47 !important;
}
/*header*/
.header {
  width: 100%;
  float: left;
  position: fixed;
  top: 0;
  padding: 5px 0;
  z-index: 99999;
  transition:all 300ms ease-in-out;
}
.header .mainHeader{
	display:flex;
	align-items:center;
	justify-content: space-between;
	transition:all 300ms ease-in-out;
}
.logo {
	width:240px;
	height:auto;
	float: left;
	position: relative;
	min-height: 1px;
	transition:all 300ms ease-in-out;
}
.logo img{
	height:auto;
	transition:all 300ms ease-in-out;
}
.logo .logo-mb{
	display:none;
}
.header .mainHeader .navi > ul{
	display:flex;
	align-items:center;
}
.header .mainHeader .navi > ul > li{
	margin:0 6px;
	position:relative;
}
.header .mainHeader .navi > ul > li > a{
	color: #000000;
	font-size:15px;
	letter-spacing:1px;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all 300ms ease-in-out;
	position:relative;
	z-index:1;
	text-decoration: none;
}
.header .mainHeader .navi > ul > li:hover > a{
	color: #3b2b2d;
}
.header .mainHeader .navi > ul > li.visitBtn{
	margin-right:0;
}
.header .mainHeader .navi > ul > li.visitBtn a{
	padding:13px 20px;
	/* background-image:-webkit-linear-gradient(315deg,var(--primary-color) 0%,rgba(195,159,117,0.95) 25%,#a47947 50%,var(--primary-color) 75%, #8b673d 100%);
    background-image:-moz-linear-gradient(315deg,var(--primary-color) 0%,rgba(195,159,117,0.95) 25%,#a47947 50%,var(--primary-color) 75%,#8b673d 100%);
    background-image:linear-gradient(135deg ,var(--primary-color) 0%,rgba(195,159,117,0.95) 25%,#a47947 50%,var(--primary-color) 75%,#8b673d 100%); */
	background-image: linear-gradient(45deg, #b76e78, #d998a3, #d8a2a9, #f7d5d8, #efd1d5, #ebbec4, #d8a2a9,#b76e78,#b76e78, #d998a3, #d8a2a9, #f7d5d8, #efd1d5, #ebbec4, #d8a2a9,#b76e78);
	background-size: 200% 200%;
	color:var(--dark-rose);
	font-size:15px;
	font-weight:800;
	text-transform: uppercase;
	letter-spacing:1px;
}
.header .mainHeader .navi > ul > li.visitBtn a:hover{
	box-shadow: none;
    background-position: 100% 100%;
}
.header .mainHeader .navi > ul > li.visitBtn a:before{
	display:none;
}
.header .mainHeader .navi > ul li a i{
	margin-right:5px;
	font-size:13px;
	transition:all 300ms ease-in-out;
}
.filter-white{
	filter:brightness(50);
}
.filter-dark{
	filter:grayscale(1) brightness(0.5);
}
.header.fixed{
	background:var(--dark-rose);
	box-shadow:0 0 10px rgba(0,0,0,0.50);
}
.header.fixed .logo{
	width: 120px;
}
.header.fixed .mainHeader .navi > ul > li.visitBtn a{
	padding:8px 10px;
}
/*header*/
#banner{
	position:relative;
	background:#000;
	border-bottom:5px solid var(--primary-color);
	z-index:1;
}
#banner .banner-video{
	height:100%;
	width:100%;
	position:absolute;
	left:0;
	top:0;
	object-fit:cover;
	z-index:1;
}
#banner .carousel-inner, #banner .carousel-inner .carousel-item{
	position:relative;
	height:100%;
}
#banner .carousel-inner .carousel-item{
	background:center no-repeat;
	background-size:cover;
	z-index:1;
}
#banner .carousel-inner .carousel-item.has-overlay::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:linear-gradient(rgba(0,0,0,.3), transparent 40%);
	pointer-events: none;
}
.carousel-item section{
	display:flex;
	align-items:center;
	justify-content:space-between;
	height:100%;
	position:relative;
	z-index:1;
}
.bannerText{
	width: max-content;
	text-align:center;
	position:absolute;
	left:50%;
	top:20%;
	opacity: 0;
	transform:translateX(-50%);
	padding: 10px;
	z-index:9;
	color:#fff;
	background-color: var(--dark-rose);
	border: 4px double;
	transition: all 300ms ease-in-out 100ms;
}
.carousel-item.active .bannerText{
	top:12%;
	opacity: 1;
}
.bannerText .h1{
	font-size:2.25rem;
	line-height: 1.1;
	font-weight:300;
	letter-spacing:2px;
	display:flex;
	justify-content:center;
	align-items:center;
	transition:all 300ms linear;
}
.bannerText .h1 span{
	font-family:"Roboto", sans-serif;
	transform: translateX(40px);
	transition:all 400ms linear;
	transition-delay:300ms;
	opacity:0;
	color: var(--primary-color);
    background: var(--primary-grad);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.bannerText .h1 strong{
	border-left: 1px solid #fff;
	padding-left:20px;
	margin-left:20px;
	transform: translateX(-100px);
	transition:all 400ms linear;
	transition-delay:400ms;
	opacity:0;
	color: var(--primary-color);
    background: var(--primary-grad);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.bannerText .h1.active span,
.bannerText .h1.active strong{
	transform: translateX(0px);
	opacity:1;
}
.padding
{
	padding-top:4rem;
	padding-bottom: 4rem;
}



.projects_main {
  background: #f9f4ed;
}

.projects_mainul li i {
  background: linear-gradient(90deg, rgb(209, 159, 109) 0%, rgb(209, 159, 109) 35%, rgb(158 128 28) 100%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
}

.projects_main h6 {
  color: #000;
  font-size: 18px;
}

.projects_main h6 i {
  color: #d19f6d;
  font-size: 18px;
}

.projects_box {
  background-color: #f9f4ed;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 2px double #d19f6d;
}

.projects_box .projects_img {
  position: relative;
}

.projects_box .projects_img img{
      object-fit: cover;
}

.projects_box .projects_img .overlay_text {
  position: absolute;
  top: 0;
  left: 0;
}

.projects_box .projects_img .overlay_text {
  background: linear-gradient(90deg, rgb(209, 159, 109) 0%, rgb(209, 159, 109) 35%, rgb(255, 255, 255) 100%);

  color: #000000;
  padding: 6px;
}

.projects_box h2 {
  font-size: 23px;
  font-weight: 512;
  color: #d19f6d;
  border-bottom: 1px solid #bcbcbc;
}
.projects_top
{
  background: #fff;
}
.projects_box .projects_top .btan {
  color: #000000;
  text-align: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.projects_box .projects_top .btan a {
  color: #000000;
    display: block;
    text-decoration: none;
  background: linear-gradient(90deg, rgb(209, 159, 109) 0%, rgb(209, 159, 109) 35%, rgb(255, 255, 255) 100%);
  padding: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}


.projects_box .projects_highlight_main p {
  font-size: 13px;
  color: #000000;
  margin: 0;
}
.projects_box .projects_highlight_main h5
{
	margin-bottom: 0;
}

.projects_box h3 {
    font-size: 16px;
  color: #000000;
}

.projects_box h4 {
  font-size: 13px;
  color: #000000;
  font-weight: 500;
}

.projects_box .projects_text_main {
  box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 5px;
  padding: 12px;
}

.projects_box .projects_text_main .projects_li {
  border-right: 1px solid #454545;
}

.projects_bottom {
  border-top: 1px solid #959494;
}

.projects_box .projects_price {
  background-color: #e7e7e7;
  padding: 9px;
}

.projects_box .projects_price a {
  font-size: 15px;
  text-decoration: underline;
}




/* form style css */

.Banner-form {
  background: #fffcf6;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  padding: 28px 42px;
}

.Banner-form .helight_text ul:first-child li {
  background-color: #d19f6d;
  border-radius: 9px;
}

.Banner-form .helight_text ul:first-child li h5 {
  background-color: #fff;
  border-radius: 50pc;
  padding: 6px;
}

.Banner-form .helight_text ul li a:last-child {
  font-size: 19px;
  color: #fff;
}

.Banner-form .helight_text ul:last-child li {
  background-color: #d19f6d;
  padding: 3px;
  border-radius: 9px;
}

.Banner-form .helight_text ul:last-child li i {
  color: #fff !important;
}

.Banner-form .helight_text ul:last-child li p {
  color: #fff;
  animation: popup infinite 3s;
  margin: 0;
}
.projects_text
{
  position: relative;
}
.rerabox
{
    position: absolute;
    z-index:9;
    height: auto;
    bottom: 0;
    right: 0;
    background: #ffffffb8;
    border-radius: 6px;
    padding: 2px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.rerabox p
{
     line-height: 1.1;
     margin:0;
     color: #000;
     font-size: 10px;
}
.rerabox p a
{
    margin-top: 5px;
    color: #000 !important;
    font-size: 10px;
    display: block;
}
.rerabox-qr
{
  width: 54px;
} 
.rerabox-box
{
    max-width: 220px;
}


@keyframes popup {

  from {
    transform: scale(1);
    transition: 0.3s;
  }

  to {
    transform: scale(1.1);
    transition: 0.3s;
  }

}


.projects_form_bg {
  top: 90px;
  position: sticky;
}

.form_section {

  position: relative;


}
.banner_form .form_section .mb-4 {
  margin-bottom: 14px !important;
}

.form-label {
  color: #4f4b4b;
  text-align: left !important;
  float: left;
  margin-left: 5px;
}

.text_form {
  height: 37px;
  padding: 11px 41px !important;
  width: 100%;
}
.interested-select {
  color: #4f4b4b;
  line-height: 1;
  padding-left: 12px !important;
}
.phone-input-wrap {
  position: relative;
}
.phone-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.phone-with-prefix {
  padding-left: 78px !important;
}
.india-flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border: 1px solid #d8d8d8;
  background: linear-gradient(to bottom, #ff9933 0 33%, #fff 33% 66%, #138808 66% 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}





.icon-inside {
  position: absolute;
  width: 32px;
  height: 35px;
  left: 9px;
  top: 0;
  pointer-events: none;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d19f6d;
  z-index: 3;
  display: flex;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.form_section p {
  /* color: #ffffff; */
}

.form_section h3 {
  color: #d19f6d;
  font-size: 22px;
  font-weight: bold;
}

.form_bottom .form_section {
  margin: 0;
  background-color: #2a3431;
  border-radius: 0;
}


#SubmitQuerytop {
  background: linear-gradient(to right, #d19f6dd9, #d19f6d85);
  color: #ffffff;
  outline: none;
  width: 100%;
  height: 42px;
  border: none;
  font-weight: bold;
  border-radius: 9px;
  transition: 0.3s;
}

#SubmitQuerytop:hover {
  background-color: #424242;
  transition: 0.3s;
  border: none;
  box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.3);
}
.about-group
{
    background: #ffebd8;
}
.footer-area
{
    background: #e7d1bc;
    text-align: left;
    padding: 14px;
}
.agent-rera {
  color: #000;
  font-size: 16px;
}
.footer-links {
  margin-top: 4px;
}
.footer-links a {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}
.footer-links span {
  color: #000;
  margin: 0 8px;
}

.modal-backdrop.show {
  opacity: 1;
  background-color: rgba(51 51 51 / 80%);
  backdrop-filter: blur(4px);
}
.modal-content {
  background-color: #ffebd8;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border: 0;
  border-radius: 0;
}
button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bs-danger);
  border: 0;
  opacity: 1;
  text-shadow: none;
  z-index: 9;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: #ae0000;
  color: #fff;
}
.modal-body {
  padding: 25px;
  text-align: left;
}
.iconBox .inner,
.modal-icons {
  display: flex;
  padding: 1rem;
  text-transform: uppercase;
}
.modal-logo {
  width: 180px;
  margin: 0 auto 2rem;
}
.modal-header {
  background-color: var(--primary-color);
}
.modal-icons {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #fff7ef;
}
.modal-icon .img-fluid {
  max-width: 50px;
  margin: 0 auto 10px;
  color: var(--secondary-color);
}
.modal-icon span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--darkgray);
}

.modal-body .form-control {
  background-color: rgb(0 0 0 / 5%);
}
.modal-body .form-select {
  background-color: rgb(0 0 0 / 5%);
  min-height: 38px;
  font-size: 16px;
  color: #4f4b4b;
}
.modal-body .form-control:focus {
  background-color: var(--body-bg);
}
.modal-body .form-select:focus {
  background-color: rgb(0 0 0 / 5%);
}
.modal-icons h6, .readmore .button.stroke, .smallHeading, .viewmore .button:hover {
    color: var(--primary-color);
}


.readmore .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    min-width: 150px;
    max-width: fit-content;
    border-radius: 50px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    background: #f2dfcd;
	margin-top: 1rem;

}
.dropdownlocation:hover .dropdown-menu-custom
{
  display: block;
}
.dropdownlocation>a
{
    border: 1px solid;
    padding: 5px;
    border-radius: 9%;
}
.dropdown-menu-custom
{
  display: none;
    position: absolute;
    background: #f9f4ed;
    padding: 10px;
    min-width: 200px;
    right: 0;
    z-index: 9999999999;
}
.dropdown-menu-custom li
{
  list-style: none;
  background: #ede9e2;
  margin-bottom: 1px;
  padding: 8px 10px;
  line-height: 1;
}
.dropdown-menu-custom li:hover
{
  background: #bbb8b5;
}
.dropdown-menu-custom li a
{
  display: block;
  text-decoration: none;
  color: #000;
}
.ftbottom {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
}
  .ftbottom .sideBtns {
    display: block;
    width: 100%;
  }
  .ftbottom .sideBtns ul{
    display: flex;
  }
  .ftbottom .sideBtns li {
	  width:calc(100% / 2);
  }
  .ftbottom .sideBtns li a{
    display: flex;
    padding: 5px;
    color: #000;
    background: linear-gradient(90deg, rgb(209, 159, 109) 0%, rgb(209, 159, 109) 35%, rgb(255, 255, 255) 100%);
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    align-items: center;
  }
.sideBtns ul a i {
    color:#000;
    -webkit-text-fill-color:none;
  background: none;
  background-clip:none;
  background-clip:none;
  background-clip:none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: none;
  padding: 0;
  margin: 0;
}
.whatsapp{
    background: green !important;
    color: #fff !important;
}
.whatsapp i{
    color: #fff !important;
}
.submitbtn
{
  display: flex;
}
.submitbtn button
{
    background:#c0ab69;
    border: 1px solid #ccc;
        border-radius: 0 6px 6px 0;
}
.submitbtn select {
        border-radius: 6px 0 0px 6px;
}
.search-navi > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.search-navi .header-search-item {
  margin: 0 !important;
}
.header-search-form {
  display: grid;
  grid-template-columns: 220px 220px 44px;
  align-items: center;
  gap: 10px;
}
.header-search-form .form-select {
  width: 220px;
  height: 44px;
}
.header-search-form button {
  width: 44px;
  height: 44px;
  padding: 0;
}

@media (max-width: 1199px) {
  .header-search-form {
    grid-template-columns: 170px 170px 42px;
    gap: 8px;
  }

  .header-search-form .form-select {
    width: 170px;
    height: 42px;
    font-size: 15px;
  }

  .header-search-form button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767px) {
  .header .mainHeader {
    gap: 8px;
  }

  .search-navi {
    width: 100%;
  }

  .search-navi > ul {
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
  }

  .header-search-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 38px;
    gap: 6px;
    width: 100%;
  }

  .header-search-form .form-select {
    min-width: 0;
    width: 100%;
    height: 38px;
    font-size: 13px;
    padding: 6px 28px 6px 8px;
  }

  .header-search-form button {
    width: 38px;
    height: 38px;
    padding: 0 8px;
    font-size: 13px;
  }
}
.project-no-results {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 6px;
  color: #222;
  margin-bottom: 24px;
  padding: 24px;
  text-align: center;
}
.project-no-results h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.project-no-results p {
  margin-bottom: 0;
}
.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 50px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    background: #fff7ef;
    border-top: 1px solid #dcc5aa;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.16);
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: #d19f6d;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .mobile-cta-bar a:last-child {
    border-right: 0;
    background: #138a3d;
  }

  .mobile-cta-bar i {
    font-size: 14px;
  }
}
