/*start default css*/
:root {
	--brown: #e1d3bb;
	--light-brown: #ba9a616e;
	--dark-brown: #ac772a;
	--white: #ffffff;
}

@font-face {
	font-family: Nephilm;
	src: url('../font/Nephilm.otf');
}

@font-face {
	font-family: OpenSans-Regular;
	src: url('../font/Open_Sans.ttf');
}

body {
	font-family: OpenSans-Regular;
	background-color: var(--brown);
}

body.no-scroll {
	overflow: hidden !important;
}

::-webkit-scrollbar {
	width: 0;
}

.p-text {
	letter-spacing: .7px;
	word-spacing: 1px;
	line-height: 25px;
	font-size: 14px;
	text-align: justify;
	color: #000;
}

.section-title {
	font-family: Nephilm;
	margin-bottom: 25px;
	color: #a16e20;
	font-size: 26px;
	letter-spacing: 3px;
	word-spacing: 1px;
	line-height: 34px;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
	margin: 0px;
	padding: 0;
}

.container {
	max-width: 1290px;
}

.black-heading {
	text-align: center;
	margin-bottom: 56px;
	color: #212529;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: .7px;
	word-spacing: 1px;
	line-height: 25px;
	font-family: Nephilm;
}

.brown-heading {
	font-family: Nephilm;
	margin-bottom: 25px;
	color: #a16e20;
	font-size: 20px;
	letter-spacing: 3px;
	word-spacing: 1px;
	line-height: 34px;
}

.sub-head {
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin-bottom: 10px;
}

.btn-brown,
.btn-brown:hover {
	background-color: var(--dark-brown);
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 14px;
	margin-top: 20px;
	letter-spacing: .7px;
	word-spacing: 1px;
	display: inline;
	padding: 5px 20px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	line-height: 1.5;
	color: #ffffff;
	font-family: OpenSans-Regular;
}

.ai-text {
	position: absolute;
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
	z-index: 2;
	font-weight: 400;
}

/*end default css*/
/* start header css */
.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
	transition: transform .35s ease;
	z-index: 9999;
	padding: 5px 0;
	background: #ffffff;
}

.sticky-header.show {
	transform: translateY(0);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 72px;
	object-fit: contain;
	transition: all .35s ease;
}

.menu-btn {
	text-align: center;
	cursor: pointer;
}

.menu-btn .line {
	display: block;
	width: 100%;
	height: 1px;
	background: #a16e20;
	margin: 4px auto;
}

.menu-btn .menu-text {
	letter-spacing: 3px;
	color: #a16e20;
	font-weight: 400;
	font-size: 18px;
	padding: 5px 10px;
	font-family: Nephilm;
	line-height: 20px;
}

/* FULLSCREEN MENU */
.fullscreen-menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
}

.fullscreen-menu ul li {
	padding-top: 25px;
}

.fullscreen-menu ul li a {
	cursor: pointer;
	font-size: 17px;
	font-family: 'Nephilm';
	letter-spacing: 2px;
	padding-top: 25px;
	color: #000000;
	text-decoration: none;
}

.fullscreen-menu ul li:hover {
	text-decoration: underline;
}

.fullscreen-menu {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	z-index: 99999;
	transform: translateX(-100%);
	transition: transform .40s ease;
	/* smooth slide */
}

.fullscreen-menu.is-open {
	transform: translateX(0%);
}

.close-btn {
	position: absolute;
	top: 60px;
	right: 89px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #a16e20;
	opacity: 1;
	color: var(--white);
	font-weight: 100;
	font-size: 20px;
	border: none;
	z-index: 100000;
}

.fullscreen-menu .logo-sidebar {
	height: 68px;
}

#menuOverlay {
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

#menuOverlay.is-open {
	opacity: 1;
	visibility: visible;
}

#aboutus,
#highlights,
#Amenities,
#floorplan,
#locationmap,
#projectGallery,
#about-developer {
	scroll-margin-top: 80px;
}

