@font-face {
    font-family: "againstregular";
    src: url("../fonts/againstregular.eot");
    src: url("../fonts/againstregular.eot") format("embedded-opentype"),
        url("../fonts/againstregular.woff2") format("woff2"),
        url("../fonts/againstregular.woff") format("woff"),
        url("../fonts/againstregular.ttf") format("truetype"),
        url("../fonts/againstregular.svg#againstregular") format("svg");
    font-display: swap;
}

@font-face {
    font-family: "Story Script";
    src: url("../fonts/story-script.woff2") format("woff2"),
        url("../fonts/story-script.woff") format("woff"),
        url("../fonts/story-script.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
    color: #444444;
}

a {
    color: #bd9234;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #73c5eb;
    text-decoration: none;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #bd9234;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

#header .header-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
    gap: 20px;
}

#header .header-container > .logo {
    justify-self: start;
}

#header .header-container > .navbar {
    justify-self: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

#header .header-container > .getstarted {
    justify-self: end;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #fff;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* flex: 1; */
    /* display: flex; */
    /* min-width: 115px; */
    /* width: 119px; */
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    height: 75px;
    min-width: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    white-space: nowrap;
    transition: 0.3s;
    font: normal normal 500 12px/22px Montserrat;
    letter-spacing: 0.8px;
    color: #071027;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #a27a23;
}

.navbar .getstarted,
.navbar .getstarted:focus,
#header .getstarted,
#header .getstarted:focus {
    padding: 8px 20px;
    margin-left: 0;
    border-radius: 50px;
    color: #fff;
    /* font-size: 14px; */
    /* border: 2px solid #071027; */
    /* font-weight: 600; */
    background: #a27a23;
    text-decoration: none;
    white-space: nowrap;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover,
#header .getstarted:hover,
#header .getstarted:focus:hover {
    color: #fff;
    background: #a27a23;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #47b2e4;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #a27a23;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #fff;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
    visibility: visible !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-padding {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    position: relative;
    font-family: "Story Script", "sans-serif";
    font-size: 50px;
    line-height: 80px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 2px;
    color: #a27a23;
    text-transform: uppercase;
}

.section-title p {
    margin-bottom: 0;
    font: normal normal normal 18px/28px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    /* text-transform: uppercase; */
}
.accordion-img {
    display: block;
    margin: 20px 0;
    /* max-width: 100%; */
    height: auto;
    width: 500px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #000000;
}

#footer .footer-top {
    padding: 40px 0 10px 0;
    /* background: #fff; */
    border-bottom: 1px solid #fff;
}

#footer .footer-top h4 {
    /* font-size: 16px; */
    /* font-weight: bold; */
    /* color: #37517e; */
    position: relative;
    padding-bottom: 12px;
    font: normal normal bold 16px/16px Montserrat;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
    margin-bottom: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* word-wrap: break-word; */
    text-wrap: wrap;
    gap: 0px;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    /* width: 33.33%; */
}

#footer .footer-top .footer-links ul li:first-child {
    /* padding-top: 0; */
}

#footer .footer-top .footer-links ul a {
    /* color: #777777; */
    transition: 0.3s;
    display: inline-block;
    /* line-height: 1; */
    /* font: normal normal normal 14px/14px Montserrat; */
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #a27a23;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    /* background: #47b2e4; */
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    /* width: 36px; */
    /* height: 36px; */
    transition: 0.3s;
}

/*#footer .footer-top .social-links a:hover {*/
/*  background: #209dd8;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*}*/

#footer .footer-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    /* border-top: 1px solid; */
}

#footer .copyright {
    float: none;
    text-align: center;
    font: normal normal normal 11px/11px Montserrat;
    letter-spacing: 0.55px;
    color: #d1d3d4;
    text-transform: uppercase;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}
