/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
	font-family: 'Playball';
	src: url('assets/vendor/font/PlayfairDisplay-Regular.ttf') format('ttf');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: "Montserrat", sans-serif;
	color: #444444;
	font-size: 16px;
}

a {
	color: #ad8921;
	text-decoration: none;
}

a:hover {
	color: hsl(47 55% 53% / 1);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
	color: #ad8921;
}

p {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 18px;
}
.slick-prev:before, .slick-next:before {
    font-size: 30px !important;
}
.homeSlider .slick-prev, .homeSlider .slick-next {
    width: 70px;
    height: 70px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: hsl(47 55% 53% / 1);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

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

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

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

/*# Header --------------------------------------------------------------*/
#header {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	background: rgb(255 255 255);
}

#header img {
	max-width: 150px;
}

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

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


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

#header.header-scrolled .mobile-nav-toggle {
	color: #000;
}

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

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.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:#ad8921;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	border: 2px solid hsl(47 55% 53% / 1);
	font-weight: 600;
	background: #ad8921;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #333;
	background: hsl(47 55% 53% / 1);
}

.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;
	-webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	-webkit-transition: 0.3s;
	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: #000;
}

.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: hsl(47 55% 53% / 1);
}

.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: #000;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

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

@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: rgb(103 103 104 / 90%);
	-webkit-transition: 0.3s;
	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;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	height: auto;
}

.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: #ad8921;
}

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

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

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*-----------# our properties --------------------------*/
.ourproperties .nav-tabs .nav-item.show .nav-link,
.ourproperties .nav-tabs .nav-link.active {
	background-color: hsl(47 55% 53% / 1);
	color: #fff;
	background-image: linear-gradient(to right, hsl(47, 49%, 58%), hsl(47 55% 53% / 1), hsl(47, 49%, 58%));
}

.ourproperties h2 {
	text-align: center;
	color: #ad8921;
	margin-bottom: 40px;
}

.ourproperties .nav-link {
	/* color: hsl(47 55% 53% / 1); */
	background-color: #ddd;
	text-transform: uppercase;
	color: #333;
	width: 162px;
	height: 70px;
	margin: 10px;
	text-align: center;
	border-radius: 5px;
	line-height: 54px;
	cursor: pointer;
}

.property-card {
	position: relative;
	color: white;
}

.property-card img {
	width: 100%;
	border-radius: 10px;
}
.property-card a {
    color: #fff;
}
.property-info {
	position: absolute;
	bottom: 15px;
	left: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}

.btn:hover {
	background-color: hsl(47 55% 53% / 1);
	color: #fff;
}

h2 {
	font-weight: bold;
}

/*-----------# video --------------------------*/
.section-title {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	color: #b19045;
	font-weight: bold;
	margin-bottom: 20px;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* Aspect ratio 16:9 */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	border-radius: 20px;
}

.video-container iframe,
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.section-bg {
	background-color: #efefef;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	color:#ad8921;
	font-size: 1.875rem;
	line-height: 1.35em;
}

.section-title h5 {
	font-size: 1.2rem;
	line-height: 1.2em;
	font-weight: 700;
	color: hsl(47 55% 53% / 1);
}

.uael-separator {
	line-height: 0;
}

.separator {
	border-top-style: solid;
	display: inline-block;
	border-top-color: #141A2A;
	border-top-width: 1px;
	width: 25%;
	margin: 0 0 28px;
}

.section-title p {
	margin-bottom: 0;
}
section#about{
	padding-top:60px;
	padding-bottom:120px;
}
/*--------# gallery --------------------------------------*/

.gallery-section {
	background-repeat: no-repeat;
	padding-top:50px;
	padding-bottom:20px;
}

div#gallery {
	/* background: hsl(47 55% 53% / 0.8); */
}
div#gallery {
    background: url('../../assets/img/testimonial-bg.png');
}

div#gallery h2 {
	color: #ad8921;
}

.gallery-section .subtitle-1 {
	text-align: center;
	display: inline-block;
	width: auto;
	/* border-top: 1px solid #ffffff;
	  border-bottom: 1px solid #ffffff; */
	padding: 10px 0px;
	margin-bottom: 20px;

}

.gallery-details {
	margin: 0 auto;
	display: block;
	text-align: center;
}


.gallery-buttons-outer {
	padding-top: 15px;
	margin: 0 auto;
	display: block;
	text-align: center;
}

.gallery-arrow.mod-next.slick-arrow,
.gallery-arrow.mod-prev.slick-arrow {
	background: transparent;
	/*  color: #6f4f1e;
	  font-size: 20px;
	  border-radius: 50px;
	  right: 10px;*/
	width: 50px;
}



.gallery-arrow img {
	max-width: 100%;
	height: auto;
}

.gallery {
	position: relative;
	display: block;
	/*  max-width: 500px;
	max-height: 300px;*/
	margin: auto;
	border-radius: 4px;
	overflow: hidden;
}

.gallery .slick-list {
	overflow: hidden;
}

