@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

:root {
  /* --primary-color: #233129; */
  --primary-color: #f08916;
  --secondary-color: #f0bf49;
  --secondary-color-light: #edeef0;
  --body-color: #212121;
  --light: #f8fcff;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --midsun: 'Mid Mid Sun Sun';
  --cursive: 'Water Brush', cursive;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Mukta", sans-serif;
  overflow-x: hidden;
}

svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}

.table td,
.table th{
  padding: 1.25rem 1rem 1rem;
}

p {
  line-height: 1.3;
  margin-bottom: 7px;
  letter-spacing: .5px;
  font-size: 1.1rem;
  text-align: justify;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

img, video, iframe {
  width: 100%;
  display: block;
}

.gap-row{
  row-gap: 30px;
}

.gap-form-row{
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded {
  border-radius: 5px !important;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
	width: 100%;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 998;
	color: #d9c9a9;
	border-bottom: 1px solid rgb(255 255 255 / 15%);
	transition: all 300ms ease-in-out;
	/* background-color: #d9c9a9d4; */
	position: absolute;
}
.header.fixed,.header:hover{
  box-shadow: 0 10px 2rem rgb(0 0 0 / 15%);
  color: var(--body-color);
  border-bottom: 0;
}

.header.fixed{
  background: #fff;
}

.header a{
  color: #000000;
}
.header.fixed a,
.header:hover a{
  color: var(--body-color);
}

.logo {
  position: relative;
  left: 1rem;
  font-size: 1.75rem;
  font-weight: 800;
  padding: 5px 0;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  z-index: 2;
  max-width: 280px;
}
.header.fixed .logo {
  filter:none;
}
.header.fixed .logo
{
  width:180px;

}
.logo small{
  font-size: 54%;
}

/* .header.fixed .logo img{
  padding: 0 10px;
} */

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
}

.header .nav > ul > li > a {
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  transition: all 300ms ease-in-out;
  padding: 1.7rem 1rem;
  z-index: 1;
}

.header .nav > ul > li:hover > a {
  color: var(--primary-color);
}

.header .nav > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--secondary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.header .nav ul li:hover > a::before {
  width: 100%;
}

.header .topCTC{
  display: flex;
  background-color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.header.fixed .topCTC,
.header:hover .topCTC{
  background-color: #25313a;
}

.header .topCTC a{
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0px 1rem;
}

.header .topCTC a:last-child{
  border-left: 1px solid #fff;
}

.header .topCTC a i{
  display: flex;
  align-items: center;
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}

.menuBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background-color: #fff; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.header.fixed .menuBtn {
  width: 40px;
  height: 40px;
}

.menuBtn div {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  transition: all 300ms ease-in-out;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* Designed & Developed by Sami from ECIS */

.menuBtn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#294e9f;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -5px);
  transform: rotate(-45deg) translate(4px, -5px);
}

.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 61px;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;  
  width: 320px;
  right: 0;
  left: auto;
  top: -7px;
}

.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/*header*/

.banner {
  height: 92vh;
  position: relative;
  background: var(--primary-color);
  z-index: 1;
  margin-top: 4.9rem;
}

.banner .carousel-item::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  background: rgb(0 0 0 / 52%);
}

.bannerText {
 position: absolute;
 left: 1rem;
 max-width:547px;
 width: 98%;
 z-index: 9;
 padding: 10px;
 border-radius: 10px;
 color: #ffffff;
 font-weight: bold;
 top: 50%;
 right: 0;
 transform: translateY(-50%);
 background: linear-gradient(45deg, #294e9f, transparent);
}

.bannerText h6 {
  font-size: 18px;
  position: relative;
  padding: 5px 0;
  border: dashed #cfcfcf;
  border-width: 1px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bannerText h1{
  font-size: 29px;
  font-weight:bold;
  text-transform: uppercase;
 
}
/* sticky form */
.enquiryBtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}
.enquiryBtn i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #0c1115, #e8d8cb);
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: linear-gradient(2255deg, var(--primary-color), var(--secondary-color));
}

.slider-container .form-box {
  background-color: #fffffff5;
  padding: 26px;
  width: 327px;
  border-top: 7px solid var(--brown);
  position: absolute;
  z-index: 9;
  bottom: 2%;
  right: 45px;
  z-index: 99
}

.slider-container .form-box::after {
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 999;
  /* opacity: .09; */
}

.slider-container .form-box h4 {
  color: #000;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: uppercase;
  TEXT-ALIGN: CENTER;
  font-family: Poppins-SemiBold;
}