.why-antras .row .col-lg-3 {
    display: flex;
    flex-direction: row;
}
.why-antras .row .col-lg-3:nth-child(even) {
    flex-direction: row-reverse;
    @media (max-width: 767px) {
        flex-direction: column !important;
    }
}
@media (max-width: 767px) {
    .why-antras .row .col-lg-3 {
        flex-direction: column !important;
    }
}
.why-detail-box {
    height: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.why-img-box {
    height: 300px;
    width: 50%;
    flex-shrink: 0;
    position: relative;
}

.why-img-box img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
video.banner-video {
    width: 100%;
    height: 100v;
}
.main-banner {
    margin-top: 120px;
    background: #f5f2e3;
}
.banner-form-wrapper h2 {
    text-align: center;
    font: normal normal normal 50px/69px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.banner-form-wrapper {
    padding: 50px;
}
.submit-btn {
    background: #a27a23 0% 0% no-repeat padding-box;
    border-radius: 28px;
    border: 0;
    padding: 10px 30px;
    font: normal normal bold 15px/22px Montserrat;
    letter-spacing: 1.8px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
    width: max-content;
}
.project-detail-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 4rem;
    padding: 40px 50px;
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(162, 122, 35, 0.1); */
    border: 1px solid rgba(162, 122, 35, 0.1);
    position: relative;
    /* overflow: hidden; */
    transition: all 0.3s ease;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.project-detail-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a27a23 0%, #bd9234 50%, #a27a23 100%);
    z-index: 1;
}

.project-detail-box:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(162, 122, 35, 0.2);
    transform: translateY(-2px);
}

.project-detail-box p {
    margin-bottom: 0;
    font: normal normal 500 15px/22px Montserrat;
    letter-spacing: 1px;
    color: #333333;
    text-transform: capitalize;
    text-align: left;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

/* .project-detail-box p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #a27a23;
  border-radius: 50%;
  transition: all 0.3s ease;
} */

.project-detail-box p:hover::before {
    width: 12px;
    height: 12px;
    background: #bd9234;
}

.project-detail-box p strong {
    font: normal normal bold 18px/22px Montserrat;
    letter-spacing: 0.5px;
    color: #a27a23;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    position: relative;
}

.project-detail-box span {
    border: none;
    height: 60px;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        #a27a23 50%,
        transparent 100%
    );
    opacity: 0.6;
    position: relative;
}
.form-control,
.form-select {
    /* background: transparent; */
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.form-control::placeholder {
    font: normal normal normal 16px/16px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}
.about-detail {
    background: #f5f2e3;
}
.about-detail .section-title {
    text-align: left;
}
.about-txt p {
    font: normal normal normal 16px/26px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 0;
    text-align: justify;
}
.why-detail-box h3 {
    text-align: left;
    font: normal normal bold 18px/20px Montserrat;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
}

.why-detail-box p {
    text-align: left;
    font: normal normal normal 15px/23px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 0;
}
.why-antras {
    background: #f5f2e3;
}

/* Social Infrastructure Icon Design within Original Layout */
.social-infra-heading {
    text-align: center;
    /* margin-bottom: 20px; */
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* background: #fff; */
}

.social-infra-heading h3 {
    display: inline-block;
    font: normal normal bold 16px/20px Montserrat;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    padding: 6px 18px;
    border: 2px solid #bd9234;
    border-radius: 4px;
    margin: 0;
    background: #a27a23;
}

.why-detail-box .social-infra-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.why-detail-box .social-infra-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 80px;
    text-align: left;
}

.why-detail-box .social-infra-item i {
    font-size: 35px;
    color: #bd9234;
    text-align: center;
    flex-shrink: 0;
}

.why-detail-box .social-infra-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.why-detail-box .social-infra-number {
    font: normal normal bold 18px/22px Montserrat;
    letter-spacing: 0px;
    color: #bd9234;
}