/* end header css */
/* start hero section css */
.banner-section {
	padding: 0px 15px 50px 15px !important;
	background-color: var(--white);
	overflow: hidden;
}

.banner-left-info {
	width: 70%;
}

.hero-part {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-part:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 37%;
	background-image: linear-gradient(180deg, #ffffff00, #000000a1);
}

.hero-part .hero-bg {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	display: block;
}

.hero-logo {
	position: absolute;
	top: 10px;
	left: 33px;
}

.hero-logo img {
	width: auto;
	height: 100px;
}

.banner-section .menu-btn {
	position: absolute;
	bottom: 30px;
	left: 5%;
	text-align: center;
	cursor: pointer;
	z-index: 2;
}

.banner-section .menu-btn .line {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	margin: 4px auto;
}

.banner-section .menu-btn .menu-text {
	letter-spacing: 3px;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	padding: 5px 10px;
	font-family: Nephilm;
	line-height: 20px;
}

.banner-text-right-bottom {
	right: 20px;
	bottom: 30px;
}

.banner-right-info {
	width: 30%;
	text-align: center;
	height: 100vh;
}

.lux-top-img img {
	margin-top: 20px !important;
}

.lux-top-img img,
.lux-logo img {
	margin: 0px auto;
	display: block;
	margin-top: 10px;
	width: auto;
	height: 150px;
	position: relative;
	right: 15px;
}

.lux-logo img {
	height: 70px;
}

.lux-title {
	font-size: 31px;
	font-family: Nephilm;
	line-height: 46px;
	text-align: center;
	margin: 0 auto;
	letter-spacing: 3px;
	width: 80%;
}

.lux-subtitle {
	font-size: 20px;
	text-transform: uppercase;
	margin-top: 7px;
	font-family: Nephilm;
	letter-spacing: 4px;
	position: relative;
	text-align: center;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
}

.starting {
	font-size: 15px;
	display: grid;
	font-family: Nephilm;
	letter-spacing: 3px;
	text-align: center;
	height: 29px;
}

.price {
	font-size: 61px;
	color: #a16e20;
	font-family: Nephilm;
	letter-spacing: 3px;
	text-align: center;
}

.lux-btn {
	font-size: 16px;
	background-color: #a16e20;
	color: #fff;
	font-family: Nephilm;
	letter-spacing: 5px;
	text-transform: uppercase;
	width: 85%;
	height: 37px;
	margin: 0px auto;
	cursor: pointer;
	padding: 5px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* end hero section */
/* start about css */
.about-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-image: url('../images/ATS-Kingston-Heath-elevation5.webp');
	background-color: #00000042;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	background-size: cover;
	background-position: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.about-section .logo-about {
	width: auto;
	height: 61px;
	margin: 0px auto;
	margin-bottom: 15px;
	filter: brightness(1);
}

.about-section .content-box {
	width: 100%;
	background: #fff;
	padding: 50px;
	border-radius: 5px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	background: var(--white);
}

.about-section .content-box .p-text {
	margin-bottom: 30px;
}

.about-section .about-text-left-bottom {
	bottom: 15px;
	left: 15px;
	letter-spacing: 2px;
}

/* end about css */
/* start slide image css */
.image-slider {
	padding: 50px 0;
}

.image-slider .slider-content {
	width: 100%;
	display: flex;
	margin: 0px auto;
}

.slider-content .slider-item.active {
	flex: 10;
}

.slider-content .slider-item {
	position: relative;
	cursor: pointer;
	flex: 1;
	margin: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	transition: .5s;
}

.slider-content .slider-item img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	height: 457px;
}

.slider-content .slider-item .image-bottom-text {
	bottom: 8px;
	left: 20px;
	z-index: 99;
	text-align: center;
	font-family: 'Nephilm';
	letter-spacing: 3px;
	margin-top: 20px;
	display: none;
}

.slider-content .slider-item .slider-bottom-title {
	display: none;
	margin-top: 10px;
	font-size: 20px;
	color: #000000;
	font-size: 30px;
	text-align: center;
	font-family: 'Nephilm';
	letter-spacing: 3px;
	margin-top: 20px;
}

.slider-content .slider-item.active .image-bottom-text,
.slider-content .slider-item.active .slider-bottom-title {
	display: block;
}

/* end slide image css */
/*start atspr css */
.atspr-section {
	background-color: var(--light-brown);
	padding: 80px 0 60px 0;
}

.atspr-section .logo-atspr {
	height: 70px;
	margin-bottom: 20px;
}

.atspr-section .black-heading {
	margin-bottom: 40px;
}

.tab-content .nav.nav-pills {
	justify-content: center;
	margin-bottom: 30px;
	gap: 0 30px;
}

.tab-content .custom-tab-btn {
	font-size: 18px;
	color: #000;
	display: block;
	padding: 10px 30px;
	background-color: var(--white);
	border-radius: 5px !important;
	text-decoration: none !important;
}

.tab-content ul li {
	color: #000;
	border-radius: 5px;
	display: flex;
	align-items: center;
}

.custom-tab-btn.active {
	background-color: var(--dark-brown) !important;
	color: var(--white) !important;
}

.custom-tab-btn:not(.active):hover {
	background-color: #f0f0f0;
	color: #333333;
}

.tab-content .tab-left-info img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tab-content .tab-left-info .ai-text {
	bottom: 15px;
	left: 15px;
}

.tab-content .col-md-6:nth-child(1) {
	background-color: #333;
}

.tab-content .col-md-6:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tab-content .col-md-6:nth-child(2) .content-panel {
	padding: 35px;
}

.tab-content .content-panel .icon-illustration img {
	height: 120px;
	margin-bottom: 20px;
}

.tab-content .brown-heading {
	margin-bottom: 15px;
	font-size: 20px;
	text-align: center;
}

/* end  atspr css*/
/* start Amenities css */
.amenities-section {
	padding-top: 130px;
	padding-bottom: 40px;
	background-color: var(--light-brown);
}

#amenitiesSlider {
	position: absolute;
	top: -100px;
	width: 500px;
	padding: 20px 20px 44px;
	text-align: center;
	border-radius: 5px;
	left: 12px;
	background-color: var(--white);
}

