:root{
	--primary-color:  #edae03;
	--primary-text-color:  #fff;
	--primary-light-color:  #3a3a3a;
	/* --secondry-color: #4d9eb6; */
	--secondry-color: #000000;
	--secondry-light-color: rgb(47, 47, 47);
	--dark-red:  #8b0000;
	--custom-gradient: linear-gradient(  45deg,  #edae03 ,  #ffe12e ,  #edae03);
		--black-gradient: linear-gradient(150deg, #000000, #2f2f2f);
}
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body
{
	scroll-behavior: smooth;
}
body
{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding-top: 65px;
	/* line-height: normal; */
	background-color: var(--secondry-color);
}
a
{
	text-decoration: none !important;
	color: inherit;
}
img, video
{
	max-width: 100%;
	display: block;
}
input,
button,
textarea
{
	border: none;
	outline: none;
}
input:focus,
button:focus
{
	outline: none;
}
input, textarea
{
	width: 100%;
	padding: 6px 10px;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 6px;
	display: block;
	font-size: 0.875rem;
}
label
{
	margin: 2px;
}
ul, li
{
	margin: 0;
	padding: 0;
	list-style: square;
}

.tableContainer
{
	margin-bottom: 15px;
	overflow-x: auto;
}
.tableContainer table
{
	margin: 0;
}

.btn
{
	font-size: 14px;
	padding: 7px 15px;
	font-weight: bold;
	transition: 0.3s;
	border-radius: 75px;
	text-transform: uppercase;
}
.btnDark
{
	color: var(--primary-text-color);
	background: var(--primary-color);
}
.btnDark:hover
{
	color: var(--primary-text-color);
	background: var(--primary-light-color);
}

.btnGradientDark
{
	color: var(--primary-text-color);
	background: var(--custom-gradient);
	background-size: 200%;
	background-position: 0;
}
.btnGradientDark:hover
{
	color: var(--primary-text-color);
	background-position: 100%;
}

.btnLight
{
	color: var(--primary-text-color);
	background-color: var(--primary-light-color);
}
.btnLight:hover
{
	color: var(--primary-text-color);
	background-color: var(--primary-color);
}
.btnWhite
{
	color: var(--primary-color);
	border-color: var(--primary-text-color);
	border: 1px solid;
	background-color: var(--white);
}
.btnWhite:hover
{
	color: var(--primary-text-color);
	background-color: var(--primary-color);
}
.textPrimary
{
	color: var(--primary-color);
}
.textBlack
{
	color: black;
}
.backgroundTheme
{
	background-color: var(--primary-color);
	color: var(--primary-text-color);
}
.backgroundLight
{
	background-color: var(--primary-light-color);
	color: var(--primary-text-color);
}
.backgroundSecondary
{
	background-color: var(--secondry-color);
	color: var(--primary-color);
}
.backgroundWhite
{
	background-color: #fff;
	color: black;
}
.backgroundBlack
{
	background-color: #000;
	color: white;
}
.backgroundDark
{
	background-color: #222;
	color: white;
}
.halfGradient
{
	color: white;
	/* background: var(--custom-gradient); */
	background: linear-gradient(to bottom, var(--primary-color) 0 50%, black 50% 100%);
}
.backgroundImage
{
	background-image: url('../images/background_city_1.webp');
	background-size: cover;
}
.backgroundImage.fixed
{
	background-attachment: fixed;
}
.backgroundImage::before {
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background-color: rgb(255 255 255 / 65%);
}
.borderedBox
{
	border: 5px solid var(--secondry-color);
}
.borderedBox.radius
{
	border-radius: 12px;
}
.columnBackground
{
	min-height: 380px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.fw100
{
	font-weight: 100;
}
.fw200
{
	font-weight: 200;
}
.fw300
{
	font-weight: 300;
}
.fw400
{
	font-weight: 400;
}
.fw500
{
	font-weight: 500;
}
.fw600
{
	font-weight: 600;
}
.fw700
{
	font-weight: 700;
}
.fw800
{
	font-weight: 800;
}
.fw900
{
	font-weight: 900;
}
.fwBold
{
	font-weight: bold;
}
.fwBolder
{
	font-weight: bolder;
}
@font-face {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../icons/icomoon-new.woff2") format('woff2');
}
[class*="icon-new-"],
[class^="icon-new-"] {
    font-family: icomoon !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-new-possession:before {
    content: "\e92b";
}
.icon-new-floor-plan:before {
    content: "\e917";
}
.icon-new-apartments:before {
    content: "\e903";
}
.close {
	color: inherit;
    opacity: 0.7;
	text-shadow: none;
}
.close:hover {
	color: inherit;
	opacity: 1;
}
.main
{
	width: 100%;
	background-color: #f5f5f5;
	/* padding-right: 300px; */
}
.title {
    text-transform: uppercase;
    line-height: normal;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 7px;
}
.title span{
	background: var(--custom-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.title span.colorPrimary
{
	color: var(--primary-color);
}
.title span.colorSecondary
{
	color: var(--secondry-color);
}
.subTitleText {
    font-size: 13px;
    margin: -8px 0 20px;
}

.secondryTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary-color);
}

.maxWidthTextHeading
{
	width: max-content;
	max-width: 100%;
	padding: 5px 7px;
	color: white;
	margin-bottom: 25px;
    font-weight: 500;
    background: var(--primary-color);
}
.text
{
	margin-bottom: 25px;
}
.rightPromiseBox
{
	border-radius: 7px;
	overflow: hidden;
	font-size: 12px;
	background-color: #f4f4f4;
}
.rightPromiseBox img
{
	margin: auto;
	width: 50px;
	margin-bottom: 4px;
}
.promise:not(:last-child)
{
	margin-bottom: 10px;
}
.mainLeft
{
	width: 100%;
}
header
{
	width: 100%;
	display: block;
	z-index: 1000;
	top: 0;
	left: 0;
	position: fixed;
	/* padding: 5px 0 7px; */
	backdrop-filter: blur(5px);
	/* background: var(--secondry-color); */
	background: var(--black-gradient);
}
header .logo img
{
	width: 90px;
	min-width: 86px;
}
.logo a:hover
{
    color: white;
}

.fontSerif {
    font-family: serif;
}
.subLogoText {
    font-size: 12.8px;
}
.nav-item
{
	list-style: none;
}
.nav-link, .nav-link-Number {
    padding: 0;
    font-weight: 600;
    font-size: 14px;
    display: block;
    transition: 0.5s;
    text-transform: capitalize;
    color: var(--primary-text-color);
}
.nav-link-Number
{
	padding: 0 0.5rem;
}
.nav-link:hover,
.nav-link-Number:hover
{
	text-decoration: none;
	color: var(--primary-color);
}
.nav-link i
{
	font-size: 10px;
}
.navbar-toggler
{
	color: var(--primary-color);
}
.homeBannerImage {
    position: relative;
}

.bannerImageContainer {
    position: relative;
}
.bannerImage
{
	width: 100%;
	position: relative;
}
.bannerImage::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    background: black;
    /* background-image: var(--black-gradient); */
    background-position: 0 0;
    /* background-size: 400%; */
    animation: backgroundAnimate 40s linear infinite;
    opacity: 0.4;
}
.bannerImage > img, .bannerImage > video {
    width: 100%;
    height: 100%;
	object-fit: cover;
	aspect-ratio: 16/7;
}

.bannerCarouselSlide
{
    position: relative;
    color: white;
}

.bannerBox {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.bannerContentBox {
    text-shadow: 0 0 20px rgb(0 0 0 / 6%), 1px 1px 4px rgba(0,0,0,0.3);
}
.bannerContentBox .row{
    align-items: center;
}


.bannerContent {
    width: 100%;
	z-index: 2;
    /*text-align: center;*/
    /* left: 20px; */
    /* max-width: 500px; */
	/*position: absolute;*/
    /*top: 50%;*/
    transform: translateY(-50%);
}

.bannerContent {
    /* max-width: 450px; */
    margin: auto;
    font-size: 42px;
    font-weight: bold;
    /* border-radius: 10px; */
    padding: 12px 15px;
    /* box-shadow: 0 0 15px rgba(0,0,0,0.3), inset 2px 2px 7px rgba(255,255,255,0.3); */
    /* backdrop-filter: blur(5px); */
    transition: 0.5s;
    transition-delay: 0.4s;
    transform: translateY(-40px);
}

.slick-slide.slick-active .bannerContent{
	transition: 0.5s;
	transform: translateY(0);
}
.borderTopBottom
{
	width: max-content;
	margin: auto;
	border-width: 2px 0;
	border-color: white;
	border-style: solid;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
}
.bannerContent img
{
	width: 200px;
	margin: auto;
}

.iconsContainer
{
	transform: translateY(-45px);
	/* margin-top: -50px; */
}
.iconContainer
{
	padding: 7px 12px;
	display: flex;
	border-radius: 5px;
	align-items: center;
	color: white;
	background-color: black;
	margin-bottom: 12px;
	box-shadow: 0 3px var(--primary-color), 0 0 5px rgba(0,0,0,0.14);
}
.iconBox {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    /* padding-bottom: 1px; */
    border-radius: 40px;
    text-shadow: 2px 3px 5px #0000005e;
    color: var(--primary-text-color);
    background: var(--custom-gradient);
}
.iconContent {
    /* width: calc(100% - 45px); */
    padding: 5px 12px;
    margin: 7px;
}
.iconTitle {
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
}
.iconData {
    font-size: 18px;
    font-weight: 600;
    /*color: var(--primary-color);*/
}



.boxContainer {
    padding: 7px 16px;
    background: white;
    margin-bottom: 20px;
    box-shadow: 0 0 11px rgba(0,0,0,0.1);
}
.boxTitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 8px 0 12px;
}


.leadershipCarousel .slick-track {
    display: flex;
    align-items: stretch;
}

.leadershipImageContainer img {
    border-radius: 12px;
    box-shadow: 4px 4px var(--primary-color);
}
.leadershipName {
    font-size: 22px;
	font-weight: 600;
	line-height: 1;
    margin: 16px 0 5px;
}
.leadershipDesig
{
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--primary-color);
}
.leadershipDesc
{
	text-align: justify;
} 

.leadershipCard {
    z-index: 1;
    position: relative;
    padding: 16px;
    /* text-align: center; */
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2), 2px 2px 7px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #ebebeb, white, #f6f6f6);
}
.leadershipCard.vertical {
    margin: 8px;
    margin-top: 95px;
    height: 362px;
}
.leadershipCard.vertical .leadershipImage{
	max-width: 120px;
	width: 100%;
	margin: -85px auto 0;
	position: relative;
}
.leadershipImage img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}
.leadershipCard.vertical .leadershipImage::before{
	content: '';
	height: calc(100% + 10px);
	width: calc(100% + 10px);
	top: 50%;
	left: 50%;
	border-radius: 50%;
	position: absolute;
	z-index: -1;
	transform: translate(-50%, -50%);
	background: var(--custom-gradient);
}
.leadershipCard.vertical .leadershipDetails{}
.leadershipCard.vertical .leadershipName {
    font-size: 19px;
    margin: 16px 0 5px;
}
.leadershipCard.vertical .leadershipQual {
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 500;
}
.leadershipCard.vertical .leadershipDesig{}

