@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

:root {
	--primary-color: #245a4e;
	--dark-rose: #134c57;
	--green: #2b3d2d;
	--primary-grad: linear-gradient(45deg, #b76e78, #d998a3, #d8a2a9, #f7d5d8, #efd1d5, #ebbec4, #d8a2a9, #b76e78);
}

body {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	font-size: 16px;
}

* {
	padding: 0;
	margin: 0;
}
.text-white {
    color: #ffd187 !important;
}
img {
	width: 100%;
	object-fit: cover;

}

.padding {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

/*header*/
.header {
	width: 100%;
	top: 0;
	z-index: 999;
	padding:  0;
	transition: all 300ms ease-in-out;
	background: #fff;
}

.logo {
	width: 90px;
	padding: 5px;
	position: relative;
	left: 0;
	/* background-color: var(--secondary-color); */
	min-height: 1px;
	transition: all 300ms ease-in-out;
	z-index: 2;
}

.logo1 {
	width: 181px;
}

.header.fixed .logo {
	width: 90px;
}

/* .header.fixed .logo img{
	padding: 0 10px;
  } */



.header .nav>ul {
	display: flex;
	align-items: center;
	position: relative;
	font-variant: all-petite-caps;
	margin: 0;
}

.header .nav>ul>li>a {
	color: var(--body-color);
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0 10px;
	position: relative;
	transition: all 300ms ease-in-out;
	padding: 1rem;
	z-index: 1;
	color: #064da1;
	font-size: 1.3rem;
}

.header .nav>ul>li:hover>a {
	color: #000000;
	text-decoration: none;
}

.header .nav ul li a i {
	font-size: 75%;
}

.header .nav>ul>li>a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 1px solid #fff;
	transition: all 300ms ease-in-out;
	z-index: -1;
}

.header.fixed .nav>ul>li>a::before {
	border-bottom-color: var(--primary-color);
}

.header .nav ul li>a.active::before,
.header .nav ul li:hover>a::before {
	width: 100%;
}

.header .nav ul li .dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background-color: #fff;
	border-top: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	translate: 0 20px;
	pointer-events: none;
	transition: all 300ms ease-in-out;
}

.header .nav ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
	pointer-events: all;
}

.header .nav ul li .dropdown.dropdown-sm {
	width: max-content;
	padding: 10px 20px;
}

.header .nav ul li .dropdown.dropdown-sm ul li a {
	font-size: 15px;
	display: block;
	color: var(--primary-color);
	padding: 10px 0;
	border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.header .nav ul li .dropdown.dropdown-sm ul li:last-of-type a {
	border-bottom: none;
}

.header .nav ul li .dropdown.dropdown-sm ul li a.active,
.header .nav ul li .dropdown.dropdown-sm ul li a:hover {
	color: var(--secondary-color);
}

.header .nav ul li .dropdown.dropdown-sm ul li a.btn.disabled {
	font-size: 15px;
	border-radius: 0;
	border: none;
	line-height: normal;
}

.header .nav ul li .dropdown .drop-section {
	display: flex;
	justify-content: center;
	border-right: 1px solid rgb(0 0 0 / 20%);
}

.header .nav ul li .dropdown .drop-section:last-child {
	border-right: none;
}

.header .nav ul li .dropdown .drop-section h5 {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1rem;
}

.header .nav ul li .dropdown .drop-section ul {
	padding-left: 15px;
}

.header .nav ul li .dropdown .drop-section li {
	margin: 8px 0;
}

.header .nav ul li .dropdown .drop-section li::marker {
	color: var(--primary-color)
}

.header .nav ul li .dropdown .drop-section li a {
	color: #828282;
	display: block;
	font-weight: 600;
	font-size: 13px;
}

.header .nav ul li .dropdown .drop-section li a:hover {
	color: var(--primary-color);
}

.header.fixed .menuBtn span::before {
	background: var(--primary-color);
}

.menuBtn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	position: relative;
	cursor: pointer;
}

.header.fixed .menuBtn {
	width: 40px;
	height: 40px;
}

.menuBtn div {
	position: relative;
	width: 50%;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	transition: all 300ms ease-in-out;
}

.menuBtn span {
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/* Designed & Developed by Sami from ECIS */

.menuBtn span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	transform-origin: center center;
	transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
	-webkit-transform: rotate(45deg) translate(4px, 4px);
	transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
	right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
	-webkit-transform: rotate(-45deg) translate(4px, -5px);
	transform: rotate(-45deg) translate(4px, -5px);
}