.why-detail-box .social-infra-label {
    font: normal normal normal 13px/16px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .why-detail-box .social-infra-heading h3 {
        font-size: 14px;
        padding: 5px 15px;
    }

    .why-detail-box .social-infra-item i {
        font-size: 24px;
    }

    .why-detail-box .social-infra-number {
        font-size: 16px;
    }

    .why-detail-box .social-infra-label {
        font-size: 11px;
    }

    .why-detail-box .social-infra-content {
        gap: 12px;
        flex-direction: column;
    }

    .why-detail-box .social-infra-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .why-detail-box .social-infra-text {
        align-items: flex-start;
    }
}
.price {
    background-color: #fff;
}
table tr th {
    background-color: #a27a23 !important;
    font: normal normal bold 18px/18px Montserrat;
    letter-spacing: 0px;
    color: #ffffff !important;
    text-transform: uppercase;
    padding: 20px !important;
    text-align: center;
}
.table > tbody > tr:nth-of-type(odd) > * {
    background: #ffffff 0% 0% no-repeat padding-box !important;
}
.table > tbody > tr:nth-of-type(even) > * {
    background: #f5f5f5 0% 0% no-repeat padding-box !important;
}
.table > tbody > tr > td {
    text-align: center;
    padding: 20px;
    font: normal normal normal 16px/16px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}
.table > tbody > tr > td a {
    text-decoration: underline !important;
    text-underline-offset: 5px;
}

.contact .section-title {
    text-align: left;
}

.location-box p {
    text-align: left;
    font: normal normal bold 13px/13px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 0;
    padding-top: 10px;
}
.location-map img {
    width: 100%;
}
.location .section-title h4 {
    font: normal normal normal 18px/28px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 0;
}
.location-box {
    width: 35%;
    float: left;
    margin: 20px 0;
    min-height: 85px;
}

.location-detail {
    width: 100%;
}
.locate-us p {
    text-align: left;
    font: normal normal bold 17px/14px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0;
}
.map-btn {
    display: inline-block;
    margin-top: 25px;
    /* padding: 12px 30px; */
    /* background-color: #b88a2a; */
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    /* text-decoration: none; */
    /* border-radius: 30px; */
    transition: all 0.3s ease;
    /* font: normal normal normal 12px / 20px Poppins; */
    letter-spacing: 3.2px;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: 0.2s linear all;
    border-bottom: 1px solid #000;
}

.map-btn:hover {
    background-color: #9e741f;
    color: #fff;
}

.locate-us {
    margin-top: 20px;
}
.amenities-detail h4 {
    font: normal normal bold 18px/18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}

.amenities-detail ul li {
    font: normal normal normal 16px/26px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
}
.amenities-detail {
    margin: 20px 0;
}
.amenities-wrapper ul.nav-tabs {
    border: 1px solid #000000;
    border-radius: 48px;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 30px;
}
.amenities-wrapper .nav-link {
    border-radius: 48px;
    padding: 15px 50px;
    border: none;
    margin-bottom: 0;
    width: 260px;
    font: normal normal 600 18px/18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}
.amenities-wrapper .nav-link.active {
    background: #a27a23 0% 0% no-repeat padding-box;
    border: 1px solid #a27a23;
    color: #fff;
}

.amenities .section-title p {
    text-transform: none;
}
.rera-terms {
    background-color: #f5f2e3;
}
/* Custom style */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(0.7) !important;
    fill: #a27a23;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.accordion-header {
    text-align: left;
    font: normal normal bold 24px/34px Montserrat;
    letter-spacing: 0px;
    color: #bd9234;
    text-transform: uppercase;
}