#amenitiesSlider .carousel-item img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
}

#amenitiesSlider .carousel-item .sub-head {
	font-family: Nephilm;
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
}

#amenitiesSlider .carousel-item .p-text {
	padding-bottom: 10px;
}

#amenitiesSlider .carousel-item .brown-heading {
	margin-bottom: 25px;
}

#amenitiesSlider .carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	background-color: var(--dark-brown);
	border-radius: 50%;
	border: none;
	margin: 0 4px;
	opacity: 1;
}

#amenitiesSlider .carousel-indicators .active {
	background-color: #000;
}

.amenities-section .right-img img {
	height: 480px;
	width: 100%;
}

.amenities-section .ai-text {
	bottom: 15px;
	right: 35px;
	z-index: 99;
	letter-spacing: 2px;
}

.right-border-link {
	font-size: 28px;
	line-height: 1.5;
	font-weight: 400;
	padding: 8px 16px 8px 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	width: 100%;
	height: 100%;
	color: #ac772a !important;
	position: relative;
	text-transform: uppercase;
	text-decoration: none;
	font-family: Nephilm;
	letter-spacing: 4px;
	top: 84px;
	bottom: -84px;
	pointer-events: none;
}

.right-border-link::after {
	content: "";
	position: absolute;
	right: -0;
	width: 30px;
	height: 2px;
	background: #000;
	top: 50%;
}

/* end Amenities css */
/* start  master plan css*/
.master-plan-section {
	padding-top: 130px;
	padding-bottom: 40px;
	background-color: var(--light-brown);
}

.mp-content-box {
	position: absolute;
	top: -100px;
	width: 500px;
	padding: 20px 20px;
	text-align: center;
	border-radius: 5px;
	left: 12px;
	background-color: var(--white);
}

.mp-content-box img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.mp-content-box .sub-head {
	font-family: Nephilm;
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 10px;
	text-align: center;
}