.leadershipCard.vertical .leadershipDesc {
	font-size: 12px;
}
.leadershipCard.vertical .leadershipDesc p:last-child{
	margin: 0;
}

.imgContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.imgContainer {
    height: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.timeLine
{
	padding: 20px;
	padding-left: 0;
	margin: auto;
	width: 100%;
	z-index: 1;
	position: relative;
}
.timelineBox
{
	width: 100%;
	position: relative;
}
.timelineBox {
    padding-left: 0px;
}
.timelineBox .content {
    padding-left: 30px;
}
.timelineBox::after {
    content: '';
    height: 20px;
    width: 20px;
    top: 14px;
    left: 5%;
    border-radius: 20px;
    position: absolute;
    background: var(--custom-gradient);
    transform: translate(-50%,0);
    box-shadow: inset 2px 3px 6px rgb(255 255 255 / 42%), 2px 2px 5px rgba(0,0,0,0.3);
}
.timelineBox::before {
    content: '';
    top: 0;
    left: 5%;
    position: absolute;
    height: 100%;
    width: 2px;
    transform: translate(-50%,0);
    background-color: #e5e5e5;
}
.content
{
	padding: 0 0 30px;
	width: 100%;
	position: relative;
}
.content::after
{
	content: '';
	display: block;
	clear: both;
}
.box
{
	margin: auto;
	width: 90%;
	position: relative;
	text-align: center;
}
.box .content_heading {
    text-transform: capitalize;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 12%);
    width: calc(100% + 20px);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: var(--custom-gradient);
    position: relative;
    text-shadow: 0 0 5px rgb(0 0 0 / 8%);
}
.timelineBox .content_heading
{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
.content_heading::before
{
	content: '';
	height: 100%;
	width: 50px;
	top: 0;
	position: absolute;
	background-color: #836138;
	z-index: -1;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
.timelineBox .content_heading::before
{
	transform: skewY(-40deg);
	transform-origin: right;
	right: 0;
}
.content_text {
    text-align: left;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    padding: 10px 30px 10px;
    border-radius: 0 0 10px 12px;
    background: white;
}
.timelineBox .content_text
{
	margin-left: 25px;
}


#segments {
    background-image: url("../images/city.png");
    background-size: 74%;
    background-repeat: no-repeat;
    background-position: bottom center;
}

/*.segmentBox {*/
/*	padding-bottom: 16px;*/
/*}*/
.segmentCard {
    padding: 20px 16px;
    /* background: rgba(0,0,0,0.7); */
    /* border-radius: 20px; */
    /* backdrop-filter: blur(5px); */
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.3), inset 1px 1px 5px rgba(255,255,255,0.2);
}
.segmentTitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    /* background: var(--custom-gradient); */
    /* width: max-content; */
    /* -webkit-background-clip: text; */
    /*background-clip: text;*/
    /* -webkit-text-fill-color: transparent; */
}
.segmentDesc {
    font-size: 12px;
}
.segmentDesc p:last-child {
    margin: 0;
}
.segmentBrandBox {
    display: flex;
    align-items: center;
}
.sgementBrandLogo img {
    background-color: white;
    border-radius: 7px;
    max-width: 75px;
}
.segmentBrandDetail {
    width: calc(100% - 75px);
    padding-left: 16px;
}
.segmentBrandName {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}


