@import url("https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --brown: #A0801B;
  --secondary-color :var(--brown);
  --purple: #7e2d65;
  --beige: #f9f0ec;
  --darkblue: #000;
  --woodbrown: #817b77;
  --primary-color: #fff7e8;
  --body-color: #;
  --light: #fff7e8;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
}

body {    
  color: #fff;
  background: #000;
  font: 400 14px "Montserrat", sans-serif;
  overflow-x: hidden;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}


button#inquiry1-submit {
    margin: 0 auto;
    margin-bottom: 13px;
}

a,
a:hover {
  text-decoration: none;
}

button:focus{outline: none;}

img {
  width: 100%;
  display: block;
}

.text-serif {
  font-family: "Playfair Display", serif;
}

.text-brown {
  color: var(--brown) !important;
}
.text-purple {
  color: var(--purple) !important;
}
.text-darkblue {
  color: var(--darkblue) !important;
}
.text-beige {
  color: var(--beige) !important;
}
.bg-darkblue {
  background-color: var(--darkblue);
}
.bg-brown {
  background-color: var(--brown) !important;
}

.bg-woodbrown {
  background-color: var(--woodbrown) !important;
}

.rotate-left{
  transform: rotate(90deg);
}
.rotate-right{
  transform: rotate(-90deg);
}

.wrapper {
  width: 100%;
  float: left;
  background: var(--darkblue);
  position: relative;
  z-index: 2;
}
/*header*/
.header {
    width: 100%;
    position: absolute;
    top: 0;
    /* background: #00000082; */
    z-index: 997;
    transition: all 300ms 
ease-in-out;
}

.header.fixed {
  background-color: #fff;
  
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}
.header .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 97%;
  margin: auto;
  padding: 5px 0;
}

.logo {
  width: 354px;
  /* height: 68px; */
  position: relative;
  /* padding: 5px 0; */
  min-height: 1px;
  transition: all 300ms ease-in-out;
}
.logo img{
  /* background: #000000; */
  /* padding: 5px; */
  /* border-radius: 6px; */
  /* border-bottom: 1px solid #FFFBEC; */
  margin-left: -58px;
}

.menu-section {
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a {
  color: #c7ae83;
}

/* .header.fixed .navi li a {
  font-size: 12px;
} */

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  width: 30px; 
  height: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  z-index: 99999;
  padding: 5px;
  right: 0;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--body-color);
  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, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

.menuContainer{
  position: fixed;
  top: 30px;
  width: 300px;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding: 80px 20px 20px;
  display: none;
  z-index: 995;
}
.menuContainer ul li a{
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--body-color);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.menuContainer ul li a:hover{
  color: var(--primary-color);
}

.socialBtn ul i {
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f:hover {
  background-color: var(--facebook);
}
i.fa-twitter:hover {
  background-color: var(--twitter);
}
i.fa-linkedin-in:hover {
  background-color: var(--linkedin);
}
i.fa-instagram:hover {
  background-color: var(--instagram);
}
i.fa-youtube:hover {
  background-color: var(--youtube);
}
/*header*/

.header.fixed {
  padding-top: -5px;
  background: var(--darkblue);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  position: fixed;
}

.header.fixed .logo img {
  height: auto;
  object-fit: cover;
  object-position: top center;
}
.overviewpp
{
    margin: 0;
    letter-spacing: 8px;
}
.overvilewpp
{
    margin: 0;
    letter-spacing: 6px;
}
/* menu modal */
.menu-modal-wrapper{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.7);
  overflow: auto;
  display: none;
  z-index: 999;
}

.menu-modal{
  width: 70%;
  height: 100%;
  padding: 5vw 8vw 3vw;
  color: #fff;
  background-color: var(--darkblue);
  position: relative;
  transform: translateX(-100%);
  transition: all 700ms cubic-bezier(.17,.67,.83,.67);
}
.menu-modal-wrapper.active .menu-modal{
  transform: translateX(0);
}

.modal-top-menu ul{
  display: flex;
  justify-content: space-between;
}

.menu-modal ul li a{
  color: #fff;
  position: relative;
  transition: all 300ms ease-in-out;
}

.menu-modal ul li a:hover{
  color: var(--brown);
}

.modal-top-menu ul li a{
  font-size: 11px;
  text-transform: uppercase;
}

.modal-top-menu ul li a.menuBtnClose{
  padding-right: 22px;
}

.menu-modal .bigMenu{
  margin: 3.5vw 0 5vw;
}

.menu-modal .bigMenu ul li a{
  font-size: 3vw;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}

.menu-modal .smallMenu ul li a{
  line-height: 2;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

.menu-modal .downloadMenu ul li{
  margin-bottom: 10px;
}
.menu-modal .downloadMenu ul li a{
  display: flex;
  align-items: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-modal .downloadMenu ul li a .img-fluid{
  width: 30px;
  border-radius: 50%;
  border: 1px solid var(--brown);
  margin-right: 10px;
  padding: 5px;
  transition: all 300ms ease-in-out;
}

.menu-modal .downloadMenu ul li a:hover .img-fluid{
  filter: brightness(50);
}

.menu-modal #closeMenu{
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.cta-box ul{
  display: flex;
  gap: 1rem
}

.cta-box a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  font-size: .75rem;
}

.cta-box i{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  border-radius: 50%;
  color: #FFFBEC;
  box-shadow: 0 0 0 1px #FFFBEC;
  transition: all 300ms ease-in-out;
  background: #fff;
}

.cta-box i:hover{
  color: #c7ae83;
}

.cta-box .whatsappBtn{
  background: #FFFBEC;
  color: #fff;
  padding: 4px 4px 4px 1rem;
  border-radius: 40px;
  flex-direction: row;
}

.cta-box .whatsappBtn:hover{
  background-color: var(--primary-color);
}

.cta-box .whatsappBtn i{
  box-shadow: 0 0 0 50px #fff inset;
  color: var(--whatsapp);
  width: 36px;
  height: 36px;
}
/* menu modal */

.filter-white {
  -ms-filter: brightness(50);
  filter: brightness(50);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.p-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}

.position-relative {
  z-index: 1;
}

.landing {
  height: 100vh;
}


.landing-img {
  width: 100%;
  display: block;
  transition: all 500ms linear;
}

.landing-bg-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20vh;
  pointer-events: none;
  z-index: 2;
}

