@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
    --primary-color: #6f574d;
    /* --secondary-color: #eab308; */
    --secondary-color: #f8e1b7;
    /* --tertiary-color: #ec8b00; */
    --body-color: #111827;
    --primary-light: #fcf3f5;
    --secondary-light: #fff9e6;
    --white: #fff;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;

    --montserrat: "Montserrat", sans-serif;
    --marcellus: "Marcellus", serif;
    --border: 1px solid #dbdbdb;
}

/* ----------------------------------------------------
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;
}

/* ----------------------------------------------------
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
----------------------------------------------------- */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 17px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 999;
    color: var(--primary-color);
}

#backToTopBtn:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

/* -----------------------------------------------
tab
 ----------------------------------------------- */
/* Style the tab */
.tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab .inner {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.7rem 4rem;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 10px;
    font-family: var(--marcellus);
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.toggleWrapper {
    margin-top: 4rem;
}

/* Style the tab content */
.toggleContainer {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

/* -----------------------------------------------
 accordion
 ----------------------------------------------- */
.accordion-button {
    font-size: 1.125rem;
    font-family: var(--marcellus);
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
}

.accordion-body ul li {
    margin-bottom: 5px;
    color: var(--primary-color);
}



/* -----------------------------------------------
 form
 ----------------------------------------------- */
.stickyForm .form-control,
.modal-body .form-control {
    border-bottom: 2px solid #eaeaea;
    background-color: #f1f1f1;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--body-color);
    border-radius: 0;
    margin-bottom: 0.8rem;
}

.form-control::placeholder {
    color: var(--white);
}

.form-group input::placeholder {
    color: var(--body-color);
    opacity: 1;
}


/* ---------------------------------
 sticky form
 --------------------------------- */
.stickyForm {
    border-top: 4px solid var(--secondary-color);
    background-color: var(--primary-color);
    color: var(--body-color);
    text-align: center;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
    transition: all 300ms ease-in-out;
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    max-width: 330px;
    width: 100%;
    right: 2rem;
}

.stickyForm .inner {
    position: relative;
    padding: 1rem;
}

/* .stickyForm .inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/brand-emblem.svg') center / contain no-repeat;
    opacity: .1;
    z-index: -1;
} */

.stickyForm .inner .logo img {
    width: 100%;
}

.stickyForm .stickyHead {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-family: var(--marcellus);
}

.stickyForm .readmore {
    margin-top: 1rem;
}


.stickyForm .form-check .form-check-label {
    margin: .125rem 0;
    font-size: 0.65rem;
    color: var(--white);
    text-align: start;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}



/* sticky form */

/* ---------------------------------------------------
 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;

}

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


.enqueryForm span {
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.enqueryForm .freePick {
    font-size: 11px;
}

/* ------------------------------------------------
form
------------------------------------------------ */
.input {
    padding: 0 1rem;
}

/* --------------------------------------------------
modal
-------------------------------------------------- */
/* --------------------------------------------------
modal
-------------------------------------------------- */
.modal-backdrop.show {
    opacity: 1;
    background: rgb(0 10 12 / 95%);
    backdrop-filter: blur(5px);
}

.modal-content button.close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    z-index: 1;
    text-shadow: none;
    color: var(--body-color);
    outline: none;
    border: none;
    background-color: var(--secondary-color);
    /* opacity: 1; */
    font-size: 2rem;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: var(--secondary-color);
    /* opacity: 1; */
    background-color: var(--body-color);
}

.modal-dialog {
    max-width: 450px;
}

.modal-content {
    background: #091314;
    box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
    color: var(--body-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    padding-top: 3rem;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
}

.modal-content h4 {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
}

.modal-content h6 {
    color: var(--secondary-color);
}

.modal-content .callBox {
    text-align: center;
    margin-top: 1rem;
}

.modal-content .callBox a {
    color: var(--secondary-color);
}

.modal-content .modal-body .form-control {
    border-bottom: 2px solid var(--secondary-color);
    background-color: #3d3d3d;
    color: var(--secondary-color);
    padding: 0.7rem 0.5rem;
}

.modal-content .modal-body .form-control::placeholder {
    color: var(--secondary-color);
}

.modal-header {
    background: none;
    border: none;
}

.form-container {
    margin-top: 1rem;
}

/* .modal-logo .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.modal-logo .logo span {
    font-size: 2.3rem;
    font-family: 600;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.modal-body .readmore {
    margin-top: 1rem;
}

/* ---------------------------------------------------
footerEnquiryBtn
--------------------------------------------------- */
.footerEnquiryBtn {
    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;
}

.footerEnquiryBtn a {
    color: var(--white) !important;
    text-align: center;
    display: block;
    width:100%;
    padding: 8px 5px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
    text-transform: uppercase;
}

.footerEnquiryBtn a.whatsCall {
    background: linear-gradient(45deg, #0db634, #015c16);
    border: 0;
    color: #fff;
}

/* -----------------------------------------------------
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: 20px;
    height: 7px;
    background: #ccc;
    opacity: 1;
    border-radius: 5px;
    margin: 0 5px;
    transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.4);
}

/* swiper-button-next, swiper-button-prev */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    /* transform: scale(1.1); */
    border: 1px solid #e6e6e63a;
    color: var(--white);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

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

/* ----------------------------------------------------
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;
}

.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */

/* -------------------------------------------------
sideLinks
------------------------------------------------- */
.sideLinks {
    position: fixed;
    height: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    display: flex;
    gap: 5px;
    z-index: 99;
}

.sideLinks .iconBox {
    width: 45px;
    height: 45px;
    border-radius: 5px 0 0 5px;
    /* background: rgba(0, 0, 0, 0.6); */
    /* background-color: #44bd32; */
    /* background-image: radial-gradient(hsl(112, 58%, 40%), hsl(112, 58%, 47%)); */
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}


.sideLinks i {
    color: white;
    font-size: 1.4rem;
}


/* -------------------------------------------------
button
------------------------------------------------- */
.readmore {
    gap: 5px;
}

.readmore .button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    padding: 9px 13px;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 20px;
    transition: all ease-in-out 0.3s;
    gap: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.readmore .button:hover {
    color: var(--body-color);
    border: 1px solid #a8a8a8;
    background-color: var(--white);
}

/* secondary */
.readmore .button.secondary {
    background-color: var(--secondary-color);
    color: var(--body-color);
    border: 1px solid var(--primary-color);
}

.readmore .button.secondary:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid #ffffff41;
}

/* white */
.readmore .button.white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.readmore .button.white:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid #ffffff41;
}

/* -------------------------------------------------
 General Styling
 ------------------------------------------------- */
body {
    font-family: var(--montserrat);
}

a {
    text-decoration: none;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

img {
    width: 100%;
    object-fit: cover;
}

.container-lg {
    max-width: 84%;
    margin: 0 auto;
}

/* --------------------------------------------------
ul 
-------------------------------------------------- */
.list {
    padding-left: 20px;
    margin: 0;
}

.list li {
    margin-left: -20px;
    line-height: 2;
    list-style: none;
}

/* --------------------------------------------------
heading
--------------------------------------------------  */
.heading {
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--marcellus);
}

/* -------------------------------------------------
header
------------------------------------------------- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    padding: 10px 0;
    background-color: transparent;
}

.header .inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    max-width: 120px;
    z-index: 2;
    transition: all 300ms ease-in-out;
}

.header .logo img {
    width: 100%;
}

/* .header .logo span {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-color);
} */

.header .nav>ul {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
}

.header .nav>ul>li>a {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    padding: 0.6rem;
    color: var(--body-color);
    font-size: 0.9rem;
    transition: all 300ms ease-in-out;
}

.header .nav>ul>li:hover>a {
    color: var(--primary-color);
}

.header .headerIcons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header .topCTC {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header .topCTC a {
    color: var(--primary-color);
    background-color: var(--primary-light);
    padding: 8px 12px;
    display: flex;
    gap: 0.2rem;
    font-size: 0.9rem;
    border-radius: 30px;
    border: 1px solid #d1d1d13d;
    position: relative;
    letter-spacing: 2px;
    z-index: 1;
    font-weight: 600;
}

.header .topCTC a:nth-last-child(1) {
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    text-transform: uppercase;
    background: #fff;
}

.header.fixed .menuBtn span::before {
    background: var(--body-color);
}

/* fixed */
.header {
    background-color: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header .logo span,
.header nav ul li a,
.header .menuBtn span::before {
    color: var(--white) !important;
}

.header nav ul li:hover a {
    color: var(--secondary-color) !important;
}

/* menuBtn */
.menuBtn {
    width: 30px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.menuBtn div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--body-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* ---- When Active / Cross ---- */
.menuBtn.closeMenuBtn span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* scroll  */
.header .menuBtn span {
    background: #fff;
}

/* ----------------------------------------------------------
menuContainer 
---------------------------------------------------------- */
.menuContainer {
    position: fixed;
    inset: 0;
    padding-top: 67px;
    z-index: 996;
    /* background-color: rgba(252, 252, 252, 0.13); */
    /* backdrop-filter: blur(5px); */
    display: none;
}

.menuContainer .inner {
    width: 100%;
    visibility: hidden;
    background: var(--primary-color);
    height: 100%;
    transition: all 300ms ease-in-out;
    justify-content: center;
    padding-top: 3rem;
    padding-left: 3rem;
}

/* .header.fixed+.menuContainer {
    padding-top: calc(1rem + 55px);
} */

.menuContainer.active .inner {
    visibility: visible;
}

.menuContainer a {
    color: var(--white);
    transition: all 300ms ease-in-out;
}

.mainMenu ul li:last-child a {
    padding-bottom: 0;
}

.mainMenu a {
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 200;
    text-align: center;
    line-height: 3.1;
    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*/

/* -----------------------------------------------------------
 banner
 ----------------------------------------------------------- */
.banner {
    height: calc(100vh - 67px);
    margin-top: 67px;
    position: relative;
    background: var(--primary-light);
    z-index: 1;
    overflow: hidden;
}

/* Overlay */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.616) 25%, #00000000 100%);
    z-index: 2;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.zoomBanner {
    animation: zoomInOut 12s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1);
    }
}

/* reraImg */
.banner .reraImg {
    position: absolute;
    top: 2rem;
    right: 2%;
    max-width: 350px;
    background-color: var(--white);
    padding: 0.5rem;
}

.banner .reraImg img {
    width: 100%;
}

/* reraImg */

.banner .contentBox {
    position: absolute;
    color: var(--white);
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: var(--marcellus);
}

.banner .contentBox h1 {
    font-size: 40px;
}

.banner .contentBox .bann-loc {
    color: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    margin: 20px 0;
    text-transform: uppercase;
}

.banner .contentBox .bann-type {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 13px 31px;
    width: fit-content;
    font-family: var(--marcellus);
    margin-top:20px;
}

.banner .bann-type::before {
    content: ' ';
    position: absolute;
    top: 2px;
    left: calc(0px / 2);
    width: 87px;
    height: calc(100% - 2 * 2px);
    border: 4px solid var(--secondary-color);
    border-right-color: transparent;
}

.banner .bann-type::after {
    content: ' ';
    position: absolute;
    top: 2px;
    right: calc(0px / 2);
    width: 87px;
    height: calc(100% - 2 * 2px);
    border: 4px solid var(--secondary-color);
    border-left-color: transparent;
}

/*  */

/* bannerConfiguration */
.bannerConfiguration {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    z-index: 999;
}

.bannerConfiguration .innerBox {
    padding: 0.5rem;
    border-radius: 4px;
    max-width: 1000px;
    margin: 0 auto;
}

.bannerConfiguration .innerBox .confiBox {
    /* background: rgba(0, 0, 0, 0.69); */
    /* backdrop-filter: blur(3px); */
    background-color: var(--primary-color);
    align-items: center;
    padding: 6px 17px;
    border-radius: 8px;
    text-align: start;
    gap: 1rem;
    display: flex;
    justify-content: flex-start;
}

.bannerConfiguration .innerBox .icon {
    width: 40px;
    padding: 0.4rem;
    border: 1px solid #e9e9e942;
    border-radius: 0.5rem;
}

.bannerConfiguration .innerBox .icon img {
    filter: invert(1);

}

.bannerConfiguration span {
    font-size: 0.7rem;
    color: var(--white);
    text-transform: uppercase;
}

.bannerConfiguration p {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.8rem;
}

/* ------------------------------------------------ 
overview
------------------------------------------------ */
.overview {
    position: relative;
    z-index: 1;
}

.overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/bg.png) no-repeat center;
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
}