.menuContainer {
	position: fixed;
	inset: 0;
	padding-top: 61px;
	z-index: 996;
	display: none;
}

.menuContainer .inner {
	padding: 5px 15px;
	width: 200px;
	margin-top: 36px;
	background: var(--primary-color);
	background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
	box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
	transition: all 300ms ease-in-out;
}

.header.fixed+.menuContainer {
	padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
	visibility: visible;
}

.menuContainer a {
	color: #fff;
	transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a {
	border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a {
	padding: 10px 0;
	font-weight: 700;
	display: block;
	position: relative;
}

.mainMenu li.active>a,
.mainMenu li:hover>a {
	padding: 10px;
	background-color: #fff;
	color: var(--primary-color);
}

.mainMenu a i {
	font-size: 75%;
	position: absolute;
	right: 0;
	top: 50%;
	line-height: 0;
	transition: all 300ms ease-in-out;
}

.mainMenu li.active>a i,
.mainMenu li:hover>a i {
	right: 10px;
}

.mainMenu li.active>a i {
	transform: rotate(540deg);
}

.menuDrop {
	padding: 5px 15px;
	margin-bottom: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	display: none;
}

.mainMenu ul ul li:last-child a {
	border-bottom: 0;
}

/*header*/

.readmore {
	width: 100%;
	margin-top: 2rem;
}

.readmore.d-flex {
	gap: 2px;
}

.readmore .button {
	position: relative;
	z-index: 1;
	display: table;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 1rem;
	min-width: 150px;
	border-radius: 50px;
	color: #000 !important;
	background-color: transparent;
	border: 1px solid #f0792f;
	text-align: center;
	text-transform: uppercase;
	transition: all ease-in-out 0.3s;
	background-color: #ffd187 !important;
}

.readmore button {
	width: 100%;
	background: none;
}

.readmore .button:hover {
	color: #fff !important;
	background:#064da1 !important;
	border-color: transparent;
}

.readmore .white.button {
	color: var(--primary-color);
	background: #ffffff;
	border-color: transparent;
}

.readmore .button.mw-auto {
	min-width: 1px;
}

.readmore .button.text-white {
	border-color: #fff;
}

.readmore .button.text-white:hover {
	color: var(--primary-color) !important;
	background-color: #fff;
	border-color: transparent;
}

.readmore .button.solid.white:hover,
.readmore .button.solid {
	background-color: var(--primary-color);
	color: var(--light);
	border: none;
}

.readmore .button.solid.white,
.readmore .button.solid:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border: none;
}

.readmore .button.solid.white {
	background: #064da1 !important;
	color: #fffafa !important;
}

.readmore .button.bg-secondary {
	border: none;
}

.readmore .button.bg-secondary:hover {
	background-color: var(--primary-color) !important;
}

/* banner */
.hero {
	margin-top: 60px;
}

.banner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: calc(100% - 100px);
}

.banner .carousel-item {
	position: relative;

}

.banner .carousel-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.16) !important;
	z-index: 99;
}

.bannerText {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
	color: #fff;
}

.bannerTagline {
	margin-bottom: 2rem;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1;
	color: var(--body-color);
	text-transform: uppercase;
	text-shadow: 1px -1px 0 var(--primary-color), -1px 1px 0 var(--primary-color), -1px -1px 0 var(--primary-color), 1px 1px 0 var(--primary-color), 0 0 10px rgb(0 0 0 / 15%);
}

.bannerTagline span {
	font-size: 1.5rem;
	letter-spacing: 2px;
	display: table;
	padding: 5px 10px;
	background: url(../images/texture.png) var(--primary-color);
	text-shadow: none;
}

.bannerText {
	z-index: 99;
	transition: all 300ms ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	bottom: 50%;
	left: 50%;
	text-align: center;
	width: 57%;
}

.bannerText .h1 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: 0 1px 2px #000;
}

.bannerText h4 span {
	text-shadow: 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff,
		-1px -1px 0 #fff;
}

