
.form-check-input:focus,.form-control:focus,.form-select:focus,.select-selected.select-arrow-active {
    box-shadow: 0 0 0 .25rem rgba(153,63,127,.2);
    border-color: var(--secondColor)
}

:root {
    --mainColor: #B29D72;
    --secondColor: #b6822f;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222222;
    font-size: 16px;
    font-weight: 300;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.popular-topics li a:hover,.site-footer ul li a:hover,a,a:hover {
    color: var(--mainColor)
}

a,a:hover {
    text-decoration: none;
    transition: 0.3s;
}

.page-link:hover,a:hover {
    color: var(--secondColor)
}

img {
    max-width: 100%
}

::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(0,0,0,.75) -webkit-border-radius:100px;
    scrollbar-width: thin;
    -ms-overflow-style: none
}

::-webkit-scrollbar:hover {
    background-color: rgba(0,0,0,.09);
    scrollbar-width: thin
}

::-webkit-scrollbar-thumb:vertical {
    background: rgba(0,0,0,.5);
    -webkit-border-radius: 100px;
    scrollbar-width: thin
}

::-webkit-scrollbar-thumb:vertical:active {
    background: rgba(0,0,0,.61);
    -webkit-border-radius: 100px;
    scrollbar-width: thin
}

.form-control:focus,.form-select:focus,.select-selected.select-arrow-active {
    color: #000;
    background-color: #fff;
    outline: 0
}

.btn{
    border-radius: 50px;
    /* text-transform: uppercase; */
    padding: 7px 25px;
    display: inline-flex;
    align-items: center;
}
.btn i {
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
}

.btn-secondary,.form-check-input:checked {
    background-color: #2E182FE3;
    border-color: var(--secondColor);
    color: #fff;
}

.btn-primary {
    background-color: var(--mainColor);
    border-color: var(--mainColor)
}

.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
    background-color: var(--secondColor)!important;
    border-color: var(--secondColor)!important;
    color: #fff !important;
    
}

.btn-primary:active,.btn-primary:focus,.btn-secondary:hover {
    background-color: var(--mainColor)!important;
    border-color: var(--mainColor)!important;
    color: #fff !important;
    
}

/*===Home banner css===*/

.home-banner {
    position: relative;
    /* height: 100vh; */
}

.home-banner .carousel {
    /* height: 100%; */
}

.home-banner .carousel-inner {
    /* height: 100%; */
}

.home-banner .carousel-item {
    /* height: 100%; */
}

.home-banner .carousel-item img,
.home-banner .carousel-item video {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    /* animation: zoom-out 7s linear infinite; */
    /* transform: scale(1.3); */
}

.banner-overlay {
    position: absolute;
    width: 100%;
    background: rgb(0 0 0 / 38%);
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-shadow: 5px 0 5px rgb(0 0 0 / 32%);
    text-align: center;
}

@keyframes zoom-out {
100%{transform:unset}
}

.uptitle {
    font-size: .875rem;
    letter-spacing: 1.4px;
    line-height: normal;
    text-transform: uppercase;
    /* text-align: center; */
}
.banner-overlay .uptitle {
    color: #fff;
}

.error {font-size: 13px; color: #e40f0f;background: #ffe0da;padding: 5px;border: 1px solid #e40f0f;margin-top: 5px;display: flex;align-items: center;border-radius: 6px;}
.error img {
margin-right: 10px;
width: 17px;
height: 17px;
object-fit: contain;
}

.banner-overlay h1{
    
font-weight: 500;
    
/* text-transform: uppercase; */
    
margin-bottom: 20px;
    
letter-spacing: 1.4px;
    
font-size: 60px;
    
color: #fff;
    
text-shadow: 5px 0 5px rgb(0 0 0 / 32%);
}

.banner-overlay p {
    color: #fff;
}

.banner-overlay p.price {
    border-left: 4px solid var(--mainColor);
    display: inline-flex;
    padding: 10px 35px;
    font-size: 25px;
    background: #000c;
    /* border-radius: 50px; */
    border-right: 4px solid var(--mainColor);
    position: relative;
}
.banner-overlay .price .left:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: -7px;
    top: -7px;
    background: var(--secondColor);
    border-radius: 100%;
}

.banner-overlay .price .left:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: -7px;
    bottom: -7px;
    background: var(--secondColor);
    border-radius: 100%;
}

.banner-overlay .price .right:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: -7px;
    top: -7px;
    background: var(--secondColor);
    border-radius: 100%;
}

.banner-overlay .price .right:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: -7px;
    bottom: -7px;
    background: var(--secondColor);
    border-radius: 100%;
}