.overview .overImg img {
    width: 100%;
}

/* overContent */
.overview .overContent {
    margin-left: 3rem;
}


.overContent .list {
    margin-top: 1rem;
}


.overContent .list li {
    list-style: circle;
    margin-left: 0px;
}



/* overSpecification */
.overSpecification {
    margin-top: 1rem;
    padding: 2rem;
}

.overSpecification .box {
    padding: 2rem;
    text-align: center;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.overSpecification .box:not(:last-child) {
    border-right: 1px solid var(--primary-color);
}

.overSpecification .box span {
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--marcellus);
    text-transform: uppercase;
}

.overSpecification .box p {
    margin-top: 0.4rem;
    font-size: 0.8rem;
}

/* ------------------------------------------------
amenities
------------------------------------------------ */
.amenitiesitem {
    text-align: center;
    background: #b9a26f;
    position: relative;
    z-index: 1;
}

.amenitiesitem img {
    width: 100%;
    margin: 0px auto;
}

/* .amenities .row > div:last-child .amenitiesitem {
    color: #fff;
    height: 100%;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    text-align: center;
}

.amenities .row > div:last-child .amenitiesitem p{
    background: none;
    position: static;
    font-size: 1.4rem
} */


.amenitiesitem p {
    padding-top: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    padding: 6px 2px;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    z-index: 999;
    text-align: center;
    width: 100%;
    background: linear-gradient(0deg, #160d05, transparent);
    font-weight: 500;
}

/* ------------------------------------------------
hmHospitality
------------------------------------------------ */
.hmHospitality .contentbox {
    display: flex;
    align-content: center;
    justify-content: center;
}

.hmHospitality .contentbox .inner {
    padding-left: 1rem;
}

.hmHospitality .contentbox:last-child .inner {
    padding-left: 0;
    margin-top: 2rem;
}


.hmHospitality img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmHospitality .list li {
    list-style: circle;
    margin-left: 0px;
}


/* ------------------------------------------------
galllery
------------------------------------------------ */
/* .gallery .gallSlider {
    padding: 0 3rem;
} */

.gallSlider .swiper-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallSlider .swiper-control *[class^="swiper-"] {
    position: static;
    margin: 0;
}

.gallery .imgBox img {
    width: 100%;
}

.gallery .image-slide-inner {
    position: relative;
}

.gallery .badge {
    background-color: var(--white);
    color: var(--body-color);
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 0.7rem;
}

/* ------------------------------------------------
location
------------------------------------------------ */
.location {
    background-color: #fcf1f5;
}

.location .mapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location .connectivityBox {
    padding: 2rem;
    height: 100%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.116);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.location .connectivityBox .list li {
    padding: 0.5rem 0;
}



/* ------------------------------------------------
wellcom
------------------------------------------------ */
.wellcome {
    background: url(../images/banner/banner1.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height:70vh;
}

.wellcome::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000063;
    z-index: -1;
}

.wellcome .titleBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center
}

