/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Oxygen", sans-serif;
	color: #fff;
	font-size: 16px;
	/* background-color: #252325; */
	/* background-color: #fefefe; */
	background-color: #F5EFE8;
}

/* * {
	cursor: url('../img/cursor.png'), auto !important
} */
* {
	cursor: url('../img/cursor.png'), auto !important
}

*:hover {
	cursor: url('../img/cursor.png'), auto !important
}

a {
	color: #47b2e4;
	text-decoration: none;
	cursor: url('../img/cursor.png'), auto !important
}

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

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

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

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

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

/*# Header --------------------------------------------------------------*/
#header {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 997;
	background-color: #F5EFE8;
	padding: 2px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
	/* background: rgba(40, 58, 90, 0.9); */
	background: rgba(245, 239, 232, 0.8);

}

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

.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;
	/* background-color: #141A2A; */
}

.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: 0px 0px 0 20px;
	font-size: 15px;
	font-weight: 500;
	color: #000;
	white-space: nowrap;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	line-height: 70px;
	text-transform: capitalize;
}

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

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	border: 2px solid #141A2A;
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #141A2A;
}

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

.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;
	-webkit-transition: 0.5s;
	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);
	-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: auto;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #000;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile .slick-arrow {
	display: none !important;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 15px 20px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	justify-content: center;
}

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

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

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

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



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

.section-bg {
	/* background-color: #000; */
	background-color: #F5EFE8;
}

.section-bgs {
	background-color: #fefefe;

}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 2px;
	position: relative;
	/* color: #FFF4B5; */
	color: #B48A57;
	font-size: 1.875rem;
	line-height: 1.35em;
}

.section-title h5 {
	font-size: 1.1rem;
	line-height: 1.2em;
	font-weight: 500;
	color: #000;
	text-transform: capitalize;
}

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

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

.section-title p {
	margin-bottom: 0;
}

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

#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: 60px 0 30px 0;
	background: #fff;
}

#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: #37517e;
}

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

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #37517e;
	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: #47b2e4;
	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: #47b2e4;
}

#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;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

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

#footer .footer-bottom {
	padding: 15px 0;
	color: #fff;
	border-top: 1px solid #dddddd;
}

#footer .copyright {
	text-align: center;
}

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

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

/* about-section */
.aboutSection .row {
	display: flex;
	align-items: stretch;
}

.aboutSection .col-md-6 {
	display: flex;
	flex-direction: column;
}

.aboutSection .col-md-6 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aboutSection .commonContent {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.map-disclaimer {
	font-size: 11px;
}

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

#main {
	margin-top: 75px;
}

/* .slick-arrow {
	position: absolute;
    top: 40%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    width: auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.slick-arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 9;

	width: 45px;
	height: 45px;
	/* background-color: rgba(0,0,0,0.7); */
	background-color: #C8A24D;
	color: #fff;

	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.slick-prev {
	left: 5px;
}

.slick-next {
	right: 15px;
}



.commonBtn {
	padding: 10px 30px;
	display: inline-flex;
	justify-content: center;
	gap: 5px;
	align-items: center;
	/* background-color: #000; */
	background-color: #8e632e;
	transition: all 0.2s;
	text-transform: uppercase;
	color: #FFF4B5;
	font-size: 0.875rem;
	border: 0;
	border-radius: 4px;
}

.commonBtn:hover {
	color: #fff;
	background-color: #b48a57;
	border-color: #3a3a3a;
}

.section-bg .commonBtn {
	background-color: #b48a57;
	border-color: #3a3a3a;
}

.section-bg .commonBtn:hover {
	background-color: #000;
	border-color: #000;
	color: #FFF4B5;
}

/*** form css ***/
label {
	font-weight: 700;
	/* color: #FFF4B5; */
	color: #000;
	margin-bottom: 5px;
}

.form-control {
	color: #666;
	border-color: #dddddd;
	padding: 1rem 0.75rem;
	border-radius: 4px;
}

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

.commonContent {
	padding: 0 60px;
}

.construtionBoxInner {
	padding: 20px 30px;
}

.amenities .separator {
	width: 8%;
}

textarea {
	resize: none;
	width: 100%;
}

.overlayBg {
	background-color: rgba(0, 0, 0, .5);
	opacity: 0;
	pointer-events: none;
	transition: all .3s linear;
	color: #fff;
	font-size: 24px;
}

.gallery-image {
	overflow: hidden;
}

.galleryBox img {
	transition: all .3s linear;
}

.galleryBox:hover .overlayBg {
	opacity: 1;
}