/* 

reviewSection

*/
.reviewSection
{
    font-size: 1rem;
}
.googleLogo
{
    width: 100px;
    max-width: 100%;
    text-align: center;
    margin: auto;
}
.reviewStars
{
    width: max-content;
    display: flex;
    margin: 5px auto;
}
.reviewStars img
{
    width: 25px;
}
.reviewCard {
    padding: 15px;
    position: relative;
    line-height: 1.4;
    transition: 0.5s;
    border-radius: 4px;
    margin: 10px;
    background: linear-gradient(118deg, #f7f7f7, #ffffff);
    box-shadow: 1px 1px 7px 0px rgb(0 0 0 / 15%), 0px 0px 2px 0px rgb(0 0 0 / 5%);
}
.reviewCard:hover
{
    transform: translateY(-10px);
}
.reviewCard::before
{
    content: "";
    top: 10px;
    right: 10px;
    height: 28px;
    width: 28px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/googleG.svg");
    position: absolute;
}

.reviewProfile
{
    width: 45px;
    margin-right: 10px;
}
.reviewDate
{
    font-size: 12px;
    color: #666666;
}
.reviewCard .reviewStars
{
    padding: 5px 0;
    margin:0;
}
.reviewCard .reviewStars img
{
    width: 15px;
}
.verifiedTick
{
    margin-left: 5px;
}
.reviewText
{
    height: 90px;
    font-size: 12px;
    overflow-y: auto;
}
.reviewText::-webkit-scrollbar{
	width: 4px;
	height: 4px;
}
.reviewText::-webkit-scrollbar-track
{
	background: #E0E0E0;
}
.reviewText::-webkit-scrollbar-thumb
{
    width: 5px;
    background-color: #929292;
}





.highlightContainer {
    border-radius: 7px;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 12%);
}
.landMarkCardContainer li,
.clubBox li,
.highlightBox li {
	border-bottom: 1px solid;
    padding: 7px 0;
    font-size: 88%;
}
.landMarkCardContainer li:last-child,
.clubBox li:last-child,
.highlightBox li:last-child {
	border: none;
}
.landMarkCardContainer ul,
.landMarkCardContainer li
{
	list-style: none;
	font-size: 89%;
}
.highlightSectionImage img
{
	box-shadow: 7px 7px var(--primary-color);
}