.wellcome .titleBox .img {
    max-width: 500px;
}

.wellcome .titleBox img {
    width: 100%;
}

.wellcome .wellcomeContent h2 {
    font-size: 2.6rem;
    font-family: var(--marcellus);
}

.wellcome .wellcomeContent .list{
    margin-top: 2rem;
}
    
.wellcome .wellcomeContent .list li{
    list-style: circle;
    margin-left: 0px;
    color: var(--white);
}

/* ------------------------------------------------
floorplans
------------------------------------------------ */

.floorplans .floorBox {
    border: 1px solid rgba(0, 0, 0, 0.219);
    text-align: center;
    margin: 0;
    padding: 0;
}

.floorplans .floorBox .typeBox {
    padding: 0.5rem 0;
}


.floorplans .img {
    position: relative;
    overflow: hidden;
}

.floorplans .img img {
    width: 100%;
}

.floorplans .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

.floorplans .img:hover .overlay {
    opacity: 1;
}

.floorplans .viewBtn {
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
    background: transparent;
    border: 1px solid #ffffff3f;
}

.floorplans .viewBtn:hover {
    background: #000;
}



/* ------------------------------------------------
group-section
------------------------------------------------ */
/* Gaurs Group */
.group-section .gaurs-logo {
    width: 140px;
    margin: 0 auto 1rem;
}