.landing-intro-content {
  position: absolute;
  bottom: 15vh;
  margin-bottom: -2rem;
  left: 8%;
  z-index: 4;
}

.landing-intro-content h1 {
  font-size: 8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 5px;
}

.text-numeric{
  font-family: initial;
}

.luxury-residences-home-btn {
  position: absolute;
  right: 8%;
  bottom: 20vh;
  transform: translateY(50%);
  z-index: 3;
}

.luxury-residences-home-btn a {
  background: var(--beige);
  color: var(--darkblue);
  width: 280px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 80px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.luxury-residences-home-btn a img {
  max-width: 60px;
  border-radius: 50%;
  transition: all 300ms linear;
}

.luxury-residences-home-btn a:hover img {
  transform: scale(0.7);
}

.luxury-residences-home-btn a > span {
  margin: 0 20px;
}

#scroll-to-next {
  left: 13%;
  bottom: 0;
}

.elegant-btn-design {
  width: 170px;
  height: 170px;
  position: absolute;
  z-index: 9;
}

.elegant-btn-design.sm-btn-design{
  width: 80px;
  height: 80px;
}

.elegant-btn-design.center {
  left: calc(50% - 85px);
  bottom: 0;
  transform: translateX(-50%);
}

.elegant-btn-design a {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 100;
}

.elegant-btn-design.sm-btn-design a{
  font-size: 18px;
}

.elegant-btn-design a svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateX(0.25px);
}

.elegant-btn-design a svg rect {
  rx: 100px;
  ry: 100px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.25;
  width: calc(100% - 2px);
  height: calc(100% - 1px);
  stroke-dasharray: 321%;
  stroke-dashoffset: 642%;
  transition-property: stroke-dashoffset, transform;
  transform-origin: 50% 50%;
  transition-duration: 1.3s;
  transition-timing-function: cubic-bezier(0.74, 0, 0.24, 0.99);
}

.elegant-btn-design a svg rect + rect {
  stroke: var(--beige);
  stroke-dashoffset: 321%;
}

.elegant-btn-design.dark-control a svg rect + rect,
.elegant-btn-design.dark-control a svg.dark-stroke rect,
.elegant-btn-design.dark-control a svg.light-stroke rect + rect {
  stroke: var(--darkblue);
}
.elegant-btn-design.dark-control a svg.dark-stroke rect + rect,
.elegant-btn-design.dark-control a svg.light-stroke rect{
  stroke: var(--beige);
}

.elegant-btn-design a:hover svg rect {
  transform: rotate(0deg);
  stroke-dashoffset: 321%;
}

.elegant-btn-design a:hover svg rect + rect {
  stroke-dashoffset: 0%;
}

.elegant-btn-design a img {
  width: 30px;
}

.stoneBox{
  position: relative;
}

.stoneBox .stone-img{
  position: absolute;
  left: 30%;
  top: 60%;
  width: 40%;
  transition: all 500ms ease-in-out;
}

.landing-text-area h3 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.gallerySlider {
  transition: transform 1s linear;
}

.gallerySlider .galleryImgBox {
  padding: 0 30px;
  position: relative;
}

