@import url('https://fonts.googleapis.com/css2?family=Marcellus&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&display=swap" rel="stylesheet');

:root {
    --primary-color: #5d4a1f;
    --secondary-color:#c9a758;
    --body-color: #424242;
    --body-light: #4242424d;
    --primary-light: #fff7e9;
    --secondary-light: #ffdedc;
    --golden-gradient: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);;
    --white: #fff;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;
    --serif: 'Cinzel', serif;
    --open-sans: "Open Sans", sans-serif;
    --marcellus: "Marcellus", serif;
}
body
{
    overflow-x: hidden;
    width: 100%;
    background-color: var(--primary-light);
}
/* ----------------------------------------------------
bg background
 ---------------------------------------------------- */
.bg-white {
    background-color: #fff;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

/* ----------------------------------------------------
text color
 ---------------------------------------------------- */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.text-secondary-light {
    color: var(--secondary-light) !important;
}
img{
    width: 100%;
}

.text-serif{
    font-family: var(--serif);
}
/* ----------------------------------------------------
social icons
---------------------------------------------------- */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-links a i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease-in-out;
    text-align: center;
}

.social-links a i.sm {
    width: 32px;
    height: 32px;
}

.social-links a .bi-facebook {
    background-color: var(--facebook);
}

.social-links a .bi-linkedin {
    background-color: var(--linkedin);
}

.social-links a .bi-twitter-x {
    background-color: var(--twitter);
}

.social-links a .bi-youtube {
    background-color: var(--youtube);
}

.social-links a .bi-whatsapp {
    background-color: var(--whatsapp);
}

.social-links a .bi-instagram {
    background-color: var(--instagram);
}

.social-links a:hover i {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.social-links a:hover .bi-facebook {
    color: var(--facebook);
}

.social-links a:hover .bi-linkedin {
    color: var(--linkedin);
}

.social-links a:hover .bi-twitter-x {
    color: var(--twitter);
}

.social-links a:hover .bi-youtube {
    color: var(--youtube);
}

.social-links a:hover .bi-whatsapp {
    color: var(--whatsapp);
}

.social-links a:hover .bi-instagram {
    color: var(--instagram);
}

/* social icons */

/* -----------------------------------------------------
back to top button
----------------------------------------------------- */
/* form */
.form-control {
    background: transparent;
    margin-bottom:10px;
    border-radius: 0;
    padding: 1rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.733);
}

.form-control:active {
    background: transparent;
}

/* enquire */
.enquire .titleBox {
    margin-bottom: 1rem;
}

.enquire .inner {
    background-color: #000000d7;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.enquire .button {
    border-radius: 0;
    padding: 1rem;
}

.form-group input::placeholder {
    color: var(--body-color);
    opacity: 1;
}

/* -----------------------------------------------------
swiper
----------------------------------------------------- */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* display: flex; */
    justify-content: center;
    /* align-items: center; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------
swiper-pagination
------------------------------------------ */
.swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.4);
}

/* ----------------------------------------------------
 swiper-button-next, 
 swiper-button-prev
 ---------------------------------------------------- */
.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--body-color);
    background-color: var(--primary-light);
}


.swiper-button-next::after,
.swiper-button-prev::after {
    background-color: var(--body-color);
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next::after:hover,
.swiper-button-prev::after:hover {
    color: var(--body-color);
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 1rem;
    color: #000000;
}


/* .swiper-button-next i,
.swiper-button-prev i {
    font-size: 18px;
} */

/* ----------------------------------
 swiperBtn.leftbtn
 ---------------------------------- */
.swiperBtn.leftbtn {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    margin-left: 2rem;
    justify-content: flex-start;
}

/* Buttons style */
.swiperBtn.leftbtn .swiper-button-next,
.swiperBtn.leftbtn .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}