.gallery .slick-slide {
	outline: none !important;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	font-size: 14px;
	font-family: Helvetica, sans-serif;
	line-height: 40px;
	text-align: center;
	background-color: #E6E6E6;
	z-index: 10;
	cursor: pointer;
	transition: background 0.3s ease;
}

.gallery-arrow.mod-prev.slick-arrow {
	transform: translateY(-50%) rotate(180deg);
}

.gallery-arrow:hover {
	background: #D0DFE6;
}

.gallery-arrow.mod-prev {
	left: 0;
	border-radius: 0 4px 4px 0;
}

.gallery-arrow.mod-next {
	right: 0;
	border-radius: 4px 0 0 4px;
}

.gallery-item {
	position: relative;
	float: left;
	vertical-align: middle;
	text-align: center;
}

.gallery-img-holder {
	display: inline-block;
	width: auto;
	height: auto;
	/* max-width: 500px; */
	max-height: 500px;
}

.gallery-img {
	width: 100%;
	height: 100%;
}

.slick-lightbox .slick-arrow {
	z-index: 10;
}
section#location .mb-1 {
    color: #fff;
}
section#location .text-muted {
    color: #fff !important;
    font-weight: 500;
}
section#location .p-3.border.rounded {
    background-color: hsl(47 55% 53% / 1);
}
/*--------# accordion --------------------------------------*/
.accordion-item {
	border: 0px;
	border-bottom: 1px solid #fff;
	border-radius: 0px !important;
}

.accordion-button {
	color: #fff;
}

.accordion-item {
	background: hsl(47 55% 53% / 1);
	color: #fff;
}

button.accordion-button.collapsed {
	background: hsl(47 55% 53% / 0.5);
}

.accordion-button::after {
	content: "+";
	width: 0px;
	font-size: 25px;
	transition: none;
	margin-bottom: 10px;

}

.accordion-button:not(.collapsed)::after {
	content: "-";
	font-size: 35px;
	transition: none;
	margin-bottom: -25px;
	font-weight: 100;

}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	background: transparent;
	color: #fff;
	font-weight: 600;
}

.accordion-li::marker {
	color: #6f4f1e;
}



ul.accordion-ul.about-paradise-group-ul .accordion-li img {
	width: 50px;
	margin-right: 10px;
	margin-bottom: 5px;
}

ul.accordion-ul.about-paradise-group-ul .accordion-li::marker {
	display: none !important;
	visibility: hidden;
}

section#video {
	/* background: hsl(47 55% 53% / 0.8); */
	padding-top: 120px;
	padding-bottom: 60px;
}

section#properties {
	padding-top: 60px;
	padding-bottom: 120px;
}

#video h4,
#video p {
	color: #000;
	/* padding-bottom: 20px; */
}

#video h2 {
	color: #ad8921;
	margin-bottom: 20px;
}

section#location {
	background: hsl(47 55% 53% / 0.8);
	padding: 120px 0px;
}

section#location h2 {
	color: #000;
	padding-bottom: 20px;
}

section#location h4 {
	color: #000;
	padding: 20px 0px;
}

.connectivity {
	padding: 0px 50px;
}

.connectivity .row .col-8, .connectivity .row .col-4 {
	border-bottom: 2px solid #000;
}

/*--------# Footer --------------------------------------*/
/* #footer {
	font-size: 14px;
	background: #37517e;
} */
.footer-top p {
	margin: 15px 0px;
}

#footer .footer-newsletter {
	padding: 50px 0;
	background: #f3f5fa;
	text-align: center;
	font-size: 15px;
	color: #444444;
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	color: #37517e;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
	text-align: left;
}

#footer .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #47b2e4;
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 50px;
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #209dd8;
}

#footer .footer-top {
	padding: 10px 15px;
}

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

#footer .footer-top .footer-contact h3 {
	font-size: 28px;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	color: hsl(47 55% 53% / 1);
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	color: #5e5e5e;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: hsl(47 55% 53% / 1);
	position: relative;
	padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: hsl(47 55% 53% / 1);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

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

#footer .footer-top .footer-links ul a {
	color: #777777;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: hsl(47 55% 53% / 1);
}

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

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

#footer .footer-bottom {
	padding: 10px 0;
	color: #333;
}

#footer .copyright {
	float: left;
}

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

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

/*** slick slider common css ***/

.slick-arrow {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

.slick-arrow.slick-next {
	left: auto;
	right: 0;
}

.footer {
	background: url('../../assets/img/footer-v3-bg.jpg') no-repeat center center;
	background-size: cover;
	padding: 40px 0;
	color: #333;
}

#footer .contact-form {
	background: none;
}

.footer h2,
.footer h4 {
	font-weight: bold;
}

.footer a {
	text-decoration: none;
	color: inherit;
}

.footer .social-icons a {
	font-size: 24px;
	margin-right: 15px;
	color: #333;
}

.footer .social-icons img {
	width: 32px;
	margin-right: 0px;
	margin-bottom: 20px;
}

.contact-form {
	/* border: 1px solid #b19045; */
	padding: 20px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.8);
}