.slider-container .form-box .form-control {
  border: 1px solid #716e6e;
  border-radius: 0;
  height: 50px;
  margin-bottom: 15px;
  background-color: #ffffff;
  color: #000;
}

.slider-container .form-box .btn-custom-2 {
  padding: 10px 30px;
  background-color: var(--brown);
  color: #fff;
  border-radius: 0;
  margin-top: 30px;
  letter-spacing: 1.5px;
  display: block;
  font-weight: 800;
}

.readmore .button {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 19px;
  LETTER-SPACING: 2PX;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
  border: 1px solid;
  margin-top: 1rem;
}

.readmore button {
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.readmore .button:hover {
  color: #294e9f;
  background: #fff;
}

.readmore.bg-white .button {
  background: #ffffff;
  color: #101010;
}

.readmore .button.w-auto {
  min-width: 1px;
}

.readmore .button.bg-white {
  color: var(--body-color);
  background: #fff !important;
}

.readmore .button.bg-white:hover {
  color: #fff;
  background: var(--body-color) !important;
}

.readmore .button.bg-black {
  color: #fff;
  background: #000;
}

.readmore .button.bg-black:hover {
  color: #000;
  background: var(--vibrant-color) !important;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--primary-color);
}

.readmore.d-flex {
  justify-content: center;
  gap: 10px;
}


.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.about-section
{
  background: url(../images/contact-bg.png);

}
.about-section h2, .section_heading
{
  color: var(--secondary-color);
}
.text-secondary {
  color: #ffffff !important;
}
.about-img-2
{
  position: relative;
}
.about-img-2::before
{
  position: absolute;
  content: '';
  border: 14px solid var(--secondary-color);
  top: 14px;
  height: 100%;
  left: 14px;
  width: 100%;
  z-index: -9;
}
.headingContainer {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary-color);
}
.bg-sec .headingContainer 
{
  color: #fff;
}
.gall img
{
  border: 2px solid var(--secondary-color);
}

/* floor plans */
.bg-sec
{
  background: #1a2d55;
  color: #fff;
}
.fpContainer .fpBox .inner {
  padding: 1rem;
  box-shadow: 0 0 3px rgb(0 0 0 / 15%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 300ms ease-in-out;
  background: #eaeaea;
}

.fpContainer .fpBox .inner:hover {
  background-color: var(--secondary-color);
  color: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
}

.planBase {
  margin: 1rem 0 1.5rem;
  color: var(--primary-color);
}

.fpDetails:not(:last-child){
  margin-bottom: 10px;
  color: var(--primary-color);
}

.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 800;
  color: #060606;
}
/* floor plans */
/* custom swiper controls */
.swiper-button-next, .swiper-button-prev{
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}

.swiper-button-next.lg, .swiper-button-prev.lg{
  width: 70px;
  height: 70px;
  margin-top: -50px;
}

.swiper-button-next.lg:hover, .swiper-button-prev.lg:hover{
  backdrop-filter: blur(5px) brightness(2);
  border-color: transparent;
}

.swiper-button-prev.lg:after, .swiper-button-next.lg:after{
  font-size: 1.5rem;
  font-weight: 100;
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: var(--body-color);
  font-size: 13px;
}


.bottomControls {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.bottomControls.position-absolute {
  bottom: 2rem;
  width: 100%;
}

.bottomControls div[class^="swiper-"] {
  position: static;
  margin: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--body-color);
  width: 20px;
  border-radius: 10px;
}