.group-section .statsContainer>.inner {
    border: solid rgb(0 0 0 / 20%);
    border-width: 1px 0;
    padding: 2rem 0;
    margin-top: 3rem;
}

.group-section .statsBox .inner {
    text-align: center;
}

.group-section .statsBox h2 {
    font-family: var(--marcellus);
    font-size: 2rem;
    color: var(--primary-color);
}

.group-section .statsBox p {
    font-size: 13px;
    text-transform: uppercase;
}






/* ------------------------------------------------
 footer
 ------------------------------------------------ */
.footer .copyrights {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer .copyrights p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 12px;
    color: var(--white);
}

/* .footer .copyrights p img {
    width: 13px;
    margin-left: 5px;
} */
/*Footer*/



.projects_main {
  background: #f9f4ed;
}

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

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

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

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

.projects_box .projects_img {
  position: relative;
}

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

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

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

  color: #000000;
  padding: 6px;
}

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

.btan a {
  color: #000000;
    display: block;
    text-decoration: none;
  background: linear-gradient(90deg, rgb(209, 159, 109) 0%, rgb(209, 159, 109) 35%, rgb(255, 255, 255) 100%);
  padding: 10px;
    border: 1px solid #ccc;
    min-width: 47%;
}
.projects_text
{
    position: relative;
}
.projects_box .projects_highlight_main p {
  font-size: 13px;
  color: #000000;
  margin: 0;
}
.projects_box .projects_highlight_main h5
{
	margin-bottom: 0;
}

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

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

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

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

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

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

.projects_box .projects_price a {
  font-size: 15px;
  text-decoration: underline;
}
.rerabox
{
    position: absolute;
    z-index: 99;
    height: auto;
    right: 0;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 50%;
    top: 0;
}

.rerabox p
{
     line-height: 1.1;
     margin:0;
     color: #000;
     font-size: 10px;
}
.rerabox p a
{
    margin-top: 5px;
    color: #000 !important;
    font-size: 10px;
    display: block;
}
.rerabox-qr
{
  width: 43px;
} 
.rerabox-box
{
    max-width: 220px;
}
.architect-impression
{
    position: absolute;
    bottom: 2px;
    right: 5px;
    font-size: 10px;
    z-index: 9;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 1px BLACK;
    margin: 0;
}