.sec-padding{
    padding: 80px 0;
}

.sec-heading,.sec-heading2 h1,.sec-heading2 h2,.sec-heading2 h3 {
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 50px;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--mainColor);
    stroke: var(--mainColor);
}
.content-white ul {
    list-style: circle;
}

.content-white ul li {
    color: #E5E5DF;
    font-weight: 400;
    margin-bottom: 15px;
}



.bg-img-fixed {
    background-attachment: fixed;
    background-position: 100% 100%;
    position: relative;
    background-size: cover;
    
}

.img-bg-overlay{
   position: absolute;
   width: 100%;
   background: rgb(0 0 0 / 58%);
   height: 100%;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   display: flex;
   align-items: center;
   text-shadow: 5px 0 5px rgb(0 0 0 / 32%);
}

.bg-img-fixed .uptitle,
.bg-img-fixed .sec-heading,
.bg-img-cruve .uptitle,
.bg-img-cruve .sec-heading{
        /* color: #fff; */
}
.bg-img-fixed .container{
    position: relative;
    z-index: 9;
}

.highlights-content{
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.highlights-content li {
    position: relative;
    padding-left: 32px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    flex: 100%;
    width: 100%;
}



.highlights-content li:before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    background: var(--mainColor);
    transform: rotate(45deg);
}
.highlights-content li:after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    background: var(--mainColor);
    transform: rotate(-4deg);
}

.gallery-img {
    height: 300px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    margin-bottom: 25px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gallery-img:hover img{
    transform: scale(1.1)
}

.gallery-img .overlay-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(00,00,00,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.gallery-img:hover .overlay-content{
    opacity: 1;
    visibility: visible;
}

.round-arrow.owl-carousel .owl-nav button.owl-next,.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    display: block!important;
    background: #fff;
    /* box-shadow: 0 0 6px #8d8d8d; */
    margin-top: -22px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: 1%;
    border: 0 solid #010101;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: 1%;
    border: 0 solid #010101;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next i,.round-arrow.owl-carousel .owl-nav button.owl-prev i {
    font-size: 24px;
    padding: 0!important;
    color: var(--mainColor);
    position: relative;
    top: 1px
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none!important
}

.amenities-box {
    /* background: #f7f7f7; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* border-radius: 10px; */
    overflow: hidden;
    flex-wrap: wrap;
    /* padding: 20px 10px; */
    position: relative;
}

.amenities-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 100%; */
    transition: transform .5s;
}

.amenities-box .icon {
    width: 100%;
    height: 210px;
    display: block;
    /* border-radius: 100%; */
    overflow: hidden;
    margin: 0;
    /* border: 2px solid #fff; */
    margin: 0 auto;
    /* background: #fff; */
    /* padding: 5px; */
}

.amenities-box:hover img {transform: scale(1.1);}



ul.amenities-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

ul.amenities-list li {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0;
    padding: 0 10px
}

.amenities-box .txt {
    color: #fff;
    /* text-align: center; */
    text-transform: capitalize;
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    background: #00000054;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 20px;
}

.carousel-indicators [data-bs-target] {
    height: 15px;
    border-radius: 50%;
    width: 15px;
}
.floor-plan {
    border: 1px solid #eaeaea;
    /* height: 235px; */
    position: relative;
    /* overflow: hidden; */
    margin-bottom: 15px;
}

.floor-plan img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.floor-plan .overlay-content {
    background: #f7f7f7;
    text-align: center;
    transition: .5s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    cursor: pointer;
    align-items: center;
    padding: 15px;
}

.floor-plan:hover .overlay-content{
       top: 0;
}

.site-wrapper{
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.site-wrapper .container {
    /* max-width: 100%; */
    /* padding: 0 50px; */
}

.gray-bg {
    /* background: #E5E5DF; */
}

.price-boxs {
    background: #00000054;
    padding: 25px;
    margin: 15px 0;
    text-align: center;
    border-radius: 0;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 24%);
    position: relative;
    overflow: hidden;
    /* border: 1px solid #fff; */
}

.price-boxs .price {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.price-boxs p {
    padding: 10px 30px;
    background: #000;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    border-radius: 15px;
}

.price-boxs .btn {
    margin-top: 10px !important;
}

ul.listing {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}
ul.listing li {
    margin: 0 0 8px;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    width: 100%;
}
ul.listing li:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 7px;
    background: #062842;
    /* border-radius: 50px; */
}
ul.listing li:after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 7px;
    background: #062842;
    transform: rotate(45deg);
}