.bar-controls{
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.bar-controls .bar-arrows{
  position: relative;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-controls .bar-arrows > div{
  position: static !important;
  margin-top: 0 !important;
  width: 40px;
  height: 40px;
  background-size: 22px;
}

.bar-controls .swiper-horizontal>.swiper-pagination-progressbar,
.bar-controls .swiper-pagination-progressbar.swiper-pagination-horizontal{
  position: static;
  width: calc(100% - 120px);
}

.bar-controls .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
  background: linear-gradient(45deg,var(--secondary-color),var(--primary-color),var(--secondary-color));
}
/* custom swiper controls*/


.price_section .ov_headings{
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
}

.price_section .ov_headings .sec_title{
  color:var(--yellow);
}

.price_section .ov_headings .section_heading{
  color:#fff;
  font-weight: 600;
}

.price_section .price_img{position: absolute; top: 0; left: 0; width: 35%; height: 100%; object-fit: cover;}

.price_section .single_price{
  box-shadow: 0 5px 25px rgb(0 0 0 / 5%);
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
}
.price_section .single_price p{
  margin-bottom: 0;
}
.price_section .single_price .typology{
  background: #e7e7e7;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 10px 20px;
  line-height: 22px;
  letter-spacing: 1px;
  max-width: calc(100% - 30px);
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.my-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.price_section .price_c{
  background:#fff;
  max-width: calc(100% - 30px);
  margin:auto;
  padding: 25px 10px 35px;
}

.price_section .price{
  color: #151515;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 0;
  line-height: 34px;
  margin: auto;
}
.price_section .price sup{
  font-weight: 400;
}
.price_section .onw{
  font-size:14px;
  color:#797979;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price_section .title{color:#555; font-size:14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}
.price_section .sizes p{text-align: center;}
.price_section .type{margin-top:20px;}
.price_section .sizes p,
.price_section .type p{font-size:18px; letter-spacing: 0.5px; font-weight: 700; margin-top: 2px; color:#333;}
.price_section .call_btn {padding: 6px 24px; font-size: 14px; margin-top: 24px;
  min-height: 42px;
  width: 100%;
  box-shadow: 0 3px 7px rgb(0 0 0 / 25%);
}
.price_section .single_price .content{
  position: relative;
  z-index: 1;
  padding: 40px 10px 20px;
  max-width: calc(100% - 30px);
  margin: auto;
  background: #fff;
}

.price_section .single_price .content:before{
  position: absolute;
  content: '';
  height: calc(100% + 50px);
  width: calc(100% + 30px);
  background: #f0bf49;
  left: -15px;
  top: 0;
  z-index: -1;
  transform: skewY(-10deg);
  border-radius: 20px;
 
}

.price_section .single_price .content:after{
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #e7e7e7;
  top: -10px;
  left:0;
  z-index: -2;
  transform: skewY(-10deg);
}

/* Location */

.map {
  position: relative;
}

.location-advantages .inner{
  height: 100%;
  padding: 1rem;
  position: relative;
}
.location-advantages .inner::before{
  border-color: rgba(181, 157, 92, 0.725);
}

.location-advantages ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  color:#fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

.location-advantages ul li .loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-advantages ul li .loc-row img {
  flex: 0 0 35px;
  max-width: 35px;
  filter:invert(1);
}

.location-advantages ul li .loc-row p {
  margin-bottom: 0;
}

.location-advantages ul li .loc-dist {
}

.location-advantages ul li .loc-dist small {
  font-size: 13px;
  margin-left: 5px;
}
/* Location */
.footer-main
{
  background: var(--secondary-color);
  color: #fff;
  padding: 10px;
}

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 10 12 / 95%);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background-color: #fff;
  color: var(--body-color);
  border: none;
  
}
.modal-dialog {
  max-width: 441px;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  background-color: var(--secondary-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}
.no-gutters .col-md-6:first-child {
  background: var(--primary-color);
  border-radius: 1rem;
}

.modal-logo .inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.modal-logo .bhk {
  font-size: 1rem;
}

.modal-logo .bhk span {
  font-size: 200%;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1;
}

.modal-logo .price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  border: solid rgb(255 255 255 / 20%);
  border-width: 1px 0;
  font-size: 1rem;
}

.modal-logo .price span {
  font-weight: 700;
  color: var(--vibrant-color);
  font-size: 200%;
  line-height: 1;
}

.modal-body {
  padding: 1.5rem;
}
/* customize modal */

.footer-enquiryBtn {
  border-radius: 10px;
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background-color:var(--primary-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 8px 5px;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
  border-radius: 10px;
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  left: 20px;
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background: var(--body-color);
}
.bannerText {
  max-width: 397px;
  width: 98%;
  top: auto;
  bottom: 0;
  left: 0 !important;
  transform: none;
}
/* amenities */
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #fff;
}
.iconsContainer .iconBox .in:hover {
  background: var(--secondary-color) !important;
}
.iconsContainer .iconBox .in:hover img {
  filter: brightness(50);
}

.iconBox .in i {
  width: 30px;
}

.iconBox .in img {
  width: 40px;
  filter: sepia(81);
}

.iconBox .in h6 {
  font-weight: 700;
}
/* amenities */
.artistic-image {
  position: absolute;
  right: 3px;
  bottom: 10px;
  z-index: 99;
  margin: 0;
  font-size: 10px;
  background: #ffffffc4;
  padding: 3px;
}