.gallerySlider .galleryImgBox .caption{
  position: absolute;
  right: 45px;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.absolute-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.absolute-text.text-center {
  width: 100%;
}

.absolute-text h2 {
  font-size: 6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.absolute-text p {
  text-transform: uppercase;
  letter-spacing: 5px;
}

.welcome-jaipur-container {
  margin-top: 0rem;
  display: block;
  background: url(../img/mandar.png);
}

.welcome-text {
  min-width: 70%;
  /* position: absolute; */
  /* top: 30%; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  text-align: center;
  z-index: 2;
}

.welcome-text h2 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.welcome-image {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  background: var(--darkblue);
  transition: opacity 800ms linear;
  z-index: 1;
  opacity: 0;
}

.heading {
  position: relative;
  margin-bottom: 30px;
  z-index: 3;
}

.heading h2 {
  font: 400 3rem "Playfair Display", serif;
  text-transform: uppercase;
}

.heading h4 {
  font: 400 2rem "Playfair Display", serif;
  text-transform: uppercase;
}

.heading h5 {
  font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3vw;
}

.heading p {
  display: block;
  width: 70%;
  margin: 20px auto 0;
}

.heading.hasline::after {
  content: "";
  width: 70px;
  display: block;
  height: 2px;
  background: var(--darkblue);
}

.readmore a,.readmore button{
  min-width: 160px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  background: #FFFBEC;
  text-align: center;
  justify-content: center;
}

.readmore button{ 
  background-color: #A0801B;
}

.readmore a:hover,.readmore button:hover{
  background: var(--brown);
  color: #fff !important;
}

.readmore.dark a,.readmore.dark button{
  border-color: var(--darkblue);
}

.readmore.dark a:hover,.readmore.dark button:hover{
  background: var(--darkblue);
  color: #fff;
}

.readmore.solid-brown a,.readmore.solid-brown button{
  background: var(--brown);
  color: #fff;
}

.readmore.solid-brown a:hover,.readmore.solid-brown button:hover{
  background: var(--darkblue);
  color: #fff;
}

.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background: var(--darkblue);
  background: -moz-linear-gradient(161deg, var(--darkblue) 0%, var(--darkblue) 49%, var(--brown) 100%);
  background: -webkit-linear-gradient(161deg, var(--darkblue) 0%, var(--darkblue) 49%, var(--brown) 100%);
  background: linear-gradient(161deg, var(--darkblue) 0%, var(--darkblue) 49%, var(--brown) 100%);
}

.video-bg video {
  width: 100%;
  height: 100%;
  float: left;
  opacity: 0.15;
  object-fit: cover;
  object-position: bottom;
}

.corp-video{
  text-align: center;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.corp-video .elegant-btn-design{
  position: relative;
  margin-bottom: 15px;
  left: 0;
  transform: none;
}

.corp-video .video-th{
  position: absolute;
    filter: brightness(0.5);
    z-index: -1;
    pointer-events: none;
}

.corp-video .video-th video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenitiesContainer{
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.amenitiesContainer .amenBox{
  width: 20%;
  padding: 15px;
}

.amenitiesContainer .amenBox figure{
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenitiesContainer .overviewicon {
  width: 25%;
}

.amenitiesContainer .overviewicon figure{
  border: none;
}

.amenitiesContainer .amenBox figure .img-fluid{
  max-width: 40px;
  flex-basis: 40px;
  margin-right: 15px;
}

.amenitiesContainer .amenBox figure figcaption{
  font-size: 13px;
  text-align: left;
}

.more-amenities-heading{
  padding-right: 5rem;
}

.amenitiesSliderContainer{
  margin-top: 7rem;
}

.amenities-slide-img{
  overflow: hidden;
}

.amenities-slide-img img{
  height: 100%;
  object-fit: cover;
  transition: all 1000ms ease-in-out;
  transform: scale(1.2,1.2);
}

.carousel-item.active .amenities-slide-img img{
  transform: scale(1,1);
}

.amenities-slide-text{
  display: flex;
  align-items: center;
}

.amenities-slide-text section{
  padding-left: 4rem;
  padding-right: 3rem;
  margin-bottom: 5rem;
}

.amenities-slide-text section h2{
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

p{
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.amenities-controls{
  display: flex;
  position: absolute;
  left: 58%;
  bottom: 0rem;
}

.amenities-controls .elegant-btn-design{
  position: relative;
  margin: 0 5px;
}

.amenitiesSliderContainer .num,
.c502-slider .num{
  position: absolute;
  bottom: 3rem;
  left: 42%;
  z-index: 9;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

.amenitiesSliderContainer .num .slide-index,
.c502-slider .num .slide-index{
  font: 400 6rem/1 'Playfair Display', serif;
  display: inline-block;
  transform: translate(-40px, -20px);
}

.fpbox{
  padding: 0 30px;
}

.fpbox figure{
  display: block;
  margin-bottom: 0;
  padding: 20px;
  background: var(--beige);
  position: relative;
  z-index: 1;
}

.fpbox figure::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--darkblue);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms ease-in-out;
}

.fpbox figure:hover::before{
  transform: scaleY(1);
  transform-origin: bottom;
}

.fpbox figure h4{
  text-transform: uppercase;
  color: var(--brown);
  font:400 2rem/1 'Playfair Display', serif;
  margin-bottom: 30px;
}

.fpbox figure figcaption{
  color: var(--darkblue);
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.fpbox figure:hover figcaption{
  border-top-color: rgb(255 255 255 / 10%);
}

.fpbox figure figcaption p{
  margin-bottom: 0;
  display: flex;
  padding: 8px 0;
  transition: transform 500ms ease-in-out;
}

.fpbox figure:hover figcaption p{
  color: var(--beige);
}

.fpbox figure figcaption p strong{
  margin-right: 15px;
  color: var(--brown);
}

.fpbox figure:hover figcaption .readmore a{
  color: var(--beige);
}

.joi-icon{
  position: absolute;
  width: 50%;
  left: -10%;
  top: -15%;
  opacity: 0.4;
  transition: all 500ms ease-in-out;
}

.location-map{
  padding-left: 5%;
  position: relative;
  z-index: 1;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

/* .location-map::before{
  content: '';
  position: absolute;
  left: calc(50% - 50vw / 2);
  top: calc(50% - 50vw / 2);
  width: 50vw;
  height: 50vw;
  z-index: 1;
  box-shadow: 0 0 0 10vw #181d24 inset;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.location-map:hover::before{
  box-shadow: 0 0 0 9vw #181d24 inset;
} */

.location-map .elegant-btn-design{
  bottom: 0;
}

.location-map img{
  transition: all 300ms ease-in-out;
}

.location-advantages{
  padding-right: 5%;
}

.location-advantages ul{
  display: flex;
  flex-wrap: wrap;
  padding-right: 5px;
  height:36vw;
  overflow: auto;
}

.location-advantages ul::-webkit-scrollbar {
  width: 2px;
}
 
.location-advantages ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.location-advantages ul::-webkit-scrollbar-thumb {
  background-color: var(--brown);
  outline: 1px solid var(--brown);
  border-radius: 5px;
}

.location-advantages ul li{
  width: 100%;
  padding: 5px;
}

.location-advantages ul li:first-child{
  padding-top: 0;
}

.location-advantages ul li:last-child{
  padding-bottom: 0;
}

.location-advantages ul li figure{
  height: 100%;
  padding: 10px;
  border: 1px solid rgb(0 0 0 / 10%);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}

.location-advantages ul li figure:hover{
  transform: translateY(2px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.location-advantages ul li figure .img-fluid{
  width: 35%;
  margin-right: 15px;
  border-right: 1px solid rgb(0 0 0 / 10%);
}
.location-advantages ul li figure .img-fluid img{
  width: 50px;
  margin: 0 auto;
}

.location-advantages ul li figure figcaption{
  width: 100%;
  position: relative;
  padding: 10px 0;
  z-index: 1;
}

.location-advantages ul li figure figcaption strong{
  font-size: 26px;
}

.location-advantages ul li figure figcaption strong small{
  display: inline-block;
  font-size: 12px;
}

.location-advantages ul li figure p{
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.landing-banks-container .container-fluid{
  margin-top: 5rem;
}

.landing-banks-container figure{
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #dfc2b5;
  position: relative;
}

.landing-banks-container figure:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #dfc2b5;
  position: absolute;
  left: -50vw;
  top: 0;
}

.landing-banks-container figure .pattern-bg{
  width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}

.landing-banks-container figure .holder {
  position: relative;
  width: 100%;
  transform: translate(85px, -35px);
}

.landing-banks-container figure .holder img{
  width: 450px;
  box-shadow: 10px 10px 50px rgb(0 0 0 / 20%);
}

.bank-content-box{
  padding-left: 10%;
}

.bank-content-box h5{
  margin-top: 3rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 300;
}

.bank-content-box ul{
  display: flex;
  background: #fff;
}

.bank-content-box ul li{
  padding: 0 5px;
}

.elem {
  position: absolute;
  width: 200px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
}
.elem.elem-bl {
  left: 0;
  bottom: 0;
}
.elem.elem-bl img {
  object-position: -80px 80px;
}
.elem.elem-br {
  right: 0;
  bottom: 0;
}
.elem.elem-br img {
  object-position: 80px 80px;
}

/* testimonials */
.speaks-slide{
  position: relative;
  padding: 20px 20%;
  text-align: center;
  color: var(--darkblue);
}

.speaks-text .speaker{
  width: 100px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
}

.speaks-text h5{
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.speaks-text h5::after{
  content: '';
  display: table;
  margin: 20px auto 0;
  width: 60px;
  height: 2px;
  background-color: rgb(0 0 0 / 10%);
}

.speaks-text .speaker-name p{
  margin-bottom: 0;
}

.speaks-controls{
  top: 50%;
  transform: translateY(-50%);
}

.speaks-controls.left-control{
  left: 0;
}

.speaks-controls.right-control{
  right: 0;
}

.quote-mark{
  left: 10%;
  top: 0;
  color: var(--darkblue);
  opacity: 0.1;
}
.quote-mark i{
  font-size: 10vw;
}
/* testimonials */

/*Footer*/
.footer-area {
  text-align: center;
  background: var(--darkblue);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.footer-logo{
  width: 100px;
  margin: 0 auto 3rem;
}

.footerBox ul{
  display: flex;
  justify-content: center;
}

.footerBox ul li{
  margin: 0 10px;
}

.footerBox ul li a{
  display: block;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid rgb(255 255 255 / 10%);
  color: #fff;
  font-size: 13px;
  transition: all 300ms ease-in-out;
}

.footerBox ul li a:hover{
  background: var(--brown);
}

.footerBottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footSocial{
  justify-content: center;
  margin: 4rem 0;
}

.footSocial .elegant-btn-design a svg rect{
  stroke-width: 1;
}

.footerBottom{
  flex-wrap: wrap;
}
.footerBottom .copyright, .footerBottom .rera{
  display: flex;
  width: 100%;
  justify-content: center;
}

.footerBottom .rera{
  margin-bottom: 20px;
}

.footerBottom .rera p{
  flex: 1 0 0;
  padding: 0 20px;
  border-right: 1px solid rgb(255 255 255 / 10%);
  text-align: center;
}

.footerBottom .rera p:first-child{
  text-align: right;
  padding-left: 0;
}

.footerBottom .rera p:last-child{
  padding-right: 0;
  border-right: none;
  text-align: left;
}

.footerBottom .rera p a{
  color: #fff;
}

.footerBottom p{
  font-size: 11px;
  line-height: 1;
}

.footerBottom p small{
  display: block;
}

.go_up {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  left: calc(50% - 20px);
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
}

.go_up:hover {
  background: var(--brown);
}
/*Footer*/
.object-cover{
  object-fit: cover;
}
.bannerConfig{
  position: absolute;
  left: 3rem;
  top: 55%;
  background-color: rgb(255 255 255 / 55%);
  backdrop-filter: blur(3px);
  border: 1px solid #fff;
  box-shadow: 0 2px 10px rgb(1 1 1 / 30%);
  color: var(--darkblue);
  display: flex;
  align-items: center;
  z-index: 2;
}

.bannerConfig .inner{
  padding: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.bannerConfig .inner + .inner{
  border-left: 1px solid rgb(0 0 0 / 45%);
}

.bannerConfig .inner .h1{
  margin-bottom: 10px;
}

.bannerText {
  position: absolute;
  left: 0;
  top: 10%;
  /* padding: 2rem; */
  border-radius: 1.25rem;
  color: var(--body-color);
  z-index: 9;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.bannerText img
 {
    width: 49px;
    margin: 10px auto;
}
.bannerText .h1 {
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: 2px;
    margin: 1rem 0;
    color: #000;
}

.bannerText .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: rgb(255 255 255 / 55%);
  backdrop-filter: blur(3px);
  border: 1px solid #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.banner-footer {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #a57525;
  padding: 10px;
  text-transform: uppercase;
}
.banner-footer h4 small{
  display: block;
  text-transform: uppercase;
  font-size: .5rem;
  letter-spacing: 1px;
}
.padding
{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* Specifications */
.fixed-form {
  position: fixed;
  background: #A0801B;
  z-index: 1000;
  transition: all 300ms ease-in-out;
}

.fixed-form .innerform {
  padding: 20px 20px;
  border-radius: 10px;
}

.fixed-form .innerform h6 {
  font-size: 12px;
  text-transform: uppercase;
}

.fixed-form .innerform h3 {
  font-size: 18px;
}

.fixed-form .innerform h3 span {
  font-weight: 700;
font-size: 20px;
}

.fixed-form .form-group {
  margin-bottom: 0;
}

.fixed-form .form-group .form-control {
  color: #000;
  border-bottom-color: #000;
}

.fixed-form .form-group .form-control::placeholder {
  color: #000;
}

.fixed-form .formFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-form .formFooter button {
  border-radius: 30px;
  text-align: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 15px 2px;
  border: none;
  margin-top: 10px;
  transition: all 300ms ease-in-out;
  outline: none;
  text-transform: uppercase;
}

.fixed-form .formFooter button:hover {
  scale: 0.98;
  font-weight: bold;
}

.fixed-form.fixed {
  transform: translateY(0%);
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 3px 0 0;
  border-radius: 0;
  display: flex;
  justify-content: center;
  z-index: 999;
  border-top: 1px solid #ba9a50;
}

.fixed-form.fixed .innerform {
  padding: 4px 20px;
  border-radius: 0;
  width: 90%;
}

.fixed-form.fixed .innerform h3,
.fixed-form.fixed .innerform h6 {
  display: none;
}

.fixed-form.fixed .formFooter button {
  margin-top: 0;
}
.fixed-form.fixed .formFooter .chatBtn {
  display: flex;
}

.fixed-form.fixed .col-12 {
  flex: 1 0 0;
}

.fixed-form.fixed .form-group .form-control {
  padding: 5px;
  margin: 0;
}
.text-primary {
    color: #A0801B !important;
}
.footer 
{
  padding-bottom: 4rem;
  color: #fff;
  padding-top: 1rem;
}
.footer a
{
  color: #fff;
    font-size: 12px;
    line-height: 1.1;
}
.footer p
{
    font-size: 12px;
    line-height: 1.1;
}
/* Customise modal */
.modal-backdrop.show {
  opacity: 1;
  background-color: rgba(51 51 51 / 80%);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #000;
  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:#fff;
  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;
}

.modal-logo{
	width: 180px;
	margin: 0 auto 2rem;
}

.modal-header{
  background-color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 2px;
}

.modal-icons{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #A0801B;
  text-transform: uppercase;
}
.modal-icons h6{
  color: #A0801B;
}
.modal-icon .img-fluid{
  max-width: 50px;
  margin: 0 auto 10px;
  color: #000;
}

.modal-icon span{
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #000;
}
.input-group
{
  width: 100%;
  display: block;

}
.modal-body .form-control {
  background-color: rgb(0 0 0 / 5%);
  width: 100%;
  padding: 1rem;
  display: flow;
  border: 1px solid #c18c31;
    color: #fff;
}
.modal-body .form-control:focus{
  background-color: var(--body-bg);
}
/* Customise modal */

/* floor plans */
.fpContainer .fpBox .inner {
  padding: 1rem;
  box-shadow: 10px 10px 0 rgba(77, 32, 17, 0.284);
  border: 1px solid rgb(58, 29, 5);
  transition: all 300ms ease-in-out;
  border-radius: 10px;
}
.fpContainer .fpBox .inner img {
  filter: blur(4px);
}

.fpContainer .fpBox .inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
}

.planBase {
  margin: 1rem 0 1.5rem;
  color: #ffffff;
}

.fpDetails:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(243 205 139);
  color: #ffffff;
}

.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 600;
}
.readmore-a-f
{
  border-radius:10px !important;
}
/* floor plans */
.container-lg
{
  max-width: 96%;
  margin: auto;
}


/* Gallery Section */
.gallery-section {
    padding: 30px 0;
    box-shadow: 0px 15px 20px -17px rgb(0 0 0 / 8%);
}

.grid-gallery-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin: auto
}

.grid-gallery-section .gal-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover
}

.img-gallery1 {
    grid-area: 1 / 1 / 3 / 3
}

.img-gallery2 {
    grid-area: 1 / 3 / 2 / 5
}

.img-gallery3 {
    grid-area: 2 / 3 / 3 / 4
}

.img-gallery4 {
    grid-area: 2 / 4 / 3 / 5
}

.img-gallery5 {
    grid-area: 1 / 5 / 3 / 7
}

.gap-3{
  row-gap: 20px;
}

.gallery-slider .swiper-slide{
  height: auto;
}
.gallery-slider .swiper-slide .gal-img{
  height: 100%;
}

.swiper-slide .gal-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  aspect-ratio: 3/2;
}

/* customize swiper */
div[class^="swiper-button"] {
  color: #fff;
  background-color: var(--brown);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 75%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
div[class^="swiper-button"]:hover {
  color: #fff;
  background-color: var(--secondary-color-dark) !important;
  box-shadow: 0 0 0 1px var(--primary-color);
}

div[class^="swiper-button"]:after {
  font-size: 1rem;
}

div[class^="swiper-button"].no-style{
  box-shadow: none;
  background-color: transparent;
  color: inherit;
  -webkit-backdrop-filter: blur(10px◘);
  backdrop-filter: blur(10px);
}

div[class^="swiper-button"].sm::after,
div[class^="swiper-button"].no-style:after {
  font-size: 0.875rem;
}

div[class^="swiper-button"].sm {
  width: 30px;
  height: 30px;
}
/* customize swiper */

section.location-advantages {
    padding: 40px 0;
    box-shadow: 0px 15px 20px -17px rgb(0 0 0 / 8%);
}

.footer-enquiryBtn {
  border-radius: 10px;
  position: fixed !important;
  bottom: 2px;
  left: 2px;
  right: 2px;
  
  justify-content: space-between;
  z-index: 99;
  background-color:#f9f0ec;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #000;
  text-align: center;
  display: block;
  padding: 8px 5px;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  width: 33%;
  border-left: 0;
} 
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
  border-radius: 10px;
  color: #fff;
}


/*responsive*/
@media (max-width: 1200px) {
}

@media (min-height: 1366px) {
  .landing{height: 60vh;}
}

@media (min-height: 1280px) {
}

@media (max-width: 1024px) {
  .container-fluid{padding-right: 5%; padding-left: 5%;}
  .header{padding: 10px 5% 5px;}
  .topDetails ul li{margin-right: 10px;}
  .landing-intro-content h1{font-size: 5rem;}
  .welcome-text h2, .heading h2{font-size: 2.7rem;}
  .more-amenities-heading{padding-right: 15px;}
  .inside-banner{margin-top: 11rem; padding-top: 4rem}
  .page-title h1{font-size: 5rem;}
  .master-plan-container .elegant-btn-design{bottom: 10%;}
  .master-plan-container .elegant-btn-design a img.filter-dark{filter: brightness(50);}
  .gallery-ph2 .galBox{width: 50%;}
}

@media (max-width: 812px) {
  .p-6{padding-top: 4rem; padding-bottom: 4rem;}
  .header .navi ul li, .enqBtn span, .socialBtn, .luxury-residences-home-btn{display: none;}
  .header .navi ul li:first-child{display: block;}
  .enqBtn a div{padding: 12px 13px;}
  .logo{width: 250px;}
  .header .navi, .header .topDetails{width: calc(50% - 50px);}
  .header.fixed .navi, .header.fixed .topDetails{width: calc(50% - 35px);}
  .topDetails ul li:nth-last-child(2){margin-right: 0;}
  .menu-modal .bigMenu ul li{margin: 5px 0;}
  .menu-modal .bigMenu ul li a{font-size: 5vw;}
  .landing{height: 640px;}
  .landing-bg-strip{height: 12vh;}
  .landing-intro-content{bottom: 12vh; left: auto; right: 5%; text-align: right;}
  .landing-intro-content h1{font-size: 4rem;}
  .stoneBox .stone-img{left: 20%; width: 60%;}
  .landing-text-area h3{font-size: 20px;}
  .landing-text-area p{margin-bottom: 0;}
  .absolute-text h2{font-size: 4rem;}
  .gallerySlider .galleryImgBox{padding: 0 15px;}
  .welcome-text{min-width: 90%;}
  .welcome-text h2, .heading h2{font-size: 2rem;}
  .heading h4{font-size: 1.5rem; margin-bottom: 0;}
  .heading h5{letter-spacing: 2vw;}
  .more-amenities-heading{padding-bottom: 30px; text-align: center;}
  .corp-video{padding: 50px 15px;}
  .corp-video .video-th{right: 20px; left: 20px;}
  .corp-video .elegant-btn-design, .corp-video .readmore{margin-left: auto; margin-right: auto;}
  .amenities-slide-text section{padding-left: 15px; padding-right: 10px;}
  .amenitiesSliderContainer .num, .c502-slider .num{bottom: 1rem;}
  .amenitiesSliderContainer .num .slide-index, .c502-slider .num .slide-index{font-size: 4rem; transform: translate(-20px, -20px);}
  .amenitiesContainer .amenBox{padding: 10px;}
  .amenitiesContainer .amenBox figure{height:100%; flex-direction: column; justify-content: center;}
  .amenitiesContainer .amenBox figure .img-fluid{margin-right: 0; margin-bottom: 10px;}
  .amenitiesContainer .amenBox figure figcaption{text-align: center;}
  .amenities-controls{left: 53%;}
  .elegant-btn-design{width: 100px; height: 100px;}
  .elegant-btn-design.sm-btn-design{width: 50px; height: 50px;}
  .elegant-btn-design.sm-btn-design a img {width: 23px;}
  .location-advantages{padding-left: 0;}
  .location-advantages ul{height: 52vw;}
  .location-advantages ul li{padding: 5px 0;}
  .location-advantages ul li figure{position: relative; z-index: 1;}
  .location-advantages ul li figure .img-fluid{margin-right: 0; border-right: none; position: absolute; top: 5px; right: 5px; width: 25px; z-index: -1;}
  .location-advantages ul li figure .img-fluid img{width: 100%;}
  .location-advantages ul li figure figcaption{padding: 0;}
  .location-advantages ul li figure figcaption strong{font-size: 20px;}
  .location-advantages ul li figure figcaption strong small{font-size: 11px;}
  .location-advantages ul li figure p{padding-top: 4px;}
  .speaks-slide{padding: 0 10%;}
  .speaks-text h5{margin-bottom: 15px; letter-spacing: 1px;}
  .celebration-wrapper .row.align-items-center{align-items: flex-start !important;}
  .celebration-wrapper .celeb-content section{width: 100%; padding-bottom: 30px;}
  .celebration-wrapper .heading{margin-bottom: 15px;}
  .celebration-wrapper .celeb-content section > h5{margin-bottom: 10px; font-size: 18px;}
  .fpbox{padding: 10px 15px;}
  .page-title h1{font-size: 4rem;}
  .gallery-wrapper{margin-top: 2rem;}
  .location-map.location-inside img{width: 120%; object-position: -60px center;}
  .location-advantages{background-color: var(--beige); position: relative; z-index: 1;}
  .suncity-text:first-child article{padding-right: 0;}
  .suncity-text:last-child article{padding-left: 0;}
  .sun-num{margin: 10px 0;}
  .contactForm .inner-cont{padding-left: 0;}
  .field input, .field select, .field .custom-file-label{height: 40px;}
  .field textarea{height: 80px;}
}

@media (max-width: 717px) {
  .header.fixed{padding-top: 0; padding-bottom: 0;}
  .landing{height: 470px;}
  .amenities-slide-text section h2{font-size: 2rem; margin-bottom:0;}
  .amenitiesContainer .amenBox figure figcaption{font-size: 13px;text-align: left;}
  .landing-location-container .row{margin-left: 0; margin-right: 0;}
  .location-map{padding-right: 5%; margin-top: -60px;}
  .location-map .elegant-btn-design{bottom: 30px;}
  .location-advantages{padding-left: 5%;}
  .location-advantages ul{height: auto;}
  .location-advantages ul li{width: 50%; padding: 5px;}
  .location-advantages ul li:nth-child(2) {padding-top: 0;}
  .location-advantages ul li:nth-last-child(2) {padding-bottom: 0;}
  .footer-logo{display: none;}
  .footSocial{margin: 2rem 0;}
  .inside-banner{margin-top: 8rem; padding-top: 3rem;}
  .page-title h1{font-size: 3.5rem;}
  .page-title h4{font-size: 1.2rem;}
  .celebration-wrapper .celeb-content section > h5{font-size: 16px; margin-bottom: 10px;}
  .fp-container .row{margin-right: -5px; margin-left: -5px;}
  .fpbox{padding: 5px;}
  .fpbox figure h4{font-size: 1.5rem; margin-bottom: 20px;}
  .location-map.location-inside{margin-bottom: 3rem; margin-top: 0;}
  .location-map.location-inside img{width: 100%; object-position: center;}
  .foot-print{margin-top: 2rem;}
  .contactBox{margin-bottom: 2rem;}
  .contactBox:last-child{margin-bottom: 0;}
  .contactBox section h5{margin-bottom: 15px;}
  .amenitiesSliderContainer {
    margin-top: 3rem;
}
.bannerText img {
    width: 40px;
}
.banner-footer h4
{
        font-size: 16px;
}
}

@media (max-height: 480px) {
  .menu-modal{height: 135%;}
}

@media (max-width: 575px) {
}

@media (max-width: 568px) {
  .heading{margin-bottom: 20px;}
  .footerBox ul li{margin: 0 5px;}
  .footerBox ul li a{padding: 10px 12px;}
  .footerBottom .rera p{padding: 0 6px;}
  .gallery-ph2 .galBox{width: 60%;}
  .c502-slider{margin-bottom: 5px;}
  .c502-slider .big-gallery-title{top: 15px;}
  .c502-slider .big-gallery-title h4{letter-spacing: 5px; font-size: 14px; text-transform: uppercase;}
  .gallery-ph1 .row{margin-left: -5px; margin-right: -5px;}
  .galBox-ph1.col-sm-6{width: 50%; margin: 5px 0; padding: 0 5px;}
  .flat-controls{bottom: 15px;}
  .sun-num{width: calc(100% / 3);}
  .sun-num section h2 span{font-size: 100%;}
  .sun-more-projects .row{margin-left: -10px; margin-right: -10px;}
  .more-projectBox{width: 50%; padding: 0 10px;}
  .contactBox{width: 50%;}
  .con-map{margin-bottom: 2rem;}
  .con-map .inner-map{height: 330px;}
}

@media (max-width: 512px) {
  .footerBox ul{flex-wrap: wrap;}
  .footerBox ul li{width: 50%; padding: 5px; margin: 0;}
  .footerBottom .rera{flex-direction: column; padding: 15px 0; border: solid rgb(255 255 255 / 10%); border-width: 1px 0;}
  .footerBottom .rera p{padding: 7px 0; border-right: 0; text-align: center !important;}
  .celeb-content{padding-top: 30px; padding-bottom: 30px;}
  .contactBox{width: 100%; text-align: center;}
  .contactBox p{text-align: center;}
  .contactBox section .con-links li a{justify-content: center;}
  .fixed-form.fixed {
        position: inherit;
        border-bottom: 1px solid #ba9a50;
        padding: 1rem 0;
        flex-wrap: wrap;
    }
  .fixed-form .form-group {
    margin-bottom: 10px;
}
.bannerConfig .inner .h1 {
    font-weight: 700;
    font-size: 1.5rem;
}
.bannerConfig .inner {
    padding: 1rem;
}
.bannerConfig
{
  left: 2rem;
}
.elegant-btn-design.center {
    left: calc(50% - 52px);
    margin-top: 2rem;
}
.grid-gallery-section {
    display: flex;
    flex-wrap: wrap;
}
.amenitiesContaineroverview .amenBox {
        width: 100% !important;
        background: #fff;
        color: #000;
        margin-bottom: 1px;
    }
    button.close {
    right: -2px;
    }
.overviewpp {
    text-align: center;
}
.residencesm p
{
  letter-spacing: 1px;
}
.residencesm p:nth-child(1)
{
    border-bottom: 1px solid #ccc;
    margin-bottom: 6px !important;
    padding: 6px !important;
}
.footer p {
    text-align: center;
    font-size: 9px;
    line-height: 1.1;
}
}

@media (max-width: 480px) {
}

.m_social_btn{display: none;}

@media (max-width: 425px) {
  .header{padding: 0 5%;}
  .header .navi, .header .topDetails{width: auto !important;}
  .navi ul li{margin-right: 0;}
  .menuBtn, .m_social_btn{width: 30px; height: 30px; box-shadow: 0 0 0 1px var(--brown); border-radius: 50%; display: flex; align-items: center; justify-content: center;}
  .menuBtn{font-size: 8px;}
  .menuBtn div{padding-right: 0;}
  .menuBtn div i{display: none;}
  .menuBtn .bars{width: 15px; height: 1px; position: relative; background-color: #fff;}
  .menuBtn .bars::before, .menuBtn .bars::after{content: ''; position: absolute; left: 0; width: 100%; height: 1px; background-color: #000;}
  .menuBtn .bars::before{top: -3px;}
  .menuBtn .bars::after{bottom: -3px;}
  .topDetails{position: relative;}
  .topDetails ul{display: none; position: absolute; margin-top: 7px;}
  .topDetails ul li{margin-bottom: 5px; margin-right: 0;}
  .header.fixed .callBtn a{background-color: #fff; color: var(--darkblue);}
  .m_social_btn{display:flex;}
  .m_social_btn i.arrow-down{position: static; margin-bottom: 2px;}
  .callBtn, .socialBtn{width: 30px; height: 30px;}
  .callBtn a, .socialBtn, .socialBtn ol li a, .enqBtn a div{width: 30px; height: 30px; line-height: 28px;}
  .enqBtn a div{padding: 0; text-align: center; line-height: 30px;}
  .topDetails ul li a{font-size: 10px;}
  .header.fixed .topDetails ul li a{box-shadow: 0 0 10px rgb(0 0 0 / 20%);}
  .menu-modal{width: 80%;}
  .menu-modal .bigMenu{margin: 3rem 0 2rem;}
  .menu-modal .bigMenu ul li a{font-size: 1.8rem;}
  .smallMenu{margin-bottom: 15px;}
  .landing{height: 70vh;}
  .landing-img, .landing-img img{height: 100%; object-fit: cover;}
  #scroll-to-next, .stoneBox{display: none;}
  .landing-intro-content{text-align: left; left: 5%;}
  .landing-intro-content h1{font-size: 3rem;}
  .landing-text-area h3{font-size: 17px; margin-bottom: 2rem;}
  .landing-gallery{padding-top: 0;}
  .gallerySlider .galleryImgBox{flex: 0 0 60%; max-width: 60%;}
  .absolute-text.text-center{padding: 0 5%;}
  .absolute-text{top: 40%;}
  .absolute-text h2{font-size: 2rem;}
  .absolute-text p{letter-spacing: normal;}
  .welcome-jaipur-container{/* height: 300px; */}
  .welcome-image, .welcome-image img{height: 100%; object-fit: cover;}
  .welcome-text h2{font-size: 1.6rem;}
  .heading h2{font-size: 1.5rem; margin-bottom: 0;}
  .readmore a, .readmore button, p{font-size: 15px;}
  .amenities-slide-text{padding-top: 2rem;}
  .amenities-slide-text section{margin-bottom:0; padding-left: 0; padding-right: 0;}
  .amenities-slide-text section h2{margin-bottom: 18px; font-size: 28px;}
  .amenitiesSliderContainer .num{bottom: auto; left: auto; right: 20px; top: 45vh;}
  .amenities-controls{left: 5%;}
  .amenitiesContainer .amenBox{width: 50%; padding: 5px;}
  .amenitiesContainer .amenBox figure{flex-direction: row; justify-content: flex-start;}
  .amenitiesContainer .amenBox figure .img-fluid{margin-bottom: 0; margin-right: 15px; flex-basis: 30px; max-width: 30px;}
  .location-map{margin-top: 0; margin-bottom: 3rem;}
  .location-map img{/* transform: scale(1.3); */}
  .location-map .elegant-btn-design{bottom: 0;}
  .quote-mark i{font-size: 20vw;}
  .speaks-slide{padding: 0;}
  .speaks-text .speaker{width: 70px; margin-bottom: 20px;}
  .speaks-text h5{letter-spacing: normal; font-size: 14px;}
  .speaker-name{padding: 0 60px;}
  .speaks-controls{top: auto; bottom: 0; transform: none;}
  .inside-banner{margin-top: 6rem; padding-top: 2.5rem;}
  .page-title h1{font-size: 2.5rem; letter-spacing: normal;}
  .heading h4{font-size: 1.2rem;}
  .celebration-wrapper{margin-bottom: 3rem;}
  .gallery-ph2 .galBox{width: 70%;}
  .page-title h4, .heading h5{font-size: 1rem;}
  .c502-slider .num{left: auto; right: 20px;}
  .c502-slider .carousel-item img{height: 300px;}
  .galBox-ph1.col-sm-6{width: 100%; margin: 10px 0;}
  .location-map.location-inside img{transform: none;}
  .more-projectBox p{padding-top: 5px;}
  .padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
      .p-6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
     .readmore .h4 {
    font-size: 1rem;
    display: flex;
    gap: 5px;
}
.fpBox
{
  margin-top: 1rem;
}
.bannerConfig .inner {
        width: 50%;
    }
.fixed-form.fixed .innerform {
    padding: 0;
}
  .corp-video .elegant-btn-design.center {
        left: calc(50% - 90px);
        margin-top: 2rem;
    }
    .header .container-lg {
    justify-content: center;
}
.bannerConfig 
{
    max-width: 80%;
    left: 10%;
}
}

@media (max-width: 375px) {
  .p-6{padding-top: 3rem; padding-bottom: 3rem;}
  p{text-align: justify;}
  .modal-top-menu ul li a{font-size: 9px;}
  .landing-intro-content{bottom: 6.5vh; margin-bottom: 0;}
  .landing-intro-content h1{font-size: 28px; letter-spacing: 1px;}
  .landing-bg-strip{height: 9vh;}
  .landing-text-area h3{font-size: 15px; text-align: justify;}
  .absolute-text p{text-align: center;}
  .gallerySlider .row{margin-right: -8px; margin-left: -8px;}
  .gallerySlider .galleryImgBox{padding-right: 8px; padding-left: 8px;}
  .gallerySlider .galleryImgBox .caption{font-size: 8px; right: 17px; bottom: 5px;}
  .amenitiesSliderContainer .num .slide-index, .c502-slider .num .slide-index{font-size: 2rem; transform: translate(-10px, -10px);}
  .welcome-text h2{font-size: 20px;}
  .heading h2{font-size: 18px;}
  .amenities-slide-text section h2{font-size: 22px; margin-bottom: 14px;}
  .location-advantages ul li{width: 100%;}
  .location-advantages ul li:nth-child(1){padding-top: 0px;}
  .location-advantages ul li:nth-child(2){padding-top: 5px;}
  .location-advantages ul li:nth-last-child(2){padding-bottom: 5px;}
  .location-advantages ul li:nth-last-child(0){padding-bottom: 0px;}
  .elegant-btn-design{width: 70px; height: 70px;}
  .elegant-btn-design.sm-btn-design{width: 35px; height: 35px;}
  .elegant-btn-design.sm-btn-design a{font-size: 14px;}
  .speaks-text .speaker-name p, .footerBottom .rera p{text-align: center;}
  .heading h4{font-size: 18px;}
  .gallery-ph2 .galBox{width: 80%;}
  .c502-slider .carousel-item img{height: auto;}
  .sun-num{width: 50%;}
  .sun-num section p{text-align: center;}
  .location-map.location-inside ~ .location-advantages ul{height: auto;}
}

@media (max-width: 360px) {
  .menu-modal .bigMenu ul li a{font-size: 1.6rem;}
  .amenitiesSliderContainer .num, .c502-slider .num{top: 40px;}
  .more-projectBox{width: 100%;}
  .more-projectBox p{text-align: left;}
  .readmore a, .readmore button{min-width: 120px;}
}

@media (max-width: 320px) {
  .menu-modal .bigMenu{margin-top: 2rem;}
  .menu-modal .bigMenu ul li a{font-size: 1.5rem;}
  .landing-text-area h3{font-size: 14px; margin-bottom: 20px;}
  .absolute-text h2{font-size: 1.5rem;}
  .footerBox ul li a{padding: 10px;}
}

@media (max-height: 375px) {
  .logo{/* width: 90px; */}
  .header .navi, .header .topDetails{width: calc(50% - 50px);}
  .header.fixed .navi, .header.fixed .topDetails{width: calc(50% - 35px);}
  .menu-modal{height: 150%;}
  .footer-area{padding-top: 3rem; padding-bottom: 3rem;}
  .footSocial{margin: 2rem 0;}
}

@media (max-height: 320px) { 
} 

.dbbutton {
    width: 267px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFBEC;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 80px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    transition: all 300ms ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.dbbutton:hover {
    background: #b68f40;
    border-color: #ffe9b0;
}

/* Mobile styles: screen width ≤ 768px */
@media (max-width: 768px) {
    .dbbutton {
        width: 100%; /* full width of container */
        height: 50px;
        font-size: 14px;
        border-radius: 60px;
    }
}