.bottom-contact {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.bottom-contact p {
    color: #fff;
}
.disclaimer-txt {
    color: #fff;
    font-size: 11px;
    text-align: center;
}

.footer-link a, .footer-link span {
    color: #fff;
}

.footer-link {
    text-align: center;
    border-top: 1px solid #a68f6d;
    padding-top: 15px;
    margin-top: 20px;
}

.enqModal .modal-content {
    background-color: #ffffff;
    border: 0;
}

.enqModal .modal-body {
    padding: 30px;
}

.enqModal .modal-content:before {
    content: '';
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    /* border: 2px dotted var(--mainColor); */
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.enqModal a.btnClose {
    color: #fff;
    position: absolute;
    background: #0000005e;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: 15px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
}

.enqModal span.section-tagline {
    /* color: #fff; */
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}

.enqModal span.section-tagline:after {
    background-color: #fff;
}

.enqModal h3 {
    font-size: 15px;
    /* color: #fff; */
    margin-bottom: 15px;
}

.enqModal .modal-dialog {
    max-width: 480px;
}
.mobile-inqury {
    display: none;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background: #2e182f;
    z-index: 99;
    padding: 0 10px;
}
.mobile-inqury a {
    margin: 0;
    border: 0;
    /* line-height: 1; */
    font-size: 14px;
    color: #fff;
    flex: 0 0 33.33%;
    text-align: center;
    border-right: 1px solid #4b4b4b;
    width: 33.33%;
}
.mobile-inqury a:last-child {border-right: 0;}

.whatsapp-btn {
    width: 45px;
    height: 45px;
    text-align: center;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff!important;
    font-size: 30px;
    border-radius: 100%;
    z-index: 99;
    line-height: 1
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.bg-img-cruve{
    background: #2e182f;
    position: relative;
    margin: 130px 0;
}

.bg-img-cruve:before{
    content: '';
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 130px;
    position: absolute;
    background-image:url(../img/Path-192.png);
    top: -130px;
    width: 100%;
}

.bg-img-cruve:after{
    content: '';
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 135px;
    position: absolute;
    background-image:url(../img/Path-1.png);
    bottom: -135px;
    width: 100%;
}

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 100px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes glowing {
  0% { box-shadow: 0 0 -10px #c4a300; }
  40% { box-shadow: 0 0 20px #c4a300; }
  60% { box-shadow: 0 0 20px #c4a300; }
  100% { box-shadow: 0 0 -10px #c4a300; }
}

.button-glow {
  animation: glowing 3000ms infinite;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    /* color: #5e5e5e; */
}

.content-white p {
    color: #E5E5DF;
    font-weight: 400;
}

.content-white {
    max-width: 410px;
    margin: 0 auto;
}

.content-white.b-text p{
    color: #222222;
}

.service-list {
    text-align: center;
    margin-bottom: 45px;
}

.service-list .img {
    height: 120px;
    width: 120px;
    margin: 0 auto;
}

.service-list .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-list .content {
    margin-top: 15px;
}

.service-list .content h4,.service-list .content h3 {
    font-size: 18px;
    font-weight: 600;
}

.service-list .content p {
    font-weight: 400;
    color: #727272;
}
.mob{
    display: none;
}
.desk{
    display: block;
}

@media(max-width:767px){
.mob{
    display: block;
}
.desk{
    display: none;
}
    .site-wrapper .container {
    padding: 0 15px;
}

.banner-overlay h1 {
    font-size: 35px;
}

.sec-heading {
    font-size: 30px;
    margin-bottom: 15px;
}

.sec-padding {
    padding: 30px 0;
}

.highlights-content li {
    flex: 0 0 100%;
    width: 100%;
    margin: 10px;
    font-size: 16px;
}

.gallery-img {
    height: 250px;
}

ul.amenities-list li {
    flex: 0 0 50%;
    width: 50%;
}

ul.listing li {
    width: 100%;
    margin: 0 0 10px !important;
}

ul.listing {
    margin-bottom: 20px;
}

body {
    font-size: 13px;
    padding-bottom: 49px;
}
.home-banner {
    /* height: 75vh; */
}
.banner-overlay p.price {
    font-size: 20px;
}
.enqModal .modal-body {
    padding: 30px;
}
.mobile-inqury{
    display: flex;
}
.whatsapp-btn {
    display: none;
}
.bg-img-cruve:before {
    height: 5vh;
    top: -5vh;
}

.bg-img-cruve:after {
    height: 5vh;
    bottom: -5vh;
}
.bg-img-cruve {
    margin: 40px 0;
}
.content-white {
    margin-top: 25px;
}
.about-content p {
    font-size: 13px;
}
.btn {
    padding: 7px 18px;
    font-size: 13px;
}
}