.galleryBox:hover img {
	filter: brightness(1.25) contrast(.85) grayscale(1);
	transform: scale(1.2);
}

.neighborhoods__img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(35, 37, 43, .30);
	z-index: 1;
}

.accordionWrapper {
	padding: 20px 30px
}

.accordion-item {
	border: 0;
	border-bottom: 1px solid #e2dad3;
}

.accordion-button:not(.collapsed) {
	color: #141A2A;
	background-color: #fbfdff;
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-body {
	padding: 10px 0;
}

.accordion-body ul li {
	font-size: 13px;
}

.accordion-body ul {
	margin: 0;
}

#footer {
	/* background: #F5EFE8; */
	padding-top: 15px;
	padding-bottom: 0px;
	/* color: #EAEAEA; */
	color: #000;
}

.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;
	color: #fff;
	z-index: 99;
}

.fixedMbBtn a {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 5px;
	color: #fff;
}

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

.awrads-Box {
	margin-top: 30px;
}

.jpLogo {
	width: 120px;
}

/* the slides */
.gallerySlider .slick-slide {
	margin: 0 10px;
}

/* the parent */
.gallerySlider .slick-list {
	margin: 0 -10px;
}

.gallerySlider .slick-arrow.slick-next {
	left: auto;
	right: 1px;
}

#header .logo img {
	width: 200px;
	background-color: transparent;
}

.para {
	color: #000;
}

.icon-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 18px;
}

.icon-title img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}


.item-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
	margin: 0;
}

.item-row span:first-child {
	font-size: 16px;
	color: #333;
}

.item-row span:last-child {
	font-size: 16px;
	font-weight: 600;
	color: #996633;
}

.accordion-body {
	padding: 12px 20px !important;
}

.crystal-section {
	/* padding: 100px 0; */
	/* position: relative; */
	background-color: #fefefe;
}



.crystal-section>.container {
	position: relative;
	z-index: 2;
}

.crystal-logo {
	width: 250px;
	height: auto;
}

.tagline {
	display: inline-block;
	background: #c8a45a;
	padding: 6px 18px;
	color: #fff;
	font-weight: 600;
	border-radius: 4px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.crystal-desc {
	max-width: 800px;
	font-size: 17px;
	line-height: 1.7;
}


.stats-row p {
	font-size: 15px;
	opacity: 0.9;
}

.stat-item {
	position: relative;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: 0.6s ease;
}

.stat-item.show {
	opacity: 1;
	transform: translateY(0);
}

.count {
	display: inline-block;
}

.plus {
	font-size: 24px;
	font-weight: bold;
}

/* calling-icon */
.floating-call {
	position: fixed;
	right: 2px;
	bottom: 41%;
	background-color: #b48a57;
	color: #fff;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 24px;
	/* z-index: 9999; */
	text-decoration: none;
}



/* BLACK vertical line */
.stat-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 45px;
	width: 1.5px;
	background: rgba(0, 0, 0, 0.4);
	/* BLACK line */
}

.stat-item h3 {
	font-size: 32px;
}
#Overview{
	padding: 0;
}


#space {
	padding-top: 0;
}

#layout {
	padding-top: 0;
}

.layoutBox img {
    filter: blur(4px);
}

/* ---------------------------
   MOBILE RESPONSIVE STYLING
   (max-width: 576px)
----------------------------*/
@media (max-width: 576px) {



	/* Icon + Title */
	.icon-title {
		font-size: 16px;
		gap: 8px;
	}

	.icon-title img {
		width: 20px;
		height: 20px;
	}

	/* Item row spacing */
	.item-row {
		padding: 4px 0;
	}

	.item-row span:first-child {
		font-size: 14px;
	}

	.item-row span:last-child {
		font-size: 14px;
		font-weight: 600;
	}

	/* Accordion body padding */
	.accordion-body {
		padding: 10px 15px !important;
	}

	/* Reduce accordion button height */
	.accordion-button {
		padding: 10px 15px;
	}

	/* Accordion title spacing on mobile */
	.accordion-button:not(.collapsed) {
		padding: 10px 15px;
	}

	.gallerySlider {
		display: flex !important;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		gap: 12px;
		padding-bottom: 10px;
	}

	.gallerySlider::-webkit-scrollbar {
		display: none;
	}

	.galleryBox {
		flex: 0 0 90%;
		max-width: 90%;
		scroll-snap-align: center;
		border-radius: 10px;
		overflow: hidden;
	}

	.galleryBox img {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 10px;
	}

	.crystal-logo {
		width: 180px;
	}

}