.aminityCardContainer {
    position: relative;
	padding-bottom: 16px;
}
.aminityCardBox
{
	padding: 12px;
	border-radius: 4px;
	border: 1px solid var(--primary-color);
}
.aminityCardBox img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: auto;
}
.aminityTitle {
    font-size: 80%;
    text-align: center;
    margin-top: 7px;
    font-weight: 600;
}



.landMarkTitle {
	padding: 20px 0 12px;
	display: flex;
	align-items: center;
}
.landMarkTitle i{
	font-size: 24px;
	margin-right: 12px
}


.priceSliderContainer {
    padding: 0 10px;
}
.priceSlide {
	border: 4px solid var(--primary-color);
    border-radius: 5px;
    padding: 16px;
	background-color: white;
}
.flatSize span {
    display: inline-block;
    padding: 5px 7px;
	font-weight: 500;
	font-size: 90%;
	margin: 5px 0;
    border: 1px solid var(--secondry-color);
    background: #00b3ff2e;
}
.flatPriceDetails {
    text-align: center;
}
.flatDetailTitle {
    font-size: 68%;
}
.flatDetail {
    font-weight: 600;
}



.customHeading
{
	font-size: calc((2 - 1) * 1.2vw + 1rem);
}
.counterSectionContainer
{
	padding: 5px 0;
}
.counterSectionCard
{
	width: 100%;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.counterIcon
{
	display: flex;
	font-size: 35px;
	margin-right: 7px;
	align-items: center;
}
.counterTitle
{
	font-size: 14px;
	line-height: 1.2;
}
.counterPara
{
	font-size: 10px;
	line-height: 1.2;
}
/* .reImagineSlide
{
	text-align: center;
} */
.reImagineSlide .slick-list
{
	padding: 0 20px;
}
.reImagineSlideContainer {
    padding: 0 8px;
}
.reImagineTitle {
    font-size: 120%;
	font-weight: 500;
	margin-bottom: 6px;
}
.reImagineImg img {
    aspect-ratio: 16/9;
    object-fit: cover;
	margin: 0 0 12px;
	display: block;
}
/* .reImagineData {
    padding: 0 20px;
} */
.leadershipCarousel.slick-slider {
    padding: 0 42px;
}
.mainGallery .slick-track {
    padding: 63px 0;
}
.galleryImage {
    padding: 0 0 0 16px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
.galleryImage.slick-center {
    opacity: 1;
    z-index: 2;
    transform: scale(1.4);
    filter: drop-shadow(2px 4px 8px #0003);
}
.slickNav {
    top: 50%;
    width: 35px;
    height: 35px;
    z-index: 100;
    opacity: 0.9;
    display: flex;
    cursor: pointer;
    color: white;
    position: absolute;
    border-radius: 45px;
    align-items: center;
    transition: 0.5s;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 2px 2px 7px rgba(0,0,0,0.1), 0 0 5px rgba(0,0,0,0.1);
    background-color: #b1aeae;
}
.slickNav:hover
{
	opacity: 1;
	background-color: var(--primary-color);
}
.slickNav i
{
	user-select: none;
}
.navNext
{
	right: 12px;
}
.navPrev
{
	left: 12px;
}

.reImagineLiving .navNext
{
	right: -12px;
}
.reImagineLiving .navPrev
{
	left: -12px;
}
.paddedContainer
{
	position: relative;
}
.boxedSection {
    position: relative;
    z-index: 1;
}

/* .boxedSection .row
{
	margin: 0; 
}
*/


/* 
FAQ Sections
*/
.faqCard {
	position: relative;
    border-top: 1px solid var(--primary-color);
}
.faqCard:last-child {
	border-bottom: 1px solid;
}
.faqCard.open {
	margin-bottom: 12px;	
}
.faqQuestion {
	padding: 12px 7px;
	position: relative;
}
.faqQuestion::before,
.faqQuestion::after {
	content: '';
	width: 15px;
	height: 0.6px;
	top: 50%;
	right: 25px;
	transition: 0.3s;
	transform: translateY(-50%);
	background-color: var(--primary-color);
	position: absolute;
}
.faqQuestion::after {
	transform: translateY(-50%) rotate(90deg);
}
.faqCard.open .faqQuestion::after {
	transform: translateY(-50%) rotate(0deg);
}
.faqAnswer {
	display: none;
    padding: 7px 12px 7px 25px;
}
.faqCard.open .faqAnswer{
	display: block;
}
.faqLight .faqCard
{
	border-color: var(--primary-text-color);
}
.faqLight .faqQuestion::before,
.faqLight .faqQuestion::after {
	background-color: var(--primary-text-color);
}
.overviewImage
{
	height: 100%;
	margin: 0 0 20px;
	border-radius: 4px;
	object-fit: cover;
}
.galleyImages div[class*="col"]{
	padding: 0 3px;
}
.galleyImages a {
    display: block;
    margin: 7px 0 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-bottom: 58%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    border: 4px solid white;
    border-radius: 6px;
}
.galleyImages a::before
{
	content: '';
	height: 100%;
	width: 100%;
	z-index: 1;
	top:0;
	visibility: hidden;
	position: absolute;
	opacity: 0;
	transition: 0.3s;
	background-color: rgba(0,0,0,0.6);
}
.galleyImages a::after
{
	content: '\f065';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	z-index: 2;
	height: 45px;
	width: 45px;
	top: 50%;
	opacity: 0;
	transition: 0.5s;
	visibility: hidden;
	padding-bottom: 2px;
	transform: translateY(0%);
	line-height: 1;
	display: flex;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
	position: absolute;
	color: var(--primary-text-color);
	background-color: var(--primary-color);
}
.galleyImages a:hover::before
{
	visibility: visible;
	opacity: 1;
}
.galleyImages a:hover::after
{
	visibility: visible;
	opacity: 1;
	transform: translateY(-50%);
}
.galleyImages a img {
	top: 50%;
    left: 50%;
    height: 100%;
    transition: 0.5s;
    object-fit: cover;
    transform: translate(-50%, -50%);
    position: absolute;
}
.galleyImages .galleryImageText {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    padding: 5px 12px;
    color: white;
    font-size: 85%;
    font-weight: 600;
}
.mainGallery .galleyImages a img {
	width: 100%;
}
.galleyImages a:hover img
{
	transform: translate(-50%, -50%) scale(1.2);
}
.leadForm
{
	width: 100%;
	position: relative;
}
.leadForm .para
{
	padding-top: 4px;
	font-size: 80%;
}
.ourPromise
{
	text-align: center;
	margin-top: 16px;
	justify-content: center;
	border-top: 1px solid #dfdfdf;
}
.ourPromise .heading
{
	margin: 10px 0;
	text-transform: uppercase;
}
.promiseContainer
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.promiseContainer img
{
	width: 50px;
	margin:0 auto 5px;
}
.promiseContainer .promise
{
	padding: 10px;
	font-size: 12px;
	margin: 0;
}
.promiseContainer .promise p
{
	margin-bottom: 5px;
}
.adsPopup a
{
	font-size: 20px;
	color: #000;
}
.adsPopup a:hover
{
	text-decoration: none;
	color: var(--primary-color);
}
.sl-wrapper .sl-close
{
	color: #dfdfdf;
	outline: none;
}
.sl-wrapper .sl-navigation button
{
	color: #dfdfdf;
	outline: none;
}
.sl-overlay
{
	background-color: #000000;
}
.sl-wrapper .sl-counter
{
	color: white;
}
iframe
{
	width: 100%;
	display: block;
	max-width: 100%;
}
.videoWrapper iframe
{
	width: 100%;
	min-height: 300px;
}
.mapSection iframe
{
	width: 100%;
	min-height: 300px;
}
.contactForm input[type="submit"]
{
	margin: 0;
}
.contactForm
{
	padding: 10px 0;
}
.contactFormInput {
    width: 100%;
}
.contactFormInput input,
.contactFormInput textarea
{
	padding: 7px 10px;
	width: 100%;
	display: block;
	border-radius: 3px;
	margin-bottom: 15px;
	border: 1px solid #e5e5e5;
}
.contactFormInput.rounded input,
.contactFormInput.rounded textarea
{
	border-radius: 60px;
	padding: 7px 20px;
}
.footerPara
{
	font-size: 80%;
	text-align: center;
}
.copyRight
{
	font-size: 10px;
	text-align: center;
}
.preloader
{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100000;
	background: var(--black-gradient);
}
.preloader::before
{
	content: "";
	height: 30px;
	width: 30px;
	margin-bottom: 5px;
	position: relative;
	border-radius: 50%;
	animation: pulse 1s ease infinite;
	background: var(--custom-gradient);
}
.preloader::after
{
	content: "Loading";
	color: var(--primary-color);
}
.thankYouBox {
    padding: 20px;
    display: flex;
    background-position: center;
    background-size: cover;
    background-image: linear-gradient(0deg,#ffffff9e, transparent),url(../images/banner_2.webp);
    min-height: 84vh;
    align-items: center;
    justify-content: center;
}
.thankYouContent {
    width: 100%;
    max-width: 650px;
    background-color: #ffffffe6;
    padding: 30px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 7px;
}
.thankYouText {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}
.footerTitle {
    text-align: center;
	margin-bottom: 12px;
}
.footerData {
    color: var(--primary-color);
    font-weight: 700;
	font-size: 14px;
    text-align: center;
}
.footerLink {
	display: block;
    width: 100%;
    overflow: hidden;
	margin-bottom: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.footerLink:hover a{
	transition: 0.4s;
	color: white;
}
.socialIcon {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
	justify-content: center;
}
.borderedCols div[class*="col"]
{
	border-right: 1px solid rgba(255,255,255,0.2);
}
.borderedCols div[class*="col"]:last-child
{
	border-right: 0;
}



.sideStickyBtn {
    top: 50%;
    left: 0;
    color: black;
    position: fixed;
    font-size: 12px;
    padding: 9px 12px;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    z-index: 103;
    border-radius: 7px 7px 0 0;
    font-weight: 600;
    background: var(--custom-gradient);
    transform-origin: bottom left;
    transform: rotateZ(90deg) translateX(-50%);
    box-shadow: 2px -1px 6px rgba(0,0,0,0.1);
}
.sideStickyBtn:hover
{
	color: white;
	background: black;
}









.whatsappIcon, .callIcon
{
	height: 55px;
    width: 55px;
    bottom: 25px;
    right: 25px;
    z-index: 100;
    position: fixed;
}
.callIcon
{
	bottom: 100px;
}
.whatsappIcon img,
.callIcon img
{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
@media only screen and (max-width: 1200px)
{
	.nav-link,
	.nav-link-Number
	{
		padding: 7px 15px;
		text-align: center;
	}
	
    .leadershipCard.vertical {
        height: 432px;
    }
}
@media only screen and (max-width: 991px)
{
    /* .bannerContent
    {
        display: none;
    } */
	.main
	{
		padding: 0;
	}
	.mainRight
	{
		display: none;
	}
}
@media only screen and (max-width: 768px)
{
	.bannerContent p {
		font-size: 26px;
		max-width: 74%;
	}
	/* .bannerImage > img {
		min-height: 82vh;
	} */
	.bannerContent {
        font-size: 32px;
    }
    .iconTitle {
        font-size: 20px;
    }
    .iconData {
        font-size: 14px;
    }
	
    .galleryImage.slick-center {
        opacity: 1;
        z-index: 2;
        transform: scale(1.1);
        filter: drop-shadow(2px 4px 8px #0003);
    }
	.timelineBox .content
	{
		padding-left: 0px;
	}
	.timelineBox
	{
		padding-left: 10px;
	}
	.timeLine
	{
		padding-left: 22px;
	}
	.timelineBox::after
	{
		left: 0;
	}
	.timelineBox::before
	{
		left: 0;
	}
	.bannerContent p {
		font-size: 22px;
		max-width: 74%;
	}
	.bannerImage > img {
		min-height: 82vh;
	}
}
@media only screen and (max-width: 576px)
{
	
	header .logo img {
		width: 60px;
		min-width: unset;
	}
	.hideInMobile
	{
		display: none;
	}
	div#myNavMenu {
		padding: 0;
	}
	.downloadBtn
	{
		flex-wrap: wrap;
		min-width: unset;
		max-width: 100%;
	}
	.bannerForm {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 350px;
		max-width: 95%;
		transform: translate(-50%, -50%);
	}
	.bannerForm form {
		width: 100%;
		max-width: unset;
	}
	
    .leadershipCard.vertical {
        height: unset;
    }
    .whatsappIcon, .callIcon
    {
        height: 50px;
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
	.callIcon
	{
		bottom: 70px;
	}
}

@keyframes pulse
{
	from
	{
		opacity: 0;
		transform: scale(0);
	}
	to
	{
		opacity: 1;
		transform: scale(1.0);
	}
}

@keyframes backgroundAnimate
{
	0%, 100%
	{
		background-position: 0;
	}
	50%
	{
		background-position: 100%;
	}
}



/* 
codes
*/
.overview_style_1 {
    display: block;
    padding: 10px;
    margin: 15px 0;
}
.overview_style_1 h2 {
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 24px;
    text-align: right;
    color: #cd9f11;
    border-bottom: solid 1px #ccc;
}
.overview_style_1 p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    text-align: right;
    color: rgb(255, 255, 255, 0.5);
}

#floorPlan .nav {
    justify-content: center;
    border: none;
    margin-bottom: 25px;
}
#floorPlan .nav-tabs .nav-link {
    border-radius: 0;
    font-size: 18px;
    color: #fff;
	padding: 6px 12px;
    margin: 0 15px;
}
#floorPlan .nav-tabs .nav-item.show .nav-link, #floorPlan .nav-tabs .nav-link.active {
    background: #d3d3d3;
    color: #000;
}

.item {
	background: #2f2f2f;
    display: block;
	text-align: center;
    padding: 25px 0;
	margin: 5px;
    color: #d6d6d6;
}
.item img {
    width: 55px;
	height: 55px;
	object-fit: contain;
    margin: 0 auto 7px;
    text-align: center;
    display: block;
}
.item p{
	margin-bottom: 0;
}

.specificationSlider a {
    transition: 0.5s;
    color: white;
}
.specificationSlider a:hover {
    color: var(--primary-color);
}

.modal.fade.bd-example-modal-lg.spek-modal .modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.fade.bd-example-modal-lg.spek-modal .modal-title img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}



.reachUsFormContainer {
    position: fixed;
    top: 50%;
    right: 0;
    color: white;
    font-size: 13px;
    transition: 0.5s;
    background-color: #0000007a;
    max-width: 350px;
    padding: 10px 20px;
    /* border-radius: 7px; */
    z-index: 104;
    backdrop-filter: blur(6px);
    /* transform: translateY(-50%); */
    box-shadow: 0 0 6px rgb(0 0 0 / 24%), 2px 2px 4px rgba(0,0,0,0);
    transform: translate(100%, -50%);
}

.reachUsFormContainer.active
{
    box-shadow: 0 0 6px rgb(0 0 0 / 30%), 2px 2px 4px rgba(0,0,0,0.3);
    transform: translate(0%, -50%);
}
.reachUsForm
{
    position: relative;
}

/* 
.reachUsForm input {
    border: none;
    outline: none;
    background: white;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    padding: 7px 10px;
    font-family: inherit;
} */

.reachUsForm input[type="submit"]
{
    margin: auto;
    margin-top: 12px;
}
.reachUsPopBtn {
    background-color: #cd9c29;
    position: absolute;
    top: 20%;
    right: 100%;
    transform: rotate(-90deg) translate(0, -49%);
    transform-origin: right;
    width: max-content;
    padding: 5px 12px;
    color: white;
    /* font-weight: bold; */
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
    box-shadow: 2px -2px 5px rgba(0,0,0,0.3);
    /* border-radius: 7px 7px 0 0; */
}

@media (max-width: 575px)
{
    .reachUsFormContainer {
        max-width: 280px;
    }
    .reachUsForm input {
        font-size: 0.9rem;
    }
}