.bannerSideBox {
	z-index: 3;
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: linear-gradient(45deg, var(--primary-color), #154a6d);
	color: var(--body-color);
}

.bannerSideBox .inner {
	padding: 1rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.bannerLocation {
	text-transform: uppercase;
	font-weight: 800;
	position: absolute;
	bottom: 10px;
}

.bannerSideBox .sector128 {
	text-transform: uppercase;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px dashed rgb(0 0 0 / 80%);
}

.bannerSideBox .sector128 img {
	width: 50px;
	margin: 0 auto 1rem;
}

.bannerSideBox .sector128 .d-flex {
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.bannerSideBox .sector128 h2 {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 1px;
}

.bannerSideBox .sector128 h6 {
	padding-left: 10px;
	border-left: 4px double rgb(0 0 0 / 50%);
}

.bannerSideBox .bannerBHK {
	width: 100%;
	text-transform: uppercase;
}

.bannerBHK h1 {
	font-weight: 800;
	font-size: 2rem;
	margin-bottom: 0;
	line-height: 1;
	color: #fff;
}

.bannerBHK h4 {
	font-weight: 800;
	line-height: 1;
	display: block;
	font-size: 18px;
	margin-bottom: 1.1rem;
	color: #fff;
}

.bannerBHK h3 {
	font-weight: 800;
	font-size: 1.5rem;
	padding: 10px 1rem;
	background-color: #fff;
	color: var(--body-color);
	line-height: 1;
}

.bannerSideBox form {
	padding: 1.5rem;
	background-color: #fff;
}

/* banner */


.overview h5 {
	font-family: OPTIMA;
	margin-bottom: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
}

.overview-sept {
	height: 170px;
	width: 1px;
	background: #eec481;
	margin: auto;
	position: relative;
}

.overview-sept::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #eec481;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	top: 50%;
}

/* overview */

.configuration {
	display: flex;
	border-top: 1px solid #c8cacb;
	border-bottom: 1px solid #c8cacb;
	background: url(../images/bg1.jpg);
	color: #fff;
}

.configuration-box {
	border-right: 1px solid #c8cacb;
	padding: 1em 0;
	flex: auto;
	text-align: center;
	margin: 10px 0;
	/* background: #ccc; */
}

.configuration-box:nth-last-child(1) {
	border-right: none;
}

.configuration-box p {
	text-align: center;
}

/* overview */
.highlights,
.about-developers {
	background: #fff;
	position: relative;
}
#overview, .locationadvantages, .about-developers
{
	position: relative;
	
}
.highlights::before, #overview::before, .locationadvantages::before, .about-developers::before {
    content: '';
    position: absolute;
    width: 1000%;
    right: 0;
    background: url(../images/bg.jpg) fixed;
    top: 0;
    bottom: 0;
    /* z-index: -1; */
    opacity: .2;
}
.highlights .heading h2,
.about-developers .heading h2,
.about-developers p {
	color: #000;
}

.amenities-m {
	background: url(../images/bg.jpg);
	position: relative;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

.amenities-m::before {
	content: '';
	position: absolute;
	width: 1000%;
	right: 0;
	background: url(../images/bg1.jpg);
	top: 0;
	bottom: 0;
	z-index: -1;
}

.amenities-img {
	width: 44px;
	margin: auto;
	/* filter: invert(1); */
}

.amenities-box {
	padding: 10px 7px;
	margin: 6px;
	align-items: center;
	background: #ffffff;
	color: #000;
	min-height: 78px;
	border: 2px solid #fed04e;
}

.amenities-box p {
	color: #000000;
	line-height: 1.1;
	margin-top: 8px;
	width: 100%;
	text-align: center;
	min-height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
}



.highlight_section ul li {
	margin: 10px 0;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.3px;
	background: url(../images/bg1.jpg);
	margin: 10px 6px;
	list-style-type: none;
	position: relative;
	color: #fff;
	display: flex;
	width: 31%;
	display: inline-block;
	vertical-align: top;
}

.highlight_section li .count {
	background: rgb(238 196 129);
	align-items: center;
	padding: 5px;
	width: 26px;
	position: absolute;
	top: -13px;
	text-align: center;
	font-size: 12px;
	height: 20px;
	line-height: 10px;
	bottom: auto;
	min-height: 21px;
	color: #245a4e;
	font-weight: 600;
}

.highlight_section li .count img {
	filter: invert(01);
}

.highlight_section ul li span {
	padding: 8px 5px;
	min-height: 81px;
	display: flex;
	align-items: center;
	width: 100%;
}

.highlight_section .right_col li .count {
	right: -25px;
	left: unset;
}

.heading {
	text-align: center;
	z-index: 9;
	position: relative;
}

.heading h2 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 2rem;
	border-bottom: 1px solid;
	display: -webkit-inline-box;
	letter-spacing: 3px;
}

/* Journey */
.journeyWrapper {
	background: url(../images/bg1.jpg);
	color: #fff;
}

.journeyContainer {
	position: relative;
	z-index: 1;
	margin-top: 10px;
}


.journeyContainer1::-webkit-scrollbar {
	width: 10px;
}

/* Track */
.journeyContainer1::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
.journeyContainer1::-webkit-scrollbar-thumb {
	background: #b19a5a;
}

.journeyContainer::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 1px solid rgb(255 255 255 / 82%);
	z-index: -1;
}