.mp-content-box .brown-heading {
	margin-bottom: 25px;
}

.master-plan-section .right-img img {
	height: 490px;
	width: 100%;
	filter: blur(5px);
}

.master-plan-section .right-img .btn-brown {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 9px 30px;
	letter-spacing: 1.5px;
	font-size: 15px;
	text-transform: capitalize;
}

/* end  master plan css*/
/* start floor plan */
.floor-plan-section {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: var(--light-brown);
}

.fp-content-box {
	position: absolute;
	top: 0;
	opacity: 1;
	right: unset;
	margin: 0;
	bottom: unset;
	background-color: var(--white);
	gap: 30px 0px;
	padding: 21px;
	border-radius: 10px;
	width: 24%;
}

.fp-content-box .sub-head {
	background-color: var(--dark-brown);
	padding: 10px;
	border-radius: 10px;
	color: var(--white);
	text-align: center;
	font-size: 18px;
	display: block;
	margin: 0;
	width: 100%;
}

.floor-plan-section .right-img {
	overflow: hidden;
}

.floor-plan-section .right-img img {
	height: 440px;
	width: 100%;
	filter: blur(5px);
	object-position: 10%;
	object-fit: cover;
}

.floor-plan-section .right-img .btn-brown {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 9px 30px;
	letter-spacing: 1.5px;
	font-size: 15px;
	text-transform: capitalize;
}

.floor-plan-section .right-border-link {
	top: -24px;
	left: 25px;
}

.floor-plan-section .right-border-link::after {
	right: 25px;
}

/*end floor plan */
/* start  location*/
.location-map-section {
	padding-top: 200px;
	padding-bottom: 40px;
	background-color: var(--light-brown);
}

.lm-content-box {
	position: absolute;
	top: -156px;
	width: 563px;
	padding: 15px 25px 30px;
	text-align: center;
	border-radius: 5px;
	left: 12px !important;
	left: 0px;
	background-color: var(--white);
}

.lm-content-box>img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.lm-content-box .sub-head {
	font-family: Nephilm;
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 10px;
	text-align: center;
}

.lm-content-box .brown-heading {
	margin-bottom: 30px;
}

.location-map-section .right-img img {
	height: 551px;
	width: 100%;
}

.location-map-section .right-img .ai-text {
	bottom: 15px;
	right: 35px;
}

.location-map-section .location-list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 0px;
}

.location-map-section .location-list .item {
	letter-spacing: 0.5px;
	word-spacing: normal;
	line-height: 25px;
	font-size: 12px;
	color: #000;
	width: 50%;
	text-align: left;
	display: flex;
	align-items: center;
}

.location-map-section .location-list .icon img {
	width: auto;
	height: 20px;
	opacity: 0.6;
}

.location-map-section .location-list .time {
	border: 1px solid #00000024;
	border-radius: 50px;
	margin-right: 10px;
	margin-left: 5px;
	display: inline-block;
	width: 60px;
	text-align: center;
}

.location-map-section .location-list .place {
	font-size: 12px;
	color: #000000;
	margin-left: 15px;
}

/* end location */
/* start construction status section */
.construction-status-section {
	padding-bottom: 70px;
	padding-top: 110px;
	background-color: var(--light-brown);
}

.construction-status-section .right-img img {
	height: 550px;
	width: 100%;
	object-fit: cover;
}

.construction-status-section .right-img .ai-text {
	bottom: 15px;
	right: 35px;
}

.construction-status-section .ct-content-box {
	position: absolute;
	top: 70px;
	left: 57px;
	background-color: #fff;
	z-index: 2;
	display: grid;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
	top: -70px;
	padding: 40px 50px;
}

.construction-status-section .ct-content-box>img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.construction-status-section .ct-content-box>.btn-brown {
	background-color: #ac772a;
	color: #fff;
	text-decoration: none;
	padding: 10px 30px;
	border-radius: 5px;
	margin: 0px auto;
	display: block;
	margin-top: 7px;
	display: flex;
	align-items: center;
	gap: 0px 11px;
	font-size: 16px;
	text-transform: capitalize;
}