.btn-custom {
	background-color: #b19045;
	color: white;
	border: none;
	padding: 10px 20px;
	width: 100%;
}

.footer-bottom {
	border-top: 1px solid #b19045;
	text-align: center;
	padding-top: 10px;
	font-size: 14px;
}

/*** slick slider common css ***/
.commonBtn {
	padding: 10px 30px;
	display: inline-flex;
	justify-content: center;
	gap: 5px;
	align-items: center;
	background-color: hsl(47 55% 53% / 1);
	transition: all 0.2s;
	text-transform: uppercase;
	color: #fff;
	font-size: 0.875rem;
	border: 0;
	border-radius: 4px;
}

.commonBtn:hover {
	color: #fff;
	background-color: #A29161;
	border-color: hsl(47 55% 53% / 1);
}

section#residential h2,
#residential h4 {
	padding-bottom: 20px;
}

section#commercial h2,
#commercial h4 {
	padding-bottom: 20px;
}

section#plot h2,
#plot h4 {
	padding-bottom: 20px;
}

/*** form css ***/
.footer label {
	color: #b19045;
	font-weight: 400;
}

label {
	font-weight: 700;
	color: hsl(47 55% 53% / 1);
	margin-bottom: 5px;
}

.form-control {
	color: #666;
	border-color: #dddddd;
	padding: 1rem 0.75rem;
	border-radius: 0px;
	background: none;
	border: none;
	border-bottom: 2px solid #dddddd;
}

/* #footer {
    background: #000000;
    color: #EAEAEA;
} */

.disclaimer h3 {
	color: #ECECEC;
	font-size: 15px;
}

.disclaimer p {
	color: #ECECEC;
	font-size: 10px;
}

.fixedMbBtn {
	position: fixed;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: #000; */
	background: hsl(47 55% 53% / 1);
	color: #fff;
	z-index: 99;
}

.fixedMbBtn a {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 5px;
	color: #fff;
	background: hsl(47 55% 53% / 0.8) !important;
	border: none !important;
}

.fixedMbBtn a:hover {
	background: hsl(47 55% 53% / 0.8) !important;
	border: none !important;
}

.fixedMbBtn a:nth-child(1) {
	border-right: 1px solid #fff;
}

.gallery-arrow.mod-next {
	right: 0;
	left: auto;
}

.gallerySlider .slick-slide {
	margin: 0 15px;
}

.gallerySlider .slick-list {
	margin: 0 -15px;
}
.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: auto;
    width: auto;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
}
.slick-lightbox-close:before {
    font-size: 40px;
}
/*  residential */
section#residential {
    padding-bottom: 60px;
}
section#amenities{
	padding-top: 60px;
}
#amenities h2 {
    margin-bottom: 40px;
	text-align: center;
}
/*  amenities */
.amenities-box {
    height: 100%;
    /* padding: 25px 10px; */
    border-radius: 10px;
    background-color: #ad8921;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}
.amenities img {
    width: 100px;
    margin: 0 auto;
    display: block;
}
.amenities p {
    text-align: center;
    color: #fff;
    font-size: 15px;
padding: 10px 0px;
}
.amenities-list-single .row {
    border-bottom: 2px solid #000;
}
.Property-container img{
width: 100%;
height: 100%;
}
#Highlights h2{
padding-bottom: 20px;
}
section#Commercial h2{
	padding-bottom: 20px;
}
.Proposed-container img{
	width: 100%;
	height: 700px;
}

#Commercial .Proposed-container img {
    width: 100%;
    height: auto;
}
.project-title {
    padding-bottom: 0px !important;
}
.project-subtitle {
    padding-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    color: #000000;
}
#Commercial .row {
    align-items: center;
}
.amenities-left-img img{
	width: 100%;
}
.about-excel-group-ul li.accordion-li {
    padding: 0px 0px 10px;
}
/* section#plots {
    padding-bottom: 10px;
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
} */
.amenities-list-outer-row{
	    align-items: center;
}
section#Highlights .row {
    align-items: center;
}
#residential{
	text-align: center;
}
/*.amenities-bullets {
    background: #6f4f1e;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50px;
}*/
.amenities-bullets {
    display: list-item;
}
.amenities-list-single .row {
    border-bottom: 0px solid #000;
}
.amenities-bullets::marker {
    color: #6f4f1e;
}
.amenities p {
    padding: 5px 0px;
}
#main {
	    padding-top: 80px;
}
.slider-overlay-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 80%; /* Adjust as needed */
  }

  .item {
    position: relative;
  }
  .overlay-desk{
	display: block !important;
  }
  .overlay-mob{
	display: none !important;
  }
  div#tabMenu .nav-link {
    font-weight: bold;
    border-width: 0 0 0 5px;
    border-left-color: transparent;
    background: #FAFAFA;
    color: #757575 ;
    border-radius: 0px;
    padding: 10px;
	margin-bottom: 5px;
	}
	.nav-pills .nav-link.active {
		color: #A29161 !important;
		border-left: 8px solid #A29161 !important
	}