.journeyBox {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14px 0;
}

.journeyBox .jyearBox {
	max-width: 40%;
	flex: 0 0 40%;
	display: flex;
	justify-content: flex-end;
}

.journeyBox.flex-row-reverse .jyearBox {
	justify-content: flex-start;
}

.journeyBox .jyear {
	height: 36px;
	width: 76px;
	border-radius: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #ffd187;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
	transition: all 300ms ease-in-out;
	color: #000;
}

.journeyBox.active .jyear {
	background-color: #fff;
	color: inherit;
}

.journeyBox .jyear h4 {
    margin-bottom: 0;
    font: 400 18px "Cinzel", serif;
    color: #000;
}

.journeyBox .jconnector {
	max-width: 20%;
	flex-basis: 20%;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.journeyBox .jconnector::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	border-bottom: 1px solid rgb(255 255 255);
	z-index: -1;
}

.journeyBox .jconnector span {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 3px solid var(--lightblue);
	box-shadow: 0 0 0 2px rgb(0 0 0 / 15%);
}

.journeyBox .jtext {
	max-width: 40%;
	flex-basis: 40%;
	padding-left: 20px;
	border-left: 1px solid rgb(255 255 255 / 82%);
}

.journeyBox.flex-row-reverse .jtext {
	padding-left: 0px;
	padding-right: 20px;
	border-left: none;
	border-right: 1px solid rgb(255 255 255 / 82%);
	text-align: right;
}

.journeyBox .jtext p {
	margin-bottom: 0;
	font-size: 18px;
}

/* Journey */


.disclaimer {
	background: url(../images/bg1.jpg);
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 0 5%;
}

.form-col {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	min-height: 264px;
	align-items: normal;
}

.form-col .title {
	flex: 0 0 100px;
	max-width: 100px;
	background: #064da1;
	color: #fff;
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(180deg);
	font-size: 29px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
}

.form {
	width: calc(100% - 100px);
	padding: 25px;
	background: url(../images/bg1.jpg);
	display: flex;
	align-items: center;
}



.enquiry {

	width: 290px;
	float: right;
	font-weight: 700;
	background: #fff;
	margin-top: 0;
	text-align: left;
	padding: 12px;
	position: absolute;
	right: 4px;
	top: 50%;
	z-index: 99;
	transition: all 300ms ease-in-out;
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	color: #000;
}

.head-had {
	background: url(../images/bg1.jpg);
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 9px 3px;
	margin-bottom: 15px;
}

.head-had h2 {
	font-size: 15px;
	font-weight: 600;
}

.lableLine {
	width: 120px;
	height: 2px;
	background-color: #f0792f;
	margin: 15px auto;
}

.head-had p {
	font-size: 12px;
	font-weight: 600;
	text-transform: math-auto;
	line-height: 15px;
}
.font-weight-bolder {
    color: #eec481;
}
.btn-close {
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background-color: var(--primary-color);
	color: #fff;
}

/* modal */
.priceBox {
	max-width: 200px;
	position: absolute;
	left: 0%;
	bottom: 0;
	z-index: 9;
}