.construction-status-section .right-border-link {
	padding: 8px 16px;
}

/* end construction status section */
/*start project gallery css*/
.project-gallery-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.project-gallery-section .gallery .row>div {
	padding: 0 15px;
}

.project-gallery-section .sec-title .sub-head {
	font-family: Nephilm;
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
}

.project-gallery-section .sec-title .brown-heading {
	margin-bottom: 50px;
}

.project-gallery-section .gallery-left-flex-row {
	display: grid;
	justify-content: center;
	align-content: space-between;
	height: 100%;
}

.project-gallery-section .both-img-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.project-gallery-section .both-img-flex a {
	width: 48% !important;
	height: 300px;
	overflow: hidden;
	border-radius: 5px;
}

.gallery a.with-caption.image-link {
	position: relative;
	display: block;
	width: 100%;
}

.gallery a.with-caption.image-link::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 25%, #000000ab 100%);
	z-index: 1;
	display: block;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.project-gallery-section .ai-text {
	bottom: 15px;
	margin-left: 26px;
	z-index: 8;
	letter-spacing: normal;
}

.project-gallery-section .gallery .ai-text.right-text {
	bottom: 15px;
	right: 35px;
	letter-spacing: 2px;
}

.project-gallery-section .one-img-flex a {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 5px;
	height: 300px;
}