.accordion-button {
    text-align: left;
    font: normal normal bold 16px/32px Montserrat;
    letter-spacing: 0px;
    color: #bd9234 !important;
    text-transform: uppercase;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

.accordion {
    background-color: transparent !important;
}

.accordion-item,
.accordion-item:last-of-type {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #bd923461;
    border-radius: 0;
    padding: 10px 0;
}
.accordion-item:last-of-type {
    border: none;
}
.card-body p b a {
    color: #000;
}
.qr-code {
    gap: 10px;
}
.footer-contact .social-links p {
    margin-bottom: 0;
    font: normal normal normal 13px/13px Montserrat;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-transform: uppercase;
}
.footer-contact p {
    font: normal normal normal 13px/13px Montserrat;
    letter-spacing: 0;
    color: #ffffff;
}

.footer-contact h3 {
    font: normal normal bold 16px/16px Montserrat;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
    padding-bottom: 12px;
}
.highlight-box {
    position: relative;
    /* z-index: 1; */
}

.highlight-txt {
    /* position: absolute; */
    bottom: 125px;
    left: 50px;
    z-index: 1;
    padding-top: 20px;
    text-align: center;
}
.highlight-slider-box {
    position: relative;
}

.highlight-main-slider-box .highlight-box::after {
    content: "";
    position: absolute;
    background: transparent
        linear-gradient(181deg, #ffffff00 0%, #5d5d5d00 35%, #000000ed 100%) 0%
        0% no-repeat padding-box;
    width: 100%;
    height: 300px;
    opacity: 1;
    bottom: 0;
    /* z-index: 2; */
}
.highlight-txt p {
    font: normal normal 300 18px/21px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.highlight-txt h2 {
    font: normal normal normal 40px/50px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

.highlight-txt h4 {
    font: normal normal bold 18px/18px Montserrat;
    letter-spacing: 0px;
    color: #bd9234;
    text-transform: uppercase;
    margin-bottom: 0;
}
.slider-for .slick-prev:before,
.slider-for .slick-next:before {
    display: none;
}
.slider-for .slick-prev {
    position: absolute;
    bottom: 70px;
    z-index: 222;
    color: #000;
    top: auto;
    left: 5%;
}

.slider-for .slick-next {
    position: absolute;
    bottom: 70px;
    z-index: 222;
    color: #000;
    top: auto;
    left: 10%;
}
.slider-for .slick-next i {
    font-size: 30px;
    font-weight: unset;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-for .slick-prev i {
    font-size: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-antras .section-title p {
    text-transform: none;
}
.qr-code img {
    width: 150px;
}

.location .location-wrapper {
    padding: 120px 0;
}
/*************************************** SIDEBAR FORM CSS ************************************/
.enquireNowSideFormBtn {
    position: fixed;
    top: 50%;
    right: -57px;
    transform: translateY(-50%) rotate(90deg);
    padding: 15px 20px;
    z-index: 2;
    cursor: pointer;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 20px #0000005e;
    text-decoration: none;
    display: block;
}
.download-brochure {
    position: fixed;
    left: 15px;
    right: auto;
    bottom: 80px; /* back-to-top se thoda upar */
    width: 45px;
    height: 45px;
    background: #b88a2a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    z-index: 999;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* icon */
.download-brochure i {
    font-size: 22px;
}

/* hover text hidden */
.download-brochure .download-text {
    white-space: nowrap;
    /* margin-left: 10px; */
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    transition: all 0.3s ease;
}

/* hover expand */
.download-brochure:hover {
    width: 200px;
    padding: 0 20px;
    justify-content: flex-start;
    color: #fff;
    gap: 5px;
}

/* show text */
.download-brochure:hover .download-text {
    opacity: 1;
    max-width: 200px;
}

/* Highlight box relative */
.highlight-box {
    position: relative;
    overflow: hidden;
}

/* Image */
.highlight-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* COMMON HEADING FOR HIGHLIGHTS SECTION */
.highlight-heading {
    text-align: center;
    margin-bottom: 40px;
}
.highlight-heading p {
    font: normal normal 300 18px / 21px Montserrat;
    letter-spacing: 0px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 0;
}
.highlight-heading h3 {
    font: normal normal normal 40px / 50px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .highlight-heading {
        margin-bottom: 30px;
    }
    .highlight-heading h3 {
        font: normal normal normal 24px / 34px "Bodoni Moda", sans-serif;
    }
}

/* TEXT OVER IMAGE */
.highlight-txt {
    position: absolute;
    left: 45px;
    bottom: 125px;
    z-index: 5;
    text-align: left;
}
.highlight-txt p {
    font: normal normal 300 18px / 21px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.highlight-txt h3 {
    font: normal normal normal 40px / 50px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    @media (max-width: 767px) {
        color: #000;
        font: normal normal normal 24px / 34px "Bodoni Moda", sans-serif;
    }
}

.highlight-txt h4 {
    font: normal normal bold 18px / 18px Montserrat;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.featureIconBox {
    max-width: 25%;
    text-align: center;
    flex: 1;
    margin-top: 10px;

    @media (max-width: 767px) {
        max-width: 40%;
        flex: 0 0 40%;
        margin-top: 0 !important;
    }
}

.featureIconBox img {
    width: 60px;
}
.featureIconBox p {
    font: normal normal normal 14px / 24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 0;
}
.featureIconBox p span {
    color: #a27a23;
    font-weight: 700;
}

.feature-separator {
    border: none;
    width: 2px;
    height: 60px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        #a27a23 50%,
        transparent 100%
    );
    opacity: 0.6;
    position: relative;
    flex-shrink: 0;
    align-self: center;
    /* display: none; */
}

@media (min-width: 768px) {
    .feature-separator {
        display: block;
    }
} */
/* .enquireNowSidebrochure-btn {
position: fixed;
top: 50%;
right: -57px;
transform: translateY(-50%) rotate(90deg);
padding: 15px 20px;
z-index: 2;
cursor: pointer;
background: #ffffff 0% 0% no-repeat padding-box;
box-shadow: 0px 5px 20px #0000005e;
} */

.enquireNowSideFormBtn p {
    font: normal normal normal 13px/13px "Story Script", "sans-serif";
    letter-spacing: 1.6px;
    color: #111c37;
    font-weight: 700;
}

.enquireNowSideFormCloseBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}

.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 30px 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
}

.sidebar-contact.active {
    right: 0;
    -webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input::placeholder {
    font: normal normal normal 14px/24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.sidebar-contact input.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: #58595b;
    color: #58595b;
}

.sidebar-contact input,
.sidebar-contact textarea {
    /* width: 100%; */
    /* height: 36px; */
    margin-top: 10px;
    padding: 0px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin-bottom: 0px;
    border: 0;
    border-bottom: 1px solid #000000;
    color: #000000;
}

.sidebar-contact h2 {
    padding: 0;
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
}

.toggle.active {
    height: 35px;
    width: 35px;
    line-height: 35px;
    top: 0;
    left: -35px;
}

.toggle {
    background: #63401a;
}

.toggle {
    position: absolute;
    height: 35px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background: #c69651;
    top: 58px;
    left: -98px;
    line-height: 36px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    color: #000;
}

.toggle.active:before {
    position: absolute;
    content: "X";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 37%;
}

.toggle.active:before {
    content: "X";
}

.toggle:before {
    content: "Enquire Now";
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.toggle:hover {
    background-color: #000;
}

@media (max-width: 320px) {
    .sidebar-contact {
        right: -300px;
        width: 300px;
        padding: 50px 30px;
    }
}

/*************************************** SIDEBAR FORM CSS ************************************/

.modal-body h1.modal-title {
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: capitalize;
}
button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    opacity: 1;
}
.error {
    color: red;
    font-size: 14px;
    padding-top: 5px;
}
.error_msg {
    display: none;
}
.download-brochure {
    padding: 8px 20px;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    /* font-size: 14px; */
    /* border: 2px solid #071027; */
    /* font-weight: 600; */
    background: #a27a23;
}
.form-check-label {
    margin-top: 10px;
    font-size: 14px;
}
.contact-box .form-check-label,
.modal-body .form-check-label {
    margin-top: 0;
}
.contact-detail-txt a.know-more {
    background-color: #bd9234;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-contact .form-select {
    padding-left: 0;
}
.swiper-button-prev,
.swiper-button-next {
    font-size: 30px;
    font-weight: unset;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    top: auto;
    bottom: 30px;

    @media (max-width: 767px) {
        width: 30px;
        height: 30px;
        font-size: 20px;
        padding: 10px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40px;
    right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    /* right: 10px; */
    left: 100px;
}

/* .main-banner-slider .swiper-button-prev,
.main-banner-slider .swiper-button-next {
top: 50%;
transform: translateY(-50%);
bottom: auto;
}

.main-banner-slider .swiper-button-prev {
left: 0 !important;
}

.main-banner-slider .swiper-button-next {
right: 0 !important;
left: auto !important;
} */
.whatsappIcon a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsappIcon {
    position: fixed;
    bottom: 10%;
    right: 10px;
}

.whatsappIcon img {
    width: 72px;
}
.whatsappIcon a p {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px;
    line-height: 1;
}
.price-table-wrapper p {
    font-size: 12px;
}
.whatsappIcon i {
    padding: 5px 0px;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    color: green;
}
.amenities {
    background: #f5f2e3;
}

.walkthrough {
    background: #f5f2e3;
}.enquireNowSideFormBtn p {
    font: normal normal normal 13px/13px "Story Script", "sans-serif";
    letter-spacing: 1.6px;
    color: #111c37;
    font-weight: 700;
}

.enquireNowSideFormCloseBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}

.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 30px 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
}

.sidebar-contact.active {
    right: 0;
    -webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input::placeholder {
    font: normal normal normal 14px/24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.sidebar-contact input.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: #58595b;
    color: #58595b;
}

.sidebar-contact input,
.sidebar-contact textarea {
    /* width: 100%; */
    /* height: 36px; */
    margin-top: 10px;
    padding: 0px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin-bottom: 0px;
    border: 0;
    border-bottom: 1px solid #000000;
    color: #000000;
}

.sidebar-contact h2 {
    padding: 0;
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
}

.toggle.active {
    height: 35px;
    width: 35px;
    line-height: 35px;
    top: 0;
    left: -35px;
}

.toggle {
    background: #63401a;
}

.toggle {
    position: absolute;
    height: 35px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background: #c69651;
    top: 58px;
    left: -98px;
    line-height: 36px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    color: #000;
}

.toggle.active:before {
    position: absolute;
    content: "X";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 37%;
}

.toggle.active:before {
    content: "X";
}

.toggle:before {
    content: "Enquire Now";
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.toggle:hover {
    background-color: #000;
}

@media (max-width: 320px) {
    .sidebar-contact {
        right: -300px;
        width: 300px;
        padding: 50px 30px;
    }
}

/*************************************** SIDEBAR FORM CSS ************************************/

.modal-body h1.modal-title {
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: capitalize;
}
button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    opacity: 1;
}
.error {
    color: red;
    font-size: 14px;
    padding-top: 5px;
}
.error_msg {
    display: none;
}
.download-brochure {
    padding: 8px 20px;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    /* font-size: 14px; */
    /* border: 2px solid #071027; */
    /* font-weight: 600; */
    background: #387fb0;
}
.form-check-label {
    margin-top: 10px;
    font-size: 14px;
}
.contact-box .form-check-label,
.modal-body .form-check-label {
    margin-top: 0;
}
.contact-detail-txt a.know-more {
    background-color: #bd9234;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-contact .form-select {
    padding-left: 0;
}
.swiper-button-prev,
.swiper-button-next {
    font-size: 30px;
    font-weight: unset;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    top: auto;
    bottom: 30px;

    @media (max-width: 767px) {
        width: 30px;
        height: 30px;
        font-size: 20px;
        padding: 10px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40px;
    right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    /* right: 10px; */
    left: 100px;
}

/* .main-banner-slider .swiper-button-prev,
.main-banner-slider .swiper-button-next {
top: 50%;
transform: translateY(-50%);
bottom: auto;
}

.main-banner-slider .swiper-button-prev {
left: 0 !important;
}

.main-banner-slider .swiper-button-next {
right: 0 !important;
left: auto !important;
} */
.whatsappIcon a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsappIcon {
    position: fixed;
    bottom: 10%;
    right: 10px;
}

.whatsappIcon img {
    width: 72px;
}
.whatsappIcon a p {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px;
    line-height: 1;
}
.price-table-wrapper p {
    font-size: 12px;
}
.whatsappIcon i {
    padding: 5px 0px;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    color: green;
}
.amenities {
    background: #f5f2e3;
}

.walkthrough {
    background: #f5f2e3;
}.enquireNowSideFormBtn p {
    font: normal normal normal 13px/13px "Story Script", "sans-serif";
    letter-spacing: 1.6px;
    color: #111c37;
    font-weight: 700;
}

.enquireNowSideFormCloseBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}

.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 30px 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
}

.sidebar-contact.active {
    right: 0;
    -webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input::placeholder {
    font: normal normal normal 14px/24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.sidebar-contact input.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: #58595b;
    color: #58595b;
}

.sidebar-contact input,
.sidebar-contact textarea {
    /* width: 100%; */
    /* height: 36px; */
    margin-top: 10px;
    padding: 0px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin-bottom: 0px;
    border: 0;
    border-bottom: 1px solid #000000;
    color: #000000;
}

.sidebar-contact h2 {
    padding: 0;
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: uppercase;
}

.toggle.active {
    height: 35px;
    width: 35px;
    line-height: 35px;
    top: 0;
    left: -35px;
}

.toggle {
    background: #63401a;
}

.toggle {
    position: absolute;
    height: 35px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background: #c69651;
    top: 58px;
    left: -98px;
    line-height: 36px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    color: #000;
}

.toggle.active:before {
    position: absolute;
    content: "X";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 37%;
}

.toggle.active:before {
    content: "X";
}

.toggle:before {
    content: "Enquire Now";
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.toggle:hover {
    background-color: #000;
}

@media (max-width: 320px) {
    .sidebar-contact {
        right: -300px;
        width: 300px;
        padding: 50px 30px;
    }
}

/*************************************** SIDEBAR FORM CSS ************************************/

.modal-body h1.modal-title {
    text-align: center;
    font: normal normal normal 23px/33px "Bodoni Moda", sans-serif;
    letter-spacing: 0px;
    color: #a27a23;
    text-transform: capitalize;
}
button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    opacity: 1;
}
.error {
    color: red;
    font-size: 14px;
    padding-top: 5px;
}
.error_msg {
    display: none;
}
.download-brochure {
    padding: 8px 20px;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    /* font-size: 14px; */
    /* border: 2px solid #071027; */
    /* font-weight: 600; */
    background: #a27a23;
}
.form-check-label {
    margin-top: 10px;
    font-size: 14px;
}
.contact-box .form-check-label,
.modal-body .form-check-label {
    margin-top: 0;
}
.contact-detail-txt a.know-more {
    background-color: #bd9234;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-contact .form-select {
    padding-left: 0;
}
.swiper-button-prev,
.swiper-button-next {
    font-size: 30px;
    font-weight: unset;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    top: auto;
    bottom: 30px;

    @media (max-width: 767px) {
        width: 30px;
        height: 30px;
        font-size: 20px;
        padding: 10px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40px;
    right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    /* right: 10px; */
    left: 100px;
}

/* .main-banner-slider .swiper-button-prev,
.main-banner-slider .swiper-button-next {
top: 50%;
transform: translateY(-50%);
bottom: auto;
}

.main-banner-slider .swiper-button-prev {
left: 0 !important;
}

.main-banner-slider .swiper-button-next {
right: 0 !important;
left: auto !important;
} */
.whatsappIcon a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsappIcon {
    position: fixed;
    bottom: 10%;
    right: 10px;
}

.whatsappIcon img {
    width: 72px;
}
.whatsappIcon a p {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px;
    line-height: 1;
}
.price-table-wrapper p {
    font-size: 12px;
}
.whatsappIcon i {
    padding: 5px 0px;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    color: green;
}
.amenities {
    background: #f5f2e3;
}

.walkthrough {
    background: #f5f2e3;
}
.enquireNowSideFormBtn p {
    font: normal normal normal 13px/13px "Story Script", "sans-serif";
    letter-spacing: 1.6px;
    color: #111c37;
    font-weight: 700;
}