.priceBox1 {
	position: absolute;
	left: 0%;
	bottom: 67px;
	z-index: 9;
	background-color: var(--dark-rose);
	width: 306px;
	padding: 15px;
	clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.priceBox .inner {
	width: max-content;
	background-color: #fff;
	color: var(--dark-rose);
	padding: 10px 3rem 10px 1rem;
	clip-path: polygon(0 0, 89% 0, 98% 100%, 0 100%);
	border: 4px solid #f0792f;
}

.priceBox .inner .h3 {
	font-weight: 900;
	line-height: 1;
}

.priceBox .inner h6 {
	font-weight: 900;
	text-transform: uppercase;
}

.modal .modal-body {
	padding: 20px;
}

.modal .projectName img {
	max-width: 150px;
}

.modal .form_price {
	width: 100%;
	margin: 20px auto;
	font-size: 14px;
}

.modal .submit_btn {
	min-height: 42px;
	padding: 8px;
}

.mobile-section .icon {
	width: 18px;
	height: 18px;
}

.mobile-section .btn {
	padding-bottom: 5px;
}

.mobile-section {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	background: #ffd187;
	box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
	z-index: 99;
	text-transform: uppercase;
	border-radius:0;
}

.mobile-section .btn .icon_bg {
	height: 40px;
	width: 40px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	margin-top: -10px;
	margin-bottom: 5px;
	-webkit-box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
	-moz-box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
	box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
	box-shadow: 0 1px 3px #000;
}

.mobile-section .btn:hover .icon_bg {
	background: #144564;
	color: #fff;
}

.mobile-section .btn:hover .icon {
	filter: invert(1);
}

.mobile-section .btn {
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.5px;
	font-weight: 500;
	max-width: 33.33%;
	flex: 0 0 33.33%;
	padding: 0;
	min-height: auto;
	color:#14392d;
}

.menuContainer {
	position: fixed;
	top: 0;
	width: 300px;
	right: 0;
	bottom: 0;
	height: 100%;
	overflow: auto;
	background-color: #fff;
	padding: 70px 20px 20px;
	display: none;
	z-index: 9999;
}

.menuContainer ul li a {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray);
	padding: 10px;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.galImg {
	position: relative;
	isolation: isolate;
    margin: 5px;
}

.galImg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.75));
	z-index: 1;
	pointer-events: none;
}

.galHead {
	margin-bottom: 30px;
}

.galBtn {
	margin: 0 5px;
	filter: grayscale(1);
}

.galBtn:hover,
.galBtn.active {
	filter: grayscale(0);
}

.amenities-slide .gal-caps {
	position: absolute;
	bottom: 10px;
	color: #fff;
	font-weight: 800;
	left: 5px;
    text-align: center;
    width: 97%;
}

.location {
    border: 2px solid #fff;

}

.bgstar {
	position: relative;
	z-index: 1;
}

.reraform
{
	width: calc(100% + 24px);
    margin: 12px 0 -13px -12px;
    background:#064da1;
    color: #ffd187;
    text-align: center;
    font-size: 13px;
    display: block;
    padding: 3px;
}
.bgstar-abs {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 70%;
	text-align: center;
}
.locationadvantages
{
	background: #fff;
	color: #000;
    text-align: center;
}
.locationadvantages .w-lg-75
{
	width: 75%;
	margin: auto;
}
.reference-image
{
	position: absolute;
    bottom: 2px;
    font-size: 12px;
    z-index: 99;
    color: #fff;
    right: 3px;
}
.contact-box
{
    background: url(../images/bg1.jpg);
    margin-top: 3rem;
    align-items: center;
    padding: 8px;
    max-width: 757px;
    text-align: center;
    justify-content: center;
    margin: auto;
    margin-top: 3rem;
    border-radius: 2px;
    box-shadow: 0 0 3px #000;
}
.contact-details
{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	/* justify-content: center; */
}
.contact-details-box {
    display: flex;
    gap: 20px;
}
.contact-details-box a{
    color: #ffffff;
    padding: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.22rem;
    text-decoration: none;
    line-height: 1;
}
.contact-details-box a:hover{
    color:#ff8c44;
    transition: all 300ms ease-in-out;	
}
.contact-details hr
{
	width: 1px;
	background: #fff;
	height: 27px;
}
/* custom swiper controls */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: url(../images/arrow-left.png) center / 16px no-repeat var(--secondary);
  transition: all 300ms ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  transform: rotate(-180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.footeraddress
{
	box-shadow: 0 0 2px #ffd187;
	padding: 10px;
	margin-bottom: 20px;
	vertical-align: middle;
}
.footeraddress p b
{
	color:#ffd187;
}
.footeraddress p
{
	margin: 0;
	font-size: 15px;
}
.button-top {
	background: rgb(70 70 70 / 32%);
	position: fixed;
	right: 20px;
	bottom: -40px;
	color: #ffffff;
	font-size: 13px;
	opacity: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	z-index: 99;
	cursor: pointer;
	transition: all 300ms ease-in-out;
    border: 1px solid #ccc;
  }
  
  .button-top:hover {
	background: var(--primary-color);
  }
  .journeyContainerheight
  {
	
    max-height: 510px;
    overflow: auto;
  }
@media (min-width: 1350px) {
	.container {
		max-width: 1300px;
	}
}
@media (max-width: 1200px) {
	.header .nav>ul>li>a {
		font-weight: 600;
		gap: 0 5px;
		padding: 8px;
		font-size: 1.13rem;
	}
	.contact-details-box a{
		font-size: 1rem;
	}
	.logo {
		width: 76px;
	}
	.logo1 {
		width: 165px;
	}
}
@media (max-width: 1024px) {
	.header .nav>ul>li>a {
		font-weight: 600;
		gap: 0 5px;
		padding: 10px;
		font-size: 1.1rem;
	}
	.heading h2 {
		margin-bottom: 1rem;
		letter-spacing: 1px;
		font-size: 1.52rem;
	}
	.bannerText .h1 {
		font-size: 1.22rem;
	}
	.swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px 
}
.highlight_section ul li {
    width: 47%;
}
.bannerText {
    left: 35%;
}
}