.project-gallery-section .gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.project-gallery-section .last-col a {
	height: 630px;
	position: relative;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 11, 11, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* Lightbox Image */
.lightbox img {
	width: auto;
	max-width: 100%;
	height: 100vh;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 12px;
	margin: 0 auto;
}

/* Close button */
.lightbox-close {
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 28px;
	width: 35px;
	height: 35px;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	font-weight: 400;
	font-family: Arial, Baskerville, monospace;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-title {
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 12px;
	width: 100%;
	cursor: auto;
}

/*end project gallery css*/
/*start footer css*/
.footer-section {
	padding-bottom: 30px;
	padding-top: 30px;
}

.footer-section .footer-top-content {
	position: relative;
}

.footer-section .footer-top-bg {
	opacity: 0.2;
	position: absolute;
	bottom: 0%;
	width: 100%;
	height: 54%;
	object-fit: cover;
	object-position: center;
}

.footer-section .footer-logo {
	margin: 0 auto;
	display: block;
	width: auto;
	height: 60px;
	margin-bottom: 15px;
	filter: brightness(0);
}

.footer-section .sub-head {
	font-family: Nephilm;
	color: #000;
	font-size: 15px;
	letter-spacing: .7px;
	word-spacing: 1px;
	text-transform: uppercase;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
}

.footer-section .brown-heading {
	font-size: 26px;
	letter-spacing: .7px;
}

.footer-section .footer-left-text {
	padding-right: 40px;
}

.contact-form .card {
	padding: 30px;
	background-color: var(--white);
	border-radius: 10px;
	width: 100%;
	margin-left: auto;
	z-index: 9;
}

.contact-form form .field {
	margin-bottom: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 15px;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* big gold submit */
.contact-form .submit-btn {
	padding: 10px 30px;
	border-radius: 5px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: var(--dark-brown);
	color: var(--white);
	margin-top: 18px;
	width: 100%;
	font-size: 15px;
}

.submit-btn:active {
	transform: translateY(1px);
}

/* checkbox area */
.checkbox-row {
	text-align: left;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0px 2px;
}

.checkbox-row input[type="checkbox"] {
	width: 9px !important;
	height: 9px !important;
	position: relative !important;
	top: 1px !important;
}

.checkbox-text {
	font-weight: 400;
	color: #000;
	opacity: 1;
	font-size: 10px;
	letter-spacing: 0.5px;
	margin: 0;
	line-height: 15px;
}

.footer-bottom-content {
	margin-top: 30px;
}

.footer-bottom-content .contact-info {
	border-top: 1px solid #a57225d9;
	border-bottom: 1px solid #a57225d9;
	padding: 24px 0;
	text-align: center;
}

.footer-bottom-content .contact-info .footer-flex-title {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 8px;
	font-weight: 700;
	color: #a16e20;
	letter-spacing: 0.7px;
}

.footer-bottom-content .contact-info .p-text {
	color: #212529;
}

.footer-bottom-content .contact-info .row div:nth-child(2) {
	border-right: 1px solid #a57225d9;
	border-left: 1px solid #a57225d9;
}

.footer-bottom-content a {
	color: #000;
	text-transform: capitalize;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 0.5px;
	text-decoration: none;
}

.footer-bottom-content a:hover {
	text-decoration: underline;
}

.footer-bottom-content .disclaimer-content {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}

.footer-bottom-content .disclaimer-content .pb-10 {
	padding-bottom: 10px;
}

.footer-bottom-content .disclaimer-content .disclaimer-text,
.footer-bottom-content .disclaimer-content .disclaimer-text button {
	font-size: 13px;
	margin-top: 15px;
	line-height: 19.5px;
	color: #212529;
	letter-spacing: unset;
}

.footer-bottom-content .read-more-content {
	display: none;
}

.footer-bottom-content .read-more-button {
	color: #000000;
	cursor: pointer;
	background: none;
	padding: 0;
	outline: none;
	text-decoration: none;
	border: none;
	font-weight: bold;
}

.footer-bottom-contact-form {
	padding: 24px 16px 0 16px;
	max-width: 520px;
	margin: 0 auto;
}

.footer-bottom-contact-form .form-box {
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.footer-bottom-contact-form .form-box .form-black-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #212529;
}

.footer-bottom-contact-form .form-box .form-brown-title {
	margin-top: 5px;
	font-size: 26px;
	font-weight: 600;
	color: #a77d3f;
}

.footer-bottom-contact-form .form-box input,
.footer-bottom-contact-form .form-box textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid #ddd;
	font-size: 16px;
	font-weight: 400;
	margin: 12px 0;
}

.footer-bottom-contact-form .submit-btn {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	background: #B68A48;
	color: #fff;
	border: 0;
	font-weight: 600;
	cursor: pointer;
}

/*end footer css*/
/*start popup form one*/
.popup-form .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow-y: auto;
}

.popup-form .hidden {
	display: none;
}

.popup-form .popup-box {
	width: auto;
	max-width: 1000px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-form .popup-box .popup-content {
	position: relative;
	border-radius: 10px;
	max-width: 90%;
	background: #fff;
	margin: 0 auto;
	transform: translateY(-80px);
	opacity: 0;
	transition: all 0.4s ease;
}

.popup-form .popup-box .popup-content.open-animate {
	transform: translateY(0);
	opacity: 1;
}

.popup-form .close-btn {
	position: absolute;
	color: var(--white);
	opacity: 1;
	text-shadow: none;
	font-size: 15px;
	top: -11px;
	right: -5px;
	z-index: 10;
	padding: 0;
	background-color: #af751c;
	border-radius: 50% !important;
	width: 25px;
	height: 25px;
	line-height: 0;
	outline: navajowhite;
	box-shadow: none;
	border: none;
	cursor: pointer;
}

.popup-form .popup-content {
	display: flex;
	width: 100%;
}

.popup-form .popup-left {
	padding: 20px 20px 35px 20px;
}

.popup-form .popup-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-form .popup-left {
	width: 50%;
}

.popup-form .popup-right {
	width: 50%;
	padding: 20px;
}

.popup-form .popup-right h2 {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: capitalize;
}

.popup-form .popup-right input {
	position: relative;
	padding: 5px 10px;
	width: 100%;
	height: 40px;
	outline: 0;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
	transition: box-shadow 150ms ease-out;
	font-size: 14px;
	margin-bottom: 11px;
	border-radius: 0;
}

.popup-form .submit-btn {
	width: 100%;
	height: 40px;
	cursor: pointer;
	color: #000;
	letter-spacing: .5px;
	border-bottom: 1px solid #00000030 !important;
	border-radius: 0px;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	background: transparent;
	border: 0;
}

/*end popup form one*/
/*start popup form two*/
.popup-form-two .popup-box {
	max-width: 500px;
}

.popup-form-two .popup-right {
	width: 100%;
	padding: 24px;
}

.popup-form-two .close-btn {
	width: 40px;
	height: 40px;
	top: 10px;
	right: 10px;
	font-size: 19px;
	font-weight: 400;
}

.popup-form-two .popup-right .text-center img {
	width: auto;
	height: 52px;
	margin-bottom: 10px;
}

.popup-form-two .popup-right .text-center h2 {
	margin-bottom: 15px;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	color: #000000;
	padding: 10px;
	border-radius: 5px;
	font-family: 'Nephilm';
	letter-spacing: 3px;
}

.popup-form-two .submit-btn {
	padding: 10px 30px;
	border-radius: 5px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: var(--dark-brown);
	color: var(--white);
	margin-top: 18px;
	width: 100%;
	cursor: pointer;
	line-height: 24px;
	border: 0 !important;
	height: 100%;
}

.popup-form-two .popup-right input {
	font-size: 15px;
	height: 50px;
}

/*end popup form two*/
/*start side fixed css*/
.right-fixed-bar {
	position: fixed;
	right: -28px;
	top: 35%;
	z-index: 99;
	background: var(--dark-brown);
	color: var(--white) !important;
	border-radius: 5px 0 0 5px;
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100px;
	opacity: 1;
	transition: opacity .3s ease-in-out;
	display: block;
}

.right-fixed-bar .fixed-btn {
	width: 75px;
	color: var(--white);
	font-size: 10px;
	letter-spacing: 0;
	padding: 16px 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	outline: 0;
}

.right-fixed-bar .icon img {
	width: 20px;
	margin-bottom: 6px;
	filter: invert(1);
}

.right-fixed-bar.hidden {
	transform: translateX(140%);
	opacity: 0;
}

.right-fixed-bar.show {
	transform: translateX(0);
	opacity: 1;
}

/*end side fixed css*/
/*start mobile bottom button css*/
.mobile-btn {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #0d0d0c;
	z-index: 99;
	display: none;
	justify-content: center;
}

.mobile-btn .btn {
	background-color: #a16e20;
	width: 100%;
	border: none;
	border-radius: 0;
	padding-bottom: 12px;
	padding-top: 12px;
	margin-top: 0;
	color: var(--white);
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
}

.mobile-btn .btn:nth-child(1) {
	border-right: 1px solid var(--white);
}
/*end mobile bottom button css*/

/************************************ responsive css ************************************/
@media(max-width:991px) {
	.lux-btn {
		width: 100%;
	}

	.right-border-link {
		padding-left: 0;
	}

	.master-plan-section .right-img img {
		height: 550px;
	}

	.floor-plan-section .right-border-link {
		left: 0 !important;
	}

	.right-border-link {
		font-size: 20px;
	}

	.floor-plan-section .right-border-link::after {
		right: 0;
	}

	.amenities-section .right-img img,
	.floor-plan-section .right-img img,
	.location-map-section .right-img img,
	.construction-status-section .right-img img {
		height: 100%;
	}

	.project-gallery-section .both-img-flex a {
		height: 200px !important;
	}

	.gallery a.with-caption.image-link {
		height: 100%;
	}

	.project-gallery-section .ai-text {
		margin-left: 15px;
	}

	.project-gallery-section .gallery .ai-text.right-text {
		right: 15px;
	}

	.project-gallery-section .last-col a .left-text {
		width: 63%;
	}

	.footer-section .footer-left-text {
		padding-right: 0px;
	}

	.contact-form .card {
		padding: 14px;
	}

	.price {
		font-size: 40px;
	}

	.hero-logo img {
		display: none;
	}

	.logo img {
		height: 40px;
	}

	.lux-logo img {
		right: 0;
	}

	.lux-title {
		width: 100%;
	}
}

@media(max-width:767px) {
	.mobile-header {
		padding: 15px 0;
		background: #ffffff;
	}

	.menu-btn .menu-text {
		padding: 5px 8px;
	}

	.menu-btn .line {
		margin: 2px auto;
	}

	.banner-left-info {
		width: 100%;
		padding: 0;
	}

	.banner-section .menu-btn {
		display: none;
	}

	.hero-part .hero-bg {
		height: 420px;
	}

	.banner-right-info {
		width: 100%;
	}

	.lux-logo img {
		margin-top: 34px;
		margin-bottom: 34px;
	}

	.lux-title {
		margin-bottom: 34px;
	}

	.price {
		margin-bottom: 24px;
	}

	.banner-right-info {
		height: 100%;
	}

	.about-section .content-box {
		width: 100%;
		padding: 20px;
	}

	.slider-content .slider-item .image-bottom-text,
	.slider-content .slider-item .slider-bottom-title {
		display: block;
	}

	.image-slider .slider-content {
		flex-direction: column;
	}

	.tab-content .custom-tab-btn {
		padding: 5px;
		font-size: 10px;
	}

	.tab-content>.tab-pane .row {
		flex-direction: column-reverse;
	}

	.construction-status-section>.container,
	.location-map-section>.container,
	.floor-plan-section>.container,
	.master-plan-section>.container,
	.amenities-section>.container {
		display: flex;
		flex-direction: column-reverse;
	}

	#amenitiesSlider,
	.mp-content-box,
	.fp-content-box,
	.lm-content-box,
	.ct-content-box {
		position: relative !important;
		width: 100%;
		top: 0;
		left: 0 !important;
		right: 0;
		border-radius: 0 !important;
	}

	.right-border-link {
		font-size: 16px;
		background-color: #a16e20 !important;
		border-radius: 5px;
		letter-spacing: 3px;
		padding: 8px 20px;
		color: #fff !important;
		width: fit-content;
		position: relative;
		top: 0;
		margin: 20px auto 30px auto;
		text-align: center;
	}

	.floor-plan-section .right-border-link {
		top: 0;
	}

	.project-gallery-section .both-img-flex {
		flex-direction: column;
		flex-wrap: unset;
	}

	.popup-form .popup-content {
		flex-direction: column;
	}

	.popup-form .popup-left,
	.popup-form .popup-right {
		width: 100%;
		padding: 11px;
	}

	.popup-form .popup-right h2 {
		font-size: 16px;
		margin-bottom: 13px;
	}

	.popup-form .overlay {
		align-items: flex-start;
		padding: 10px 0;
	}

	.right-border-link::after {
		display: none;
	}

	.amenities-section {
		padding-top: 0px;
	}

	.master-plan-section {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.location-map-section {
		padding-top: 20px;
	}

	.construction-status-section {
		padding-top: 20px;
	}

	.construction-status-section .ct-content-box {
		top: 0;
	}

	.project-gallery-section .both-img-flex a {
		width: 100% !important;
	}

	.project-gallery-section .both-img-flex a {
		height: 100% !important;
	}

	.project-gallery-section .both-img-flex a:nth-child(1) {
		margin-bottom: 30px;
	}

	.project-gallery-section .one-img-flex {
		margin-bottom: 30px;
	}

	.footer-section .footer-left-text {
		margin-bottom: 30px;
	}

	.footer-bottom-content .contact-info .row div:nth-child(2) {
		border: 0;
		margin: 30px 0;
	}

	.fullscreen-menu .close-btn {
		top: 0;
		right: 0;
	}

	.right-fixed-bar {
		display: none;
	}

	.mobile-btn {
		display: flex;
	}

	.lightbox img {
		height: 100%;
	}

	.lux-top-img img {
		right: 0;
	}
	
	.footer-bottom-content .disclaimer-content{
	    padding-bottom:30px;
	}
}

@media(max-width:560px) {
	.location-map-section .location-list {
		flex-wrap: unset;
		flex-direction: column;
		gap: 15px 0px;
	}

	.location-map-section .location-list .item {
		width: 100%;
	}
}