/* circular */
.swiper-button-next.circular,
.swiper-button-prev.circular {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover.circular,
.swiper-button-prev:hover.circular {
    background-color: var(--secondary-color);
    color: var(--white);
}

.swiper-button-next.circular i,
.swiper-button-prev.circular i {
    color: var(--body-color);
}

.swiper-button-next:hover.circular i,
.swiper-button-prev:hover.circular i {
    color: var(--white);
}


/* .swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}*/





/* ----------------------------------------------------
Custom Scroll
---------------------------------------------------- */
.scroller {
    height: 300px;
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #adadad;
    border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #2957a4;
    border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */

/* -------------------------------------------------
 General Styling
 ------------------------------------------------- */
body {
  font-family: "Jost", sans-serif;
}

a {
    text-decoration: none;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.containerBox {
    width: 80%;
    margin: 0 auto;
}

/* --------------------------------------
 ul
 -------------------------------------- */
ul.list {
    padding-left: 0;
    line-height: 2;
    margin: 0;
}

ul.list>li:last-child {
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------
heading
--------------------------------------------------  */
.heading {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.heading h2 {
    font-weight: 400;
    color: var(--primary-color);
}

.heading h2 small {
    font-size: 50%;
}
.heading p,
.heading span {
    font-size: 1.1rem;
}

/* --------------------------------------------------
subHeading
--------------------------------------------------  */
.subHeading {
    position: relative;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subHeading::before {
    background-color: var(--secondary-color);
    position: absolute;
    content: '';
    width: 10%;
    height: 1px;
    bottom: 0;
}

.subHeading span {
    font-size: 1.7rem;
}

/* -------------------------------------------------
button
------------------------------------------------- */
.readmore {
    gap: 5px;
}

.readmore .button {
    background: var(--golden-gradient);
    color: #fff;
    border:none;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 0;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    gap: 5px;
}
.topCTC .readmore .button 
{
    background: #0000003d;
    color: #ffffff;
}
.readmore .button.solid,
.readmore .button:hover {
    background: var(--primary-color);
    color: #fff;
}
.readmore .button.solid:hover{
    background-color: var(--secondary-color);
    color: #000;
}
.readmore .button.shedule:hover{
    background-color: var(--secondary-color);
    color: #000;
}

.readmore.floor-plan-btn 
{    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.readmore.floor-plan-btn a
{    
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    color: #000;
}

.readmore .button img {
    filter: invert(1);
}

.readmore .button:hover img {
    filter: invert(0);
}

/* white */
.readmore .button.white {
    background-color: var(--white);
    color: #000;
}

.readmore .button.white:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.fp
{
    padding: 1rem;
    background: #fff;
    transition: all 300ms ease-in-out;
}

.fp:hover{
    box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}

.planBase {
  margin: 1rem 0 1.5rem;
  color: #000;
}

.planBase .priceBOxInner{
  display: flex;
  justify-content: space-between;
}

.fpDetails:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
  color: #000;
}

.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.fpWrapper .readmore .button{
  padding: 10px 14px;
}

.fpWrapper .readmore .downIcon{
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 300ms ease-in-out;
}

.fpWrapper .readmore .downIcon img{
  width: 100%;
}
/* --------------------------------------------------
modal
-------------------------------------------------- */
.modal-backdrop.show {
    opacity: 1;
    background: rgb(0 10 12 / 95%);
    backdrop-filter: blur(5px);
}

.form-container .titleBox {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container .titleBox h3 {
    margin-top: 0.5rem;
}

.modal-content {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
    border: none;
    border-radius: 0;
    padding: 1rem;
}

button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    opacity: 1;
    text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: #fff;
    opacity: 1;
    background-color: var(--secondary-color);
}

.modal-dialog {
    max-width: 600px;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
    background: none;
    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;
    outline: none;
    border: none;
    background-color: var(--secondary-color);
    opacity: 1;
}

.modal-header .close {
    color: var(--body-color);
}

.modal-body {
    padding: 1.5rem;
    border: 1px solid #ffffff26;
}

/* -------------------------------------------------
header
------------------------------------------------- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    border-bottom: 1px solid var(--white);
    padding: 10px 0;    
    background: linear-gradient(to bottom, #000000c2, #000000a6, #0000006b, transparent);
}

.header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 100px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 300ms ease-in-out;
}

.header .logo img {
    width: 100%;
}

/* nav */
.header .nav {
    gap: 1rem;
}

.header .nav>ul {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
}

.header .nav>ul>li>a {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 300ms ease-in-out;
    padding: 0.8rem;
    color: #ffffff;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 1px;
}

.header .nav>ul>li:hover>a {
    color: var(--secondary-color);
}
.header.fixed .nav>ul>li:hover>a {
    color: #000000;
}

.header .nav ul li:hover>a::before {
    width: 100%;
} 

.header .topCTC {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header .topCTC a i {
    display: flex;
    align-items: center;
    color: var(--body-color);
}

.header .topCTC a img {
    border-right: 1px solid #000000;
    width: 33px;
    margin-right: 3px;
    padding-right: 11px;
}

.header.fixed .menuBtn span::before {
    background: var(--body-color);
}
.header.fixed
{
    background: var(--golden-gradient);
}
/* menuBtn */
.menuBtn {
    width: 40px;
    height: 40px;
    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);
}

.menuBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-color);
    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 
---------------------------------------------------------- */
.menuContainer {
    position: fixed;
    inset: 0;
    padding-top: 75px;
    z-index: 996;
    background-color: rgb(0 123 255 / 13%);
    backdrop-filter: blur(5px);
    display: none;
}

.menuContainer .inner {
    padding: 5px 15px;
    visibility: hidden;
    background: #000;
    /* 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;
    position: absolute;
    width: 400px;
    height: 100%;
    right: -10%;
}

.header.fixed+.menuContainer {
    padding-top: calc(1rem + 80px);
}

.menuContainer.active .inner {
    visibility: visible;
    right: 0%;
}

.menuContainer a {
    color: #fff;
    transition: all 300ms ease-in-out;
}

.mainMenu ul li:last-child a {
    padding-bottom: 0;
}


.mainMenu li:not(:last-child) a {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a {
    padding: 10px 0;
    display: block;
    position: relative;
    text-transform: uppercase;
}

/* .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*/

/* ---------------------------------------------------
 enqueryForm
 ---------------------------------------------------  */
.enqueryForm {
    background-color: #fff;
    color: var(--body-color);
    text-align: center;
    transition: all 300ms ease-in-out;
    z-index: 99;
    padding: 1rem;
}

.form-close {
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: maroon;
    color: #fff;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.form-close:hover {
    background: var(--secondary-color);
}

.enqueryForm .form-tag {
    font-size: 14px;
}

.enqueryForm h6,
.enqueryForm .form-bhk {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body-color);
}

.enqueryForm .form-bhk {
    padding: 0 0 0.5rem 0;
    border-bottom: solid rgb(0 0 0 / 10%);
    border-width: 1px 0;
    font-family: var(--serif);
}

.enqueryForm .form-group {
    margin-bottom: 10px;
}

.enqueryForm .form-control,
.modal-body .form-control {
    background-color: transparent;
    color: var(--white);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0px;
    font-size: 14px;
    border-radius: 0;
}

.form-control::placeholder {
    color: var(--white);
}

.enqueryForm span {
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.enqueryForm .freePick {
    font-size: 11px;
}

/* ------------------------------------------------
form
------------------------------------------------ */

/* -----------------------------------------------------------
 banner
 ----------------------------------------------------------- */
.banner {
    /* margin-top: 75px; */
    height: 100vh;
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner picture img {
  -webkit-animation: 20s infinite alternate zoom;
  animation: 20s infinite alternate zoom;
}
@-webkit-keyframes zoom {
  50% {
    transform: scale(1.15, 1.15);
    transform-origin: center bottom;
  }
}
@keyframes zoom {
  50% {
    transform: scale(1.15, 1.15);
    transform-origin: center bottom;
  }
}
.cloud {
  right: 0;
  top: 0;
  height: 33%;
  background: url(../images/cloud.html) repeat-x;
  animation: 80s linear infinite animateclouds;
  pointer-events: none;
  opacity: 0.2;
  z-index: 2;
}
.contactFormimg 
{
    overflow: hidden;
}
.contactFormimg img{
  -webkit-animation: 30s infinite alternate zoom;
  animation: 30s infinite alternate zoom;
}
/* -----------------------------------------
heroConfigrationbox
  ----------------------------------------- */
.heroConfigrationbox {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #000000d3;
    position: absolute;
    top: 50%;
    left: 14%;
    transform: translateY(-50%);
    text-transform: uppercase;
    color: var(--white);
    padding: 2rem;
    max-width: 520px;
    z-index: 99;
}

.heroConfigrationbox .titleBox {
    position: relative;
    padding: 0 0 1.3rem 0;
}

.heroConfigrationbox .titleBox::before {
    border-bottom: 3px solid var(--secondary-color);
    position: absolute;
    width: 40%;
    content: '';
    left: 0;
    bottom: 0;
    z-index: 999;
}

.heroConfigrationbox .priceTitle {
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.heroConfigrationbox .confiBox {
    padding: 2rem 0 1rem 0;
}

.heroConfigrationbox .confiBox p {
    font-size: 1.2rem;
}

.heroConfigrationbox .confiBox span {
    font-weight: 600;
}


.heroConfigrationbox .button {
    padding: 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

/* ---------------------------------
 sticky form
 --------------------------------- */
.stickyForm {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background-color: #ad8e42;
    color: var(--white);
    text-align: center;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
    transition: all 300ms ease-in-out;
    z-index: 99;
    width: 100%;
}

.stickyForm .formText {
    margin-bottom: 1rem;
}

.stickyForm .formText .head {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stickyForm .form-group {
    margin-bottom: 0;
}
.font11
{    
    font-size: 11px;
    line-height: 1.1;
    margin-top: 8px;
    text-align: left;
}
.stickyForm .form-control,
.modal-body .form-control {
    border-bottom: 2px solid #eaeaea;
    background-color:var(--primary-light) !important;
    padding: 12px 10px;
    font-size: 14px;
    color: var(--body-color);
    border-radius: 0;
    margin: 0;
}

.stickyForm .readmore {
    display: flex;
}

.stickyForm .readmore .button:last-child {
    background: linear-gradient(195deg, #53d161, #23b73c);
    border: 1px solid var(--whatsapp);
    color: var(--white);
}

.stickyForm .readmore .button:last-child:hover {
    border: 1px solid var(--primary-color);

}

.stickyForm .readmore .button:last-child a {
    color: var(--white);
}

/*------------------------------------------------ 
overview
------------------------------------------------ */
.overview {
    position: relative;
    overflow: hidden;
}

.overview .overvieBtnBox {
    margin-top: 2rem;
}

.overview .overvieBtnBox .box {
    margin-top: 0.5rem;
    gap: 1rem;
    text-align: center;
}
.overview .overvieBtnBox .box p
{
    line-height: 1.2;
    font-size: 13px;
}

.overview .overvieBtnBox .box .img { 
    flex: 0 0 30px;
    width: 45px;
    margin: auto;
    margin-bottom: 12px;
}

.overview .overvieBtnBox .box .img img {
    width: 100%;
}

.overview .readmore {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}



/* -----------------------------------------------
stateinnerbox
----------------------------------------------- */
.stateinnerbox {
    margin-top: 2rem;
}

.stateinnerbox .statesbox {
    border-left: 1px solid var(--primary-color);
    padding-left: 0.8rem;
}

.stateinnerbox .statesbox p {
    font-weight: 600;
    color: var(--body-color);
    font-family: var(--serif);
    text-transform: uppercase;
}

.stateinnerbox .statesbox span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    color: var(--primary-color);
}

/* -------------------------------------------
 amenities
 ------------------------------------------- */
.amenities {
    overflow: hidden;
}
.amenities-list
{
    display: flex;
    flex-wrap: wrap;
}
.amenities-list li {
    padding: 4px;
    flex: 0 0 50%;
    list-style: none;
}
.amenities-list-item {
    display: flex;
    align-items: center;
}
.amenities-icon {
    width: 46px;        
    flex: 0 0 auto;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-right: 10px;
    margin-right: 10px;
}
.amenities h4 {
    color: var(--body-color);
    font-size: 2.1rem;
    font-family: var(--serif);
}

.amenities .amenitiesBox {
    height: auto;
}

.amenities .amenitiesBox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities .amenitiesBox p {
    text-transform: uppercase;
    text-align: center;
    margin-top: 1rem;
    font-size: .875rem;
    /* font-weight: 600; */
}

.amenities .leftbtn {
    margin-left: 0;
}

/* -------------------------------------------
Galllery
------------------------------------------ */
.gallSwiper {
    padding-right: 25%;
    position: relative;
}

.gallSwiper .gallBox {
    position: relative;
    overflow: hidden;
}

.gallSwiper .gallBox::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, #000000c5, transparent);
    z-index: 1;
}

.gallSwiper .gallBox::after {
    content: "";
    position: absolute;
    left: 0;
    height: 5px;
    bottom: 5px;
    width: 0;
    background: var(--white);
    z-index: 2;
}

.gallSwiper .swiper-slide-active.gallBox::after {
    animation: borderLeftRight 3s linear infinite;
}

@keyframes borderLeftRight {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


.gallSwiper .gallBox img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.gallSwiper .gallBox:hover img {
    transform: scale(1.2);
}

.gallSwiper .content {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    color: #fff;
    z-index: 2;
    transition: all 0.6s ease;
    max-width: 70%;
    text-align: start;
}

/* -------------------------------------------
 floorplans
 ------------------------------------------- */
 .gap-10
 {
    column-gap: 10px;

 }
.confi-block {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    border: 1px solid #e5d5b8;
    background: #fff7e9;
    overflow: hidden;
    position: relative;
}
.confi-block::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 95px;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 5px;
    background-image: url(../images/logo-elemen.png);
    opacity: 0.1;
}
.confi-bottom-part
{
    display: flex;
    justify-content: end;
}
.font-variant-nums {
    font-variant: lining-nums !important;
}
.is-size-7 {
    font-size: 16px !important;
}
.text-golden {
    color: #cead53 !important;
    border-bottom: 1px solid;
}
.confi-block::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-size: cover;
    top: 0;
    right: 0;
    background-image: url(../images/confi-top-element.svg);
}
/* --------------------------------------------------
hmVirtual
 -------------------------------------------------- */
.hmVirtual {
    overflow: hidden;
}

.hmVirtual .siteBox {
    position: relative;
}

.hmVirtual .siteBox img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.hmVirtual .siteBox .readmore {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: center;
}

.hmVirtual .subHeading::before {
    left: 50%;
    transform: translate(-50%);
}

/* --------------------------------------------------
location
 -------------------------------------------------- */
.location {
    overflow: hidden;
}

.location .map img {
    width: 100%;
    height: 100%;
    display: block;
    /* border: 1px solid #ed382f38; */
    border: 1px solid var(--body-light);
}

/* .location .map .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
} */

.location .locationContainer {
    margin-top: 1rem;
}

.location .iconBox {
    /* border: 1px solid #ed382f38; */
    border: 1px solid var(--body-light);
    background-color: var(--white);
    transition: all 300ms ease-in-out;
    text-align: center;
    width: 100%;
    height: 100%;
}

.location .iconBox .in {
    padding: 2rem 0;
    height: 100%;
    width: 100%;
}

.location .iconBox .img {
    width: 24px;
    margin: 0 auto;
}

.location .iconBox .img img {
    width: 100%;
}

.location .iconBox h6 {
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ------------------------------------------------
 footer
 ------------------------------------------------ */
/* .footer {
    padding: 2rem 0;
}

.footer .reralogo {
    max-width: 200px;
}

.footer .reralogo img {
    width: 100%;
    height: 100%;
}

.footer .reraImg {
    background-color: var(--white);
    max-width: 400px;
    padding: 1rem;
    margin-top: 1rem;
}

.footer .reraImg img {
    width: 100%;
    height: 100%;
}

.footer .reraDetailsBox {
    border-left: 1px solid var(--body-color);
    padding-left: 3rem;
} */


/* ---------------------------------------------------
privacyBox
--------------------------------------------------- */
.privacyBox {
    padding-top: 1rem;
    background-color: var(--primary-color);
    border-top: 1px solid rgb(255 255 255 / 15%);
    padding-bottom: 6rem;
}

.privacyBox .inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.privacyBox .inner p,
.privacyBox .inner p a {
    color: var(--white);
}

/* ---------------------------------------------------
footer-enquiryBtn
--------------------------------------------------- */
.footer-enquiryBtn {
    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: #ffffff;
    text-align: center;
    display: block;
    width: calc(100% / 2);
    padding: 8px 5px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
    background: linear-gradient(45deg, #0db634, #015c16);
    border: 0;
    color: #fff;
}
.bg-image {
  background: center / cover no-repeat fixed;
    z-index: 1;
}

.bg-image::before {
    content: "";
    position: absolute;
    /* inset: 0; */
    background: linear-gradient(to left, black, transparent);
    z-index: -1;
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
}

.bg-image.overlay-white::before {
  background: linear-gradient(to left,
      rgb(255 255 255 / 40%),
      rgb(255 255 255 / 95%));
}
.tagline {
    max-width: 800px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
}
.hm-contactContainer{
	background: url(../images/floor-plan-bg.png) right bottom;
}
.contactForm .row{
	margin-left:-10px;
	margin-right:-10px;
}
.contactForm .row div[class^=col]{
	padding-left:10px;
	padding-right:10px;
}
.form-group{
	margin-bottom:20px;
}

label{
	margin-bottom: 0;
	font-weight: 600;
}
.form-control{
	font-size:14px;
	padding:12px 16px;
	height:auto;
	background-color:#fff8f0;
	border:none;
	border-bottom: 2px solid var(--primary-color);
	color:#181818;
	border-radius:0;
	transition:all 300ms ease;
}
.form-control:focus{
	background-color:#fcefdf;
	border-bottom-color: var(--primary-color);
	box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}
.form-control::placeholder{
	color:rgba(0,0,0,1);
}
.formFooter.readmore button{
	text-transform:uppercase;
	border-radius: 0;
	color: #fff;
	background: var(--body-color);
	letter-spacing:1px;
	width: 100%;
}
.formFooter.readmore button:hover{
	background: var(--primary-color);
	color: var(--body-color);
}
.amenitiesitem .inner {
  height: 100%;
  aspect-ratio: 3/2;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(255 255 255 / 15%);
  font-family: var(--serif);
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.amenitiesitem .inner .icon {
  width: 50px;
  filter: contrast(1.2);
}

.tagline {
  max-width: 800px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: var(--secondary-color);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body .in h6
{    
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;

}
.accordion-body .in:nth-last-child(1) h6
{
    border: none;
}
/* -------------------------------------------
luxurious
 ------------------------------------------- */
.luxurious {
    position: relative;
}

/* overlayImg */
.luxurious .overlayImg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* overlayContent */
.luxurious .overlayContent {
    text-align: center;
    /* color: #8E5D25; */
    margin: auto;
}

.luxurious .overlayContent p {
    /* font-size: 1.4rem; */
}

/* overContent */
.luxurious .luxuribox {
    /* margin-top:2rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.luxurious .luxuribox:hover .circleImg {
}

/* Circle + hover zoom */
.luxurious .circleImg {
    position: relative;
    /* width: 250px; */
    /* height: 250px; */
    margin: 0 auto;
    /* border-radius: 50%; */
    transition: transform 0.25s ease-in-out;
    overflow: hidden;
}

.luxurious .circleImg img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    transition: transform 0.25s ease-in-out;
}
.luxurious .circleImg:hover img {
    transition: transform 0.25s ease-in-out;
    transform: scale(1.20);
}

/* Gradient border */
.luxurious .circleImg::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    z-index: -1;
}

/* heading */
.luxurious .circleTitle {
    margin-top: 16px;
    padding: 15px 0 0 0;
    opacity:1;
    /* margin-top: 2rem; */
}

.luxurious .luxuribox:hover .circleTitle {
    opacity: 1;
    visibility: visible;
}
 .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }
    .Exudingluxury
    {
        width: 400px;
        margin-right:2rem;
        margin-bottom: 4rem;
        text-transform: none;
        text-align: left;
        max-width: 100%;
    }
    .exuding-luxury-elegance
    {
        text-align: left;
    }
    .overSwiper
    {
        position: relative;
    }
    .overSwiper h4
    { 
    /* position: absolute; */
    top: 0;
    color: #000000;
    font-size: 15px;
    width: 100%;
    margin-top: 1rem;
    /* height: 200px; */
    px; */
    padding-top: 2rem;
    font-weight: 400;
    width: 100%;
    }
    .overSwiper span
    {        
        letter-spacing:1px;
    }
    .amenities-list2 li
    {
        list-style-type: initial;
    }