@media (max-width:900px) {
	body {
		font-size: 14px;
	}
	.bannerText {
		bottom: auto;
		top: 50%;
	}
	.bannerText {
		left: 50%;
	}
	.reraform {
		width: 100%;
		margin: 12px 0 0px 0px;
	}
	.enquiry {
		width: 100%;
		margin-top: 0;
		text-align: left;
		padding: 20px;
		border-radius: 0;
		position: static;
		-webkit-transform: none;
		transform: none;
	}
	.bgstar {
		min-height: 60vh;
	}
	.bgstar img
	{
		height: 60vh;
	}
	.banner {
		height: 60vh !important;
	}


	.heading h2 {
		font-size: 1.32rem;
	}

	.logo1 {
		width: 166px !important;
		height:auto;
	}

	.h3,
	h3 {
		font-size: 1.25rem;
	}

	.h4,
	h4 {
		font-size: 1.1rem;
	}
	.locationadvantages .w-lg-75 {
		width: 100%;
	}

}

@media (max-width:500px) {
	.configuration {
		flex-wrap: wrap;
	}

	.configuration-box {
		width: 50%;
		margin: 0 0;
	}

	.configuration-box:nth-last-child(3) {
		border-right: none;
		border-bottom: 1px solid #c8cacb;
	}

	.configuration-box:nth-last-child(4) {
		border-bottom: 1px solid #c8cacb;
	}

	.bannerText {
		width: 90%;
		left: 5%;
    -webkit-transform: none;
    transform: none;
	}

	.bannerText .heading {
		text-align: center !important;
	}

	.bannerText .h4,
	h4 {
		font-size: 1.51rem !important;
	}

	.bannerText .readmore.d-flex {
		justify-content: center;
	}
	.highlight_section ul li {
		width: 100%;
		margin: 10px 0px;
	}

	.form-col .title {
		flex: 0 0 80px;
		max-width: 80px;
	}

	.form {
		width: calc(100% - 80px);
	}

	.amenities-box p {
		min-height: 59px;
	}

	.overview,
	overview p {
		text-align: center;
	}

	#overview .heading {
		margin-bottom: 1rem !important;
	}

	.heading {
		text-align: center !important;
	}

	.padding {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.bgstar-abs .h1
	{
		font-size: 20px;
	}
	.bgstar-abs .h3
	{
		font-size: 18px;
	}
	.bgstar-abs {
		width: 90%;
	}
	.journeyBox .jyear h4 {
		font-size: 13px !important;
	}
	.amenities-slide .gal-caps {
		position: absolute;
		bottom: 6px;
		color: #fff;
		font-weight: 600;
		left: 4px;
		line-height: 1.0;
		background: linear-gradient(110deg, #14486a, transparent);
		padding: 4px;
		width: calc(100% - 10px);
	}
	.contact-details {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
		margin-top: 10px;
		text-align: center;
		justify-content: center;
	}
	.header
	{
		padding: 0;
	}
	.logo {
		height: 53px;
	}
}