@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
/*--------------------------------------------------------------All Color Variable----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&amp;family=Poppins:wght@300;400;500;600;700&amp;display=swap");

@font-face {
  font-family: 'riviera_nightsregular';
  src: url('../fonts/rivieranights-regular-webfont.woff2') format('woff2'),
       url('../fonts/rivieranights-regular-webfont.woff') format('woff');
  font-weight: normal; 
  font-style: normal;
}

@font-face {
    font-family: 'Candlefish';
    src: url('Candlefish.woff2') format('woff2'),
        url('Candlefish.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --web-wash: #fff;
  --primary: #1b1b1b;
  --secondary: #7d7e7c;
  --ternary: #d8d8d7;
  --gray: #f7f7f5;
  --border: #eaeaea;
  --accent: #aa8453;
  --secondary-font: "Poppins", sans-serif;
}
.cs_dark {
  --web-wash: #1b1b1b;
  --primary: #fff;
  --secondary: #d8d8d7;
  --gray: #181818;
  --border: #3c3c3c;
  --elan_epic: #d59c21;
}
body { 
  color: var(--secondary);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.875em;
  font-weight: 400;
  font-style: normal;
  overflow-x: clip;
  background-color: var(--web-wash);
}
.same-margin-bottom {
    margin-bottom: 70px;
}
.same-margin-top {
    margin-top: 70px;
}
.home_about_lt img {
    width: 70%;
    position: absolute;
    top: -20px;
    left: 150px;
}
.same-padding-bottom {
    padding-bottom: 70px;
}
ul.top_icon {
    display: flex;
    padding: 0;
    gap: 20px;
    list-style: none;
    margin: 0;
}
ul.top_icon .fa {
        border: 1px solid;
    border-radius: 5px;
    padding: 10px;
}
ul.top_icon a:hover {
			color: #fff !important;
		}
.home_about_rt span {
    color: #d2ac67;
}
.same-padding-top { 
    padding-top: 70px;
}
.same-padding-bottom-half {
    padding-bottom: 30px;
}
.same-padding-top-half {
    padding-top: 30px;
}
.location-advantage-section {
    background-color: #fefaf1;
}
.location-advantage-section .cs_pr_110 {
    padding-right: 0;
}
.banner-logo {
    /* max-width: 300px;
    margin: 0 auto 30px;
    filter: brightness(0) invert(1); */
}
/* MAIN CSS STARTS HERE */

/* HEADER CSS */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    border-bottom: 1px solid var(--secondary);
    /* display: none; */
}
.home_about_rt p {
    margin: 0;
  }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
	width:95%; margin:0 auto;
}
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.mobile-contact-number {
    display: flex;
    align-items: center;
}
.mobile-contact-number {
    display: flex;
    align-items: center;
    gap: 50px 50px;
}
.mobile-contact-number a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    gap: 15px;
    display: flex;
    align-items: center;
}
.mobile-contact-number .btn {
    font-family: 'riviera_nightsregular';
    padding: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 2px;
}
.cs_hamburger_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    color: currentColor;
    background-color: transparent;
    outline: none;
    padding: 0;
    color: #fff;
}
.cs_hamburger_btn .cs_hamburger_btn_in {
    width: 30px;
    height: 22px;
    line-height: 0;
    cursor: pointer;
    position: relative;
    text-align: left;
    overflow: hidden;
}
.cs_hamburger_btn .cs_hamburger_btn_in span {
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 0;
    background-color: currentColor;
    color: inherit;
    vertical-align: top;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 3px;
    left: 0;
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(1) {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    width: calc(100% - 5px);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(2) {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(3) {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    width: calc(100% - 10px);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(4) {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    width: calc(100% - 20px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(1) {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(2) {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(3) {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(4) {
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
}
.nav-main-menu ul li a.active { color:#c3975d;}
.cs_close_hamburger {
    display: none;
    background-color: transparent;
    border: none;
    z-index: 99;
    position: relative;
}
.nav-button.active .cs_hamburger_btn {
    display: none;
}
.nav-button.active .cs_close_hamburger {
    display: block;
}
.nav-main-menu {
    position: fixed;
    z-index: 9;
    background-color: rgba(27, 27, 27, 0.9607843137);
    width: 526px;  
    height: 100vh;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    top: 0;
    left: -526px;
    background-color: rgba(0,0,0,0.2);
    -webkit-backdrop-filter: blur(5px) saturate(1);
    backdrop-filter: blur(5px) saturate(1);
    overflow-y: auto;
}
.header-fix .nav-main-menu {
    background-color: rgba(0, 0, 0, 0.7);
}
.projects-menu-list-active li.active ul li {
    margin-bottom: 1px;
}
.nav-main-menu.active {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: rgb(0 0 0 / 90%);
    -webkit-backdrop-filter: blur(5px) saturate(1);
    backdrop-filter: blur(5px) saturate(1);
}
.nav-main-menu ul {
    padding: 80px 100px 0 150px;
    text-align: right;
    list-style: none;    
    margin: auto 0;
	position: relative;
    z-index: 9999;
}
.nav-main-menu ul li {
    margin-bottom: 20px;
}
.nav-main-menu ul li a, .nav-main-menu ul li span {
    font-size: 16px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: block;
    text-transform: uppercase;
    font-family: 'riviera_nightsregular';
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.nav-main-menu ul li a:hover { color: #c7a071 !important;}
.header-fix {
    background-color: rgba(0,0,0,0.5); 
    -webkit-backdrop-filter: blur(5px) saturate(1);
    backdrop-filter: blur(5px) saturate(1);    
}
.header-fix .header-inner {
    height: 70px;
}
.header-fix .header-inner .logo {
    max-width: 90px;
}
.home_about {
    padding: 0;
    position: relative;
	overflow:hidden;
}
.home_about:before {
    position: absolute;
    bottom: -32%;
    left: 18.5%;
    background: url(../images/line-bg.png) left top;
    width: 150px;
    height: 350px;
    content: "";
    z-index: 1;
    background-size: 100% 100%;
}
.home_about_in {
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
	padding:40px 0px 120px;
}
.home_about_lt {
    text-align: right;
    width: 35%;
    position: relative;
}
.home_about_rt {
    width: 68%;
    padding-right: 10%;
    padding-left: 3.5%;
}
.home_about_lt h4 {
    color: #282828;
    margin-bottom: 27px;
}
.home_about_lt h2 {
    font-weight: 400;
    color: #d2ac67;
   font-size: 55px;
    line-height: 60px;
	font-family: 'Candlefish';
	letter-spacing:2px;
}
.home_about_rt h3 {
    font-size: 23.2px;
    text-transform: uppercase;
    color: #282828;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-top: 50px;
	font-family: 'Candlefish';
}
.home_about_rt h3 p {
    margin: 0;
    font-size: 70px;
    /* font-family: 'Italianno', cursive; */
    font-family: 'Source Serif Pro', serif;
    color: #d2ac67;
    text-transform: capitalize;
    margin-left: 6px;
    line-height: 50px;
}
.building_sec { width:100%; display:block;}
.building_sec img { width:100%;}

.retail_sec { padding:60px 0px; overflow:hidden;}
.retail_sec h3 { font-size:45px; color:#333; text-align:center; font-family: 'Source Serif Pro'; margin-bottom:20px; font-weight: 400;}
.retail_sec span {display:block; text-transform:uppercase; color: #d4a649;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}

.modal-body img { width:100%;}
.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	max-width: 1280px;
	list-style: none;
	text-align: center;
	width:100%;
	margin:0 auto;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 420px;
	max-height: 500px;
	width: 31%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	font-weight: 300;
	font-size:26px;
}

.grid figure h2 span {
	font-weight: 600;
	display:block;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 65%;
	line-height:20px;
	text-transform:capitalize;
	font-weight:400;
}


figure.effect-roxy {
	background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
    background: linear-gradient(45deg, #000000 100%, #000000 100%);
}

figure.effect-roxy img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50px,0,0);
	transform: translate3d(-50px,0,0);
}

figure.effect-roxy figcaption::before {
	position: absolute;
	top: 30px;
	right: 20px;
	bottom: 30px;
	left: 20px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}

figure.effect-roxy figcaption {
	padding: 1.3em;
	text-align: left;
}

figure.effect-roxy h2 {
	padding: 12% 0 10px 0;
}

figure.effect-roxy p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

figure.effect-roxy:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.concept_sec { display:block; clear:both; text-align:center; background: url('../images/epicentre-background.jpg'); margin-top:50px; background-size: cover;}
.concept_box { position:relative;}
.concept_box img { width:100%;}
.epic {position:absolute; top:8%; left:5%; right:5%;}
.epic h2 { font-size:50px; color:#d4a649; text-align:center; font-family: 'Source Serif Pro'; margin-bottom:20px; font-weight: 400; margin-bottom:30px; line-height:45px;}
.epic span { font-size:22px; color:#fff; display:block; text-transform:uppercase;}
.epic ul {display:flex; flex-wrap: wrap; justify-content:center;}
.epic ul li { width:30%; margin:20px 10px; list-style:none;}
.epic ul li:nth-child(1), .epic ul li:nth-child(3) { margin-top:-40px;}
.epic ul li:nth-child(4), .epic ul li:nth-child(6) { margin-top:60px;}
.epic ul li:nth-child(2), .epic ul li:nth-child(5) { margin-top:-10px;}
.concept_cont { display:block;}
.concept_cont img { width:auto; margin-bottom:10px; max-width:80px;}
.concept_cont p { font-size:19px; color:#fff; padding:10px 50px;}
.location_sec { padding:0px; background:#fefefe;}
.left { width:100%;}
.left img { width:100%;}
.location_sec .right {    width: 100%;
    text-align: center;
    float: right;
    margin: 0 auto;}
.loc_cont {     padding-top: 5%;}
.loc_cont h3 { font-size:50px; color:#333; font-family: 'Source Serif Pro'; margin-bottom:20px; font-weight: 400; line-height:55px;}
.loc_cont span {display:block; text-transform:uppercase; color: #d4a649;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}
.loc_cont p {font-size: 19px; line-height: 34px;}
.footer_sec {
    background: #c19745;
    padding: 40px;
}
.com_heading {
    font-size: 30px;
    color: #fff;
    padding-top: 25px;
}
.fttxt {
    padding-right: 25px;
	color:#fff;
}
.foo_social {
    padding-top: 10px;
}
.foo_social ul {
    padding: 0px;
}
.foo_social ul li {
    float: left;
    list-style: none;
}
.foo_social ul li a {
    margin-right: 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    display: inline-block;
    line-height: 34px;
    color: #fff;
    background: #151513;
    border-radius: 2px;
}
.foo_social ul li a:hover {
    color:#c19745 !important;
}
.foo_title {
    font-size: 24px;
    margin: 15px 0px 25px;
    color: #fff;
    font-weight: 500;
    position: relative;
    margin-bottom: 15px;
}
ul.ft_cont {
    margin: 0px;
    padding: 0px;
}
ul.ft_cont li {
    color: #fff;
    padding: 3px 0px;
    list-style: none;
    text-transform: uppercase;
}
ul.ft_cont li a {
    color: #fff;
    font-size: 15px;
	text-decoration: none;
}
.foo_add {
    padding: 0px;
}
.foo_add a {
    color:#fff;
	text-decoration:none;
}
.foo_add li {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	padding:5px 0px;
}
.foo_add li i {
    width: 30px;
    color: #fff;
    font-size: 20px;
    margin-top: 5px;
}
.foo_add li p {
    width: 88%;
    font-weight: 300;
    color: #fff;
    font-size: 15px;
    margin: 0px;
}
.com_heading {
    font-size: 30px;
    color: #fff;
    padding-top: 25px;
}
.ft_logo {
    width: 50%;
    margin-bottom: 25px;
}
.fttxt a { color:#fff; text-decoration:none;}
.copyright{background: #333; text-align: center;}
.copyright p { font-size:14px; color:#fff; padding:15px 0px; text-align:center; margin:0px;}
.copyright a { color: #fff; text-decoration: none;}
.copyright a:hover { color: #fcaa3c;}

.about_sec { display:block; padding:0px; }
.about_sec img { width: 100%; border-radius: 8px;}
.about_cont { padding: 20px 0px 10px 30px;}
.standard { font-size: 45px; line-height: 45px; color: #333; margin-bottom: 20px; font-family: 'Source Serif Pro';}
.standard span { font-weight: 400; font-size:22px; text-transform:uppercase; color: #c7993b; display:block;}
.about_cont p { font-size: 15px; line-height: 23px; padding-bottom: 5px; color: #666;}
.director_sec { margin: 60px 0px; background:#f7f7f7; padding:30px; border:8px;}
.director_sec p { font-size:16px; line-height:24px !important; margin-bottom:15px !important;}
.director_pic { padding-left:5%;}
.director_pic img { padding-left:5%;}
.director_sec a {background: #c0974b; color: #fff; font-size: 16px; padding: 12px 25px; text-decoration: none; position: relative; top:10px;}
.director_sec a:hover {background:#222; color:#fff !important;}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 0px;
  left: 0%;
  top: 0%;
  width: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, .7);
  z-index: 999999;
}

.modal-body {
  padding: 10px 40px;
}

.modal-body p {
  font-size: 26px;
  font-weight: 500;
  font-family: 'Lora', serif;
}
.popUpBtn {
    border: 2px #daa85c solid;
    padding: 10px 25px;
    color: #222;
    position: relative;
    top: 20px;
    cursor: pointer;
}

.popUpBtn:hover {
  background: #f5f6f9;
}

button#myBtn {
    position: relative;
    display: inline-flex
;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    padding: 4px 14px;
    overflow: hidden;
    z-index: 1;
    align-items: center;
    border: 1px solid #ffffff;
    font-size: 14px;
    transition: all .3sease-out;
    margin-right: 10px;
}

.modal-content2 {
    margin: 0px auto;
    background: #fff;
    padding: 20px 30px;
    width: 70%;
}
.modal-header {
    padding: 0px;
    color: #fff;
	float:right;
}
.modal-header .close {
    margin-top: -2px;
}
.close {
    float: right;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity = 20);
	cursor:pointer;
}

.mission_box { display:block; padding:15px 0px 50px; width:95%; position:relative;}
.mission_box::before {Content:''; position:absolute; bottom:-10px; left:-30%; background:url('../images/mission-bg.png') no-repeat; width:250px; height:237px;}
.mission_box h2 { font-size:45px; color:#444; text-transform:uppercase; letter-spacing:2px; margin:0px; -webkit-text-stroke: 1px #c7a76c;
   color: white;
   text-shadow:
       2px  2px 0 #b5965c,
      -1px -1px 0 #b5965c,  
       1px -1px 0 #b5965c,
      -1px  1px 0 #b5965c,
       1px  1px 0 #b5965c;}
.mission_box h3 { font-size:35px; color:#444; padding:10px 0px; margin:0px; font-family: 'Source Serif Pro';}
.mission_pic { width:92% !important;}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  color: #808080;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
  border-radius: 0;
}

.tab button.active {
  background-color: #d8be7b;
    border-radius: 0;
    color: #ffffff;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.contact-form {
  background-color: #fff;
  padding: 0px 40px 40px;
}
.leadership p { padding:7px 0px; margin:0px;}
.ankur { font-size:24px; font-weight:600; font-family: 'Source Serif Pro'; display:block; color:#c0974b;}

.plancont {padding:0px 12%; text-align:center;}
.floor_sec { border:1px #cdcdcd solid; padding:20px; box-shadow:0px 1px 20px #d7d7d7; text-align:center; margin:15px;}
.floor_sec img { width:100%; cursor:pointer;}
.floor_sec h3 { font-size:35px; color:#c39539; font-family: 'Source Serif Pro';}
.floor_sec p { font-size:15px; line-height:24px;}
.plancont2 {padding:20px 12% 10px; text-align:center; font-size:17px; font-weight:600;}
.contact_sec { padding-bottom:60px;}
.touch_sec {
    padding: 0px;
    width: 90%;
}
.touch_title {
    font-family: 'Source Serif Pro';
    font-size: 35px;
    margin-bottom: 15px;
    color: #cda44c;
    line-height: 1em;
    padding: 10px 0px;
    display: block;
    margin: 0 auto 0px;
}
.touch_sec p {
    font-size: 19px;
    color: #444;
}
ul.connect { padding:10px 0px;}
ul.connect li { font-size:16px; color:#444; margin:20px 0px; list-style:none;}
ul.connect li i { margin-right:5px; color:#dfab35; font-size:24px;}
ul.connect li a { color:#333; text-decoration:none;}
ul.social_box { display:flex; padding: 0px 0px 20px;}
ul.social_box li { float:left; margin-right:5px;}
ul.social_box li i {color:#dfab35 !important; font-size:24px; background:none !important; line-height:20px !important; width:auto !important; margin-right:10px !important;}
.frm_box {
    background-color: #efefef;
    padding: 30px;
    right: 5%;
    width: 90%;
}
.frm_title {
    color: #333 !important;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
	font-family: 'Source Serif Pro';
}
.formsectioncon .form-group {
    margin-bottom: 20px !important;
}

.inp1 {
    padding:8px 10px;
    margin: 0;
    border: none;
    background: #ffff;
    border-radius: 8px;
    width: 100%;
    border: 1px #c5c2c2 solid;
}
.inp2 {
    padding: 10px 20px;
    margin: 0;
    border: none;
    background: #ffff;
    border-radius: 8px;
    width: 100%;
    border: 1px #c5c2c2 solid;
    height: 100px;
}

.submitbtn {
    padding: 10px 30px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    border: none;
    FONT-SIZE: 18PX;
}
.map {
    display: block;
	width:100%;
}
.vision_sec { width:90%; margin:0px auto;}
.vision_sec h2 { font-size:50px; color:#222; font-family: 'Source Serif Pro';}
.vision_sec h3 { color:#c7993d; font-size:30px; font-family: 'Source Serif Pro';}
.vision_sec p { line-height:26px; font-size:15px;}

#gallery {
  width:95%;
  margin:0 auto 50px;
}

.gallery_cont { width:80%; margin:0 auto;text-align:center; display:block;}
.gallery_cont h2 { color:#222; font-size:40px; text-align:center; font-family: 'Source Serif Pro';}
.img-wrapper {
  position: relative;
  margin-top: 15px;
  cursor:pointer;
}
.img-wrapper img {
  width: 100%;
  
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 60% !important;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
  display:block !important;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}

.esgdata {
    border: 1px solid;
    padding: 10px;
    height: 200px;
}

.strategic_des { display:block; padding-top:20px;}
.strategic_des h2 { font-size:30px; text-transform:uppercase; font-family: 'Source Serif Pro'; color:#c19745; line-height:40px;}
.strategic_des p { line-height:24px;}
.strategic_pic { width:100%; padding:20px 0px 0px 20px;}
ul.manesar {padding:10px 20px;}
ul.manesar li { font-size:17px; line-height: 30px;}
ul.manesar li span { color:#333;}
.strategic_des2 { display:block; padding-top:20px;}
.strategic_des2 h2 { font-size:30px; text-transform:uppercase; font-family: 'Source Serif Pro'; color:#c19745; line-height:40px;}
.strategic_des2 p { line-height:24px;}
.strategic_pic2 { width:100%; padding:20px 20px 0px 0px;}
ul.manesar2 {padding:0px 20px;}
ul.manesar2 li { font-size:17px; line-height: 30px;}
ul.manesar2 li span { color:#333;}
.spacedes { padding-top:70px;}
.strategy_pic {order:1;}
.strategy_cont {order:2;}

.main-menu-div-active ul {
    /* display: none; */
}
.main-menu-div-active .main-menu-list {
    display: none;
}
.projects-menu-list {
    display: none;
}
.projects-menu-list-active {
    display: block !important;
}
.projects-menu-list-active li ul {
    padding: 0;
    height: 0;
    overflow-y: hidden;
    -moz-transition: height 10s ease-in-out;
    -webkit-transition: height 10s ease-in-out;
    -o-transition: height 10s ease-in-out;
    transition: height 10s ease-in-out;
}
.projects-menu-list-active li.active ul {
    height: auto;
    overflow-y: auto;
    -moz-transition: height 10s ease-in-out;
    -webkit-transition: height 10s ease-in-out;
    -o-transition: height 10s ease-in-out;
    transition: height 10s ease-in-out;
}
.projects-menu-list-active li.active ul li a {
    font-size: 13px;
    transition: none; 
}
.projects-menu-list-active li.active > a {
    color: var(--accent);
    /* font-weight: 800; */
}
.nav-main-menu ul li:nth-child(1) a {animation-duration: 2.9s; -webkit-animation-duration: 2.9s; -moz-animation-duration: 2.9s; -ms-animation-duration: 2.9s; -o-animation-duration: 2.9s;}
.nav-main-menu ul li:nth-child(2) a {animation-duration: 2.7s; -webkit-animation-duration: 2.7s; -moz-animation-duration: 2.7s; -ms-animation-duration: 2.7s; -o-animation-duration: 2.7s;}
.nav-main-menu ul li:nth-child(3) span {animation-duration: 2.5s; -webkit-animation-duration: 2.5s; -moz-animation-duration: 2.5s; -ms-animation-duration: 2.5s; -o-animation-duration: 2.5s;}
.nav-main-menu ul li:nth-child(4) a {animation-duration: 2.3s; -webkit-animation-duration: 2.3s; -moz-animation-duration: 2.3s; -ms-animation-duration: 2.3s; -o-animation-duration: 2.3s;}
.nav-main-menu ul li:nth-child(5) a {animation-duration: 2.1s; -webkit-animation-duration: 2.1s; -moz-animation-duration: 2.1s; -ms-animation-duration: 2.1s; -o-animation-duration: 2.1s;}
.nav-main-menu ul li:nth-child(6) a {animation-duration: 2s; -webkit-animation-duration: 2s; -moz-animation-duration: 2s; -ms-animation-duration: 2s; -o-animation-duration: 2s;}
.nav-main-menu ul li:nth-child(7) a {animation-duration: 1.5s; -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -ms-animation-duration: 1.5s; -o-animation-duration: 1.5s;}
.nav-main-menu ul li:nth-child(8) a {animation-duration: 1s; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -ms-animation-duration: 1s; -o-animation-duration: 1s;}
.nav-main-menu ul li:nth-child(9) a {animation-duration: 0.5s; -webkit-animation-duration: 0.5s; -moz-animation-duration: 0.5s; -ms-animation-duration: 0.5s; -o-animation-duration: 0.5s;}

.projects-menu-list li:nth-child(1) a {animation-duration: 3.3s; -webkit-animation-duration: 3.3s; -moz-animation-duration: 3.3s; -ms-animation-duration: 3.3s; -o-animation-duration: 3.3s;}
.projects-menu-list li:nth-child(2) a {animation-duration: 3.1s; -webkit-animation-duration: 3.1s; -moz-animation-duration: 3.1s; -ms-animation-duration: 3.1s; -o-animation-duration: 3.1s;}
.projects-menu-list li:nth-child(3) a {animation-duration: 2.9s; -webkit-animation-duration: 2.9s; -moz-animation-duration: 2.9s; -ms-animation-duration: 2.9s; -o-animation-duration: 2.9s;}
.projects-menu-list li:nth-child(4) a {animation-duration: 2.7s; -webkit-animation-duration: 2.7s; -moz-animation-duration: 2.7s; -ms-animation-duration: 2.7s; -o-animation-duration: 2.7s;}
.projects-menu-list li:nth-child(5) a {animation-duration: 2.5s; -webkit-animation-duration: 2.5s; -moz-animation-duration: 2.5s; -ms-animation-duration: 2.5s; -o-animation-duration: 2.5s;}
.projects-menu-list li:nth-child(6) a {animation-duration: 2s; -webkit-animation-duration: 2s; -moz-animation-duration: 2s; -ms-animation-duration: 2s; -o-animation-duration: 2s;}
.projects-menu-list li:nth-child(7) a {animation-duration: 1.5s; -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -ms-animation-duration: 1.5s; -o-animation-duration: 1.5s;}
.projects-menu-list li:nth-child(8) a {animation-duration: 1s; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -ms-animation-duration: 1s; -o-animation-duration:1s;}
.projects-menu-list li:nth-child(9) a {animation-duration: 0.5s; -webkit-animation-duration: 0.5s; -moz-animation-duration: 0.5s; -ms-animation-duration: 0.5s; -o-animation-duration: 0.5s;}
.projects-menu-list li:nth-child(10) a {animation-duration: 0.2s; -webkit-animation-duration: 0.2s; -moz-animation-duration: 0.2s; -ms-animation-duration: 0.2s; -o-animation-duration: 0.2s;} 
.animate__fadeInLeft {
    -moz-animation-name: fadeInLeft;
    -ms-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.body-active-div { 
    /* overflow: hidden;
    height: 100vh;
    position: relative; */ 
}
/* HEADER CSS */
.elan-presidential-luxury-mall {
    background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-presidential/background");
    background-position: center center;
    background-size: cover;
    background-repeat: repeat;
    padding: 60px 0;
}
.tower-with-style-wrapper {
    position: relative;
}
.tower-with-style-image {
    position: relative;
    height: 95vh;
    min-height: 725px;
}

/* BANNER CSS */
.banner-section {
    height: 100vh;
    position: relative; 
}
.banner-div {
    position: relative;
    height: 100%;
}
.banner-div::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}
.banner-div video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.banner-txt {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    height: auto !important;
} 
.banner-txt p {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.banner-txt h1 {
    font-family: var(--primary-font);
    font-size: 70px;
    color: #fff;
    /* margin-bottom: 35px; */
	font-weight:500;
	font-family: 'Source Serif Pro', serif;
}

.inner-banner-section {
    height: 80vh;
    position: relative; 
}
.inner-banner-div {
    position: relative;
    height: 100%;
}

.inner-banner-div::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}
.inner-banner-div img { width:100%; height:100%;}

.main-btn {
    border: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    outline: none;
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 15px;
    border-radius: 20px;
}
.main-btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    width: 13px;
}
.main-btn span i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    color: inherit;
}
.main-btn span i svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.main-btn span i:last-child {
    position: absolute;
    left: -19px;
    bottom: -21px;
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    color: currentColor;
}
.main-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
} 
.main-btn:hover span i:first-child {
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}
.main-btn:hover span i:last-child {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(20px, -20px) rotate(-45deg);
    transform: translate(20px, -20px) rotate(-45deg);
}
.modal-form .main-btn {
    color: #fff;
    border-color: #000;
    border-radius: 0;
    background-color: #000;
    padding: 10px 45px;
}
.modal-form .main-btn:hover {
    border-color: var(--accent);
}
/* BANNER CSS */

/* ABOUT US SECTION */
.about-img {
    height: 100%;
    padding-right: 55px;
}
.about-img .cs_video_open {
    height: 100%; 
    display: block;
    /* background-image: url("../images/about-elan.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    border-radius: 5px;
}
.about-section {
    position: relative;
    overflow-x: hidden;
    /* padding-top: 30px;
    padding-bottom: 30px;   */
}
.project-overview-section {
    position: relative;
    overflow-x: hidden; 
    height: 100vh; 
    background-color: gainsboro;
    display: flex;
    align-items: center; 
}
.cs_dark .project-overview-section {
    background-image: url("../img/project-overview-dark-bg.jpg");
}
.cs_dark  .project-partners-associates {
    background-color: #fff;
}
.about-real-estate-experience {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0.3;
    font-family: var(--primary-font);
}
.about-real-estate-experience h4 {
    margin: 0;
    font-size: 60px;
    line-height: 50px;
}
.title .title-span {
    letter-spacing: 2px;
    margin-bottom: 28px;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
.title h2 {
    font-family: var(--primary-font);
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 28px;
}
.about-service {
    margin-top: 40px;
    position: relative;
}
.swiper-button-prev-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.swiper-button-next-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.swiper-button-prev-arrow .fa-solid {
    font-size: 30px;
}
.swiper-button-next-arrow .fa-solid {
    font-size: 30px;
}
.about-service-item {
    text-align: center;
    position: relative;
}
.about-service-item p {
    margin: 20px 0 0 0;
}
.about-service-border-right::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: gainsboro;
}
/* ABOUT US SECTION */

/* A Decade of Success */
.decade-success-section {
    background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-group/decade-of-success");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 180px 0; */
    height: 100vh;
  }
.decade-success-div {
    text-align: center;
    display: block;
    text-decoration: none;
}
.decade-success-div h2 {
    font-size: 50px;
    font-family: var(--primary-font);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}
.decade-success-div .cs_play_btn {
    display: block;
    color: #fff;
}
.elan-review-div {
    margin-top: 80px;
}
.elan-review-section {
    background-color: var(--gray);
}
.elan-review-item {
    text-align: center;
    position: relative;
}
.elan-review-item p {
    color: var(--accent);
    font-size: 25px;
    line-height: 1.25em;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}
.elan-review-item h3 {
    font-size: 25px;
    line-height: 1.25em;
    margin: 0;
    font-family: var(--primary-font);
    color: var(--primary);
}
.elan-review-border-right::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: gainsboro;
    position: absolute;
    right: -12px;
    top: 0;
}
.first-luxury-mall-img-video {
    background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-group/imperial-banner");
    display: block;
    background-repeat: no-repeat;
    padding: 280px 0;
    background-size: 100% 100%; 
}
.elan-presidential-luxury-mall .first-luxury-mall-img-video  {
    background-image: url("../images/elan-presidential.html");
}
.first-luxury-mall-img-video .cs_play_btn {
    background-color: rgba(27, 27, 27, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
/* A Decade of Success */


/* PROJECT LOCATION SECTION */
.hp-location-projects .hp-project-icon {
    width: 105px;
    max-width: 12.7rem;
    cursor: pointer;
    position: absolute;
    transition: all 0.4s ease;
    height: 105px;
} 
.project-location-section {
    background-color: #fefaf2;
}
.project-location-section .title.text-center {
    z-index: 9;
    position: relative;
}
.hp-location-projects {
    /* margin-top: -80px; */
    position: relative;
    position: relative;
    max-width: 1920px;
    margin: -80px auto 0;
}
.hp-location-projects .hp-project-icon:nth-of-type(1) {
    top: 13.6%;
    left: 40.59%;
}
.hp-location-projects .hp-project-icon:nth-of-type(2) {
    top: 13.2%;
    left: 53.2%;
}
.hp-location-projects .hp-project-icon:nth-of-type(4) {
    top: 29%;
    left: 18%;
}
.hp-location-projects .hp-project-icon:nth-of-type(5) {
    top: 32.6%;
    left: 5.6%;
}
.hp-location-projects .hp-project-icon:nth-of-type(6) {
    top: 42.5%;
    right: 43.8%;
}
.hp-location-projects .hp-project-icon:nth-of-type(7) {
    top: 47.35%;
    left: 7.15%;
}
.hp-location-projects .hp-project-icon:nth-of-type(8) {
    top: 70.25%;
    left: 33.67%;
}
.hp-location-projects .hp-project-icon:nth-of-type(9) {
    top: 64.85%;
    right: 43.75%;
}
.hp-location-projects .hp-project-icon:nth-of-type(10) {
    top: 81.5%;
    left: 42.6%;
}
.hp-location-projects .hp-project-icon:nth-of-type(11) {
    top: 41%;
    right: 32%;
}
.hp-project-location-details {
    position: absolute;
    top: 50%;
    width: max-content;
    height: max-content;
    transform: translateY(-50%);
    right: 4%;
}
.hp-project-location-details {
    position: absolute;
    top: 50%;
    width: 307px;
    height: max-content;
    transform: translateY(-50%);
    right: 4%;
}
.hp-location-projects .hp-pd-box {
    padding: 15px 30px;
    border-radius: 1rem;
    max-width: 37rem;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-align: center;
}
.hp-location-projects .hp-pd-box .project-logo {
    width: 111px;
    margin: 0 auto;
}
.hp-location-projects .hp-pd-box h5 {
    margin: 15px 0 15px 0;
    font-size: 35px;
    font-family: var(--primary-font);
    color: var(--primary);
}
.hp-location-projects .hp-pd-box p {
    font-size: 16px;
    color: #737373;
    line-height: initial;
}
.btn-primary.btn-black {
    background-color: #181d24 !important;
    color: #fff !important;
}
.hp-location-projects .hp-pd-box .btn-primary {
    display: block;
    line-height: 100%;
    font-size: 13px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    padding: 15px 20px;
    text-decoration: none;
}
.btn-outline-dark {
    border: 1px solid #595959;
    color: #5f5f5f;
} 
.hp-location-projects .hp-project-icon:nth-of-type(3) {
    top: 20.6%;
    right: 26.3%;
}
/* PROJECT LOCATION SECTION */

/* AWARDS SECTION CSS STARTS HERE */
.award-items {
    border: 1px solid var(--secondary);
    border-radius: 5px;
    overflow: hidden;
    width: 99%;
    margin: 0 auto;
}
.award-items-img img {
    width: 100%;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
} 
.award-items-img img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px 5px 0 0;
}
.award-items-img:hover img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: var(--secondary);
}
.award-items-img:hover img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
} 
.award-item-cnt {
    padding: 20px;
    text-align: center;
}
.award-item-cnt p {
    font-size: 16px;
    margin-bottom: 15px;
}
.award-item-cnt h4 {
    font-size: 35px;
    color: #fff;
    font-family: var(--primary-font);
}
.our-awards-setion {
    background-color: var(--primary);
}
.hosted-name {
    font-size: 34px;
    color: var(--accent);
    font-family: var(--primary-font);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    cursor: pointer;
}
.hosted-text {
    color: #fff;
    font-size: 16px;
}
.hosted-name {
    font-size: 34px;
    color: var(--accent);
    font-family: var(--primary-font);
}
.our-awards-setion .title .title-span {
    color: var(--accent);
}
.our-awards-setion .title h2 {
    color: #fff;
}
.award-slider {
    position: relative;
}
.award-slider .swiper-button-prev::after, .award-slider .swiper-button-next::after {
    display: none;
}
.award-slider .swiper-button-prev {
    left: -70px;
    color: var(--secondary);
    width: 56px;
    height: 30px;
}
.award-slider .swiper-button-next {
    right: -70px;
    color: var(--secondary);
    width: 56px;
    height: 30px;
}  
.partners-associates-setion {
    position: relative;
}
.partners-associates-video-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.partners-associate-slider .swiper {
    padding: 50px 0;
}
.partners-associate-slider .swiper .swiper-slide {
    border-right: 1px solid gainsboro;
}
.partners-items {
    max-width: 120px;
    margin: 0 auto;
}
.partners-associates-setion .title .title-span {
    color: #fff;
}
.partners-associates-setion .title h2 {
    color: #fff;
}
footer {
    background-color: #1b1b1b;
}
.top-footer-item h4 {
    color: #fff;
    font-size: 24px;
    font-family: var(--primary-font);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.top-footer-item h4 span {
    position: relative;
}
.top-footer-item h4 span::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #fff;
    right: -60px;
    top: 15px;
}
.top-footer-item ul {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
} 
.top-footer-item ul li {
    margin-bottom: 5px;
}
.top-footer-item ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
a:hover {
    text-decoration: none !important;
    color: #3e3428 !important;
}
.top-footer-item ul li:last-child {
    margin: 0;
}
.top-footer-item p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}
.footer-social-icon a {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-social-icon {
    display: flex;
    margin-top: 30px;
    align-items: center;
}
.footer-social-icon a {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}
.footer-social-icon a:last-child {
    margin-right: 0;
}
.middle-footer-div {
    border-top: 1px solid gainsboro;
    padding-top: 20px;
    margin-top: 20px;
}
.middle-footer-div-item p {
    font-size: 10px;
    line-height: 1.5;
    padding-right: 15px;
    color: var(--ternary);
    margin-bottom: 35px;
}
.bottom-footer {
    background-color: #171717;
}    
.bottom-footer-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}
.copyrightText p {
    color: #fff;
    margin: 0;
    font-size: 16px;
}
.copyrightText p a {
    color: var(--accent);
    text-decoration: none;
}  
.privacypolicyText p {
    margin: 0;
}
.privacypolicyText p a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.scroll-up-div {
    /* border: 1.5px dashed var(--accent);
    border-radius: 100%;
    padding: 5px;
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite;
    animation-play-state: running;
    -webkit-animation-play-state: paused;
    animation-play-state: paused; */
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
}
.scroll-up-div:hover {
    /* -webkit-animation-play-state: initial;
    animation-play-state: initial; */
}
.scroll-up-div::after {
    /* content: "";
    border: 1.5px dashed var(--accent);
    border-radius: 100%;
    -webkit-animation: rotate 15s linear infinite; 
    animation: rotate 15s linear infinite;
    animation-play-state: running;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    width: 55px;
    height: 55px;
    position: absolute;
    left: 23px;
    top: 23px;
    z-index: -1; */
}
.cs_scrollup_bg_dotted {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: rotate 15s linear infinite;
            animation: rotate 15s linear infinite;
    -webkit-animation-play-state: paused;
          animation-play-state: paused;
          color: var(--accent);
}

.cs_scrollup_bg_dotted:hover  {
    -webkit-animation-play-state: initial;
            animation-play-state: initial;
}
@-webkit-keyframes rotate {
    from {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
              transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
              transform: translate(-50%, -50%) rotate(360deg);
    }
}
  
@keyframes rotate {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
                transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
                transform: translate(-50%, -50%) rotate(360deg);
    }
}

.scroll-up-div a .img-fluid {
    max-width: 20px;
}

.scroll-up-div a {
    height: 46px;
    width: 46px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px dotted var(--accent);
}
.elan-a-logo {
    display: none;
}
.header-fix .elan-logo {
    display: none;
}
.header-fix .elan-a-logo {
    display: block;
}
/* AWARDS SECTION CSS ENDS HERE */

/* PROJECT PAGE CSS STARTS HERE */
.project-highlight-item {
    display: block;
    position: relative;
    overflow: hidden;
}
.project-highlight-img {
    display: block;
}
.project-highlight-img::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.project-highlight-cnt {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #d7d0c5;
    font-size: 20px;
    width: 75%;
    z-index: 2;
    transform: translate(-50%,-50%);
    border: 2px solid var(--accent);
    text-align: center;
    display: block;
    padding: 8px 10px;
    text-transform: uppercase;
}
.project-highlight-item:hover .project-highlight-cnt {
    background-color: var(--accent);
}
.project-highlight-img .img-fluid {
    -webkit-transition: all ease-in-out 2s;
    -o-transition: all ease-in-out 2s;
    transition: all ease-in-out 2s;
}
.project-highlight-item:hover .project-highlight-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.project-gallery-div {
    position: relative;
}
.swiper-slide-prev {
    /* -webkit-transform: translate3d(-85%, -50%, 0) scale3d(0.6, 0.6, 1);
    transform: translate3d(-85%, -50%, 0) scale3d(0.6, 0.6, 1);
    z-index: 2; */
}
.swiper-slide {
    /* display: inline-block; */
    /* width: 66%;
    height: 520px; */
    /* position: relative;
    left: 50%;
    top: 50%; */
    /* -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
    -webkit-transition: z-index 0.2s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out 0s;
    transition: z-index 0.2s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, z-index 0.2s ease-in-out 0.1s;
    transition: transform 0.3s ease-in-out 0s, z-index 0.2s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out 0s; */
}
.gallery-items {
    /* width: 100%;
    height: 520px;
    border-radius: 5px;
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
}
.concept-behind-section {
    background-color: var(--primary);
}
.concept-behind-section .title .title-span {
    color: #fff;
}
.concept-behind-section .title h2 {
    color: #fff;
    margin-bottom: 50px;
}
.concept-behind-item {
    text-align: center;
    margin-bottom: 50px;
}
.concept-behind-icon {
    margin-bottom: 20px;
}
.concept-behind-item h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}
.concept-behind-item p {
    color: #fff;
    padding: 0 30px;
}
.project-location-cnt ul li {
    margin-bottom: 10px;
}
.project-location-cnt ul li:last-child {
    margin-bottom: 0;
}
.project-location-cnt ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-map-section iframe {
    width: 100%;
    height: 500px;
    display: block;
}
/* Main CSS */
.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
} 
.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
/* PROJECT PAGE CSS ENDS HERE */
.padding-left-div {
    padding-left: 30px;
}
.padding-right-div {
    padding-right: 30px;
}
.partners-associate-slider .swiper-wrapper {
    transition-timing-function: linear;
}
/* MAIN CSS ENDS HERE */

/* ABOUT US CSS STARTS HERE */
.brands-logo-item {
    height: 84%;
    align-items: center;
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #adadad;
    padding: 5px;
}
.brands-logo-main {
    max-width: 100px;
    overflow: hidden;
    margin: 0 auto;
}
.brands-associated-div {
    position: relative;
    text-align: center;
}
.brands-associated-div .nav-pills {
    width: auto;
    display: inline-flex;
    border: 1px solid #adadad;
    border-radius: 50px;
    margin: 10px 0 30px 0;
}
.brands-associated-div .nav-pills .nav-item .nav-link {
    color: #979797;
    padding: 10px 25px;
    border-radius: 50px;
}
.brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #c19a5b;
    border-color: #c19a5b;
    /* border-radius: 50px; */
    color: #fff;
}
.border-right {
    border-right: 1px solid var(--primary);
}
/* ABOUT US CSS STARTS HERE */

/* EALN FOUNDTION OVERIVEW CSS */
.paradise-proven-usp {
    width: 100%;
    margin-bottom: 0;
    margin-top: -100px;
    padding-left: 0;
    list-style: none;
    display: inline-flex;
    padding: 0 120px;
}
.paradise-proven-usp li {
    width: 25%;
    position: relative;
    padding-top: 120px;
    padding-bottom: 5rem;
    float: left;
}
.paradise-proven-usp li:last-child::after {
    left: 100% !important;
}
.paradise-proven-usp li:nth-child(2n+1) {
    padding-top: 200px;
}
.paradise-proven-usp li::before, .paradise-proven-usp li:last-child::after {
    content: "";
    width: 1px;
    height: 100%;
    background-image: url("../img/long-vertical-line.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}
.paradise-proven-usp .pn-usp-content {
    padding: 30px 20px;
    position: relative;
}
.paradise-proven-usp .pn-usp-content::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 20px;
    width: 22px;
    height: 22px;
    background-image: url("../img/pulse-gold.webp");
    background-size: contain;
    background-repeat: no-repeat;
}
.paradise-proven-usp .pn-usp-content p {
    font-size: 28px;
    font-weight: 400;
    color: #353535;
    line-height: 1.3;
    margin-top: 2rem;
    text-transform: capitalize;
    font-family: var(--primary-font);
}
.paradise-proven-usp .pn-usp-content img {
    max-width: 60px;
}
.gray-bg-color {
    background-color: #f1f1f1;
}
/* EALN FOUNDTION OVERIVEW CSS */

/* ELAN MERCADO PROJECTS */
.cs_feature_box.cs_style_3 .cs_feature_box_text p {
    opacity: 0;
    /* display: none; */
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
.cs_expent_section .cs_hover_active:hover .cs_feature_box.cs_style_3 .cs_feature_box_text p {
    opacity: 0.9;
    /* display: block; */  
} 
.partners-associates-bg-video .img-fluid {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.project-partners-associates {
    /* background-image: url("../images/decade-success-bg.webp"); */
}
.project-partners-associates .title .title-span {
    color: #000;
}
.project-partners-associates .title h2 {
    color: #000;
}
/* ELAN MERCADO PROJECTS */

/* HIGHLIGHT SECTION IN ELAN MERCADO */
.swiper-highlight-item {
    position: relative;
}
.swiper-highlight-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient( to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.01) 95% );
  padding: 30px 30px 50px 30px;
}
.swiper-highlight-txt h5 {
  color: #fff;
  font-size: 35px;
  position: relative;
  margin: 0;
  padding-bottom: 15px;
}
.swiper-highlight-item:hover h5::after {
    content: "";
    width: 50px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 10px;
    background-color: var(--accent);
}
.swiper-highlight-txt ul {
    margin: 0;
    list-style-type: disc;
    padding: 0;
    list-style-position: inside;
    height: 0;
    max-height: 0;
    opacity: 0;
    transition: all 1.5s ease;
}
.swiper-highlight-item:hover .swiper-highlight-txt ul {
    height: auto;
    opacity: 1;
    max-height: 100rem;
}
.swiper-highlight-txt ul li {
    color: #fff;
    font-size: 17px;
    line-height: 45px;
}
.swiper-highlight-img img {
  width: 100%;
}
/* HIGHLIGHT SECTION IN ELAN MERCADO */

/* ABOUT US CSS HERE */
.vision-mission-img {
    max-width: 350px;
    margin: 0px auto;
}
.vision-mission-item {
    /* border: 1px solid gainsboro;
    text-align: center;
    padding: 20px; */
    margin-top: 25px;
}
.vision-mission-item h5 {
    margin-bottom: 10px;
    font-size: 25px;
    color: #c19a5b;
    /* font-weight: bold; */
    font-family: var(--primary-font);
}
.vision-mission-item p {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: justify;
}
/* ABOUT US CSS HERE */

/* AWARDS PAGE STATS HERE */
.wrap-cnt-awards {
    padding: 0 80px;
}
.pursuit-perfection-img {
    max-width: 200px;
    margin: 30px auto;
}
.pursuit-perfection-div p { 
    text-align: center;
    /* margin: 0; */
}
.pursuit-perfection-section .title h2 {
    margin-bottom: 10px;
}
.our-awards-itm {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.our-awards-itm-top p {
    margin: 10px 0 0 0;
    text-align: center;
    color: #c19a5b;
    font-size: 14px;
}
.our-awards-itm-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.award-year {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.award-year img {
    max-width: 15px;
}
.award-year h5 {
    margin: 0 10px;
    font-size: 20px;
}
.our-awards-info {
    text-align: center;
}
.our-awards-info h3 {
    font-size: 25px;
    margin-bottom: 5px;
}
.our-awards-info h2 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #c19a5b;
}
.our-awards-info h4 {
    font-size: 22px;
    margin-bottom: 0;
}
.our-awards-photo {
    max-width: 200px;
    margin: 0 auto;
}
/* AWARDS PAGE STATS HERE */

/* ELAN MERCADO BLACK THEME */
.cs_dark .project-partners-associates .brands-associated-div .nav-pills {
    margin: 0 auto;
    left: 50%;
    top: 0;
    right: inherit;
    transform: translateX(-50%);
}
.cs_dark .project-partners-associates .brands-associated-div .tab-content {
    padding-top: 80px;
}
.cs_dark .location-advantage-section .cs_section_heading .cs_fs_67.mb-0 {
    /* color: #000; */
}
.cs_dark .location-advantage-section .cs_list.cs_style_1 li {
    /* color: #000; */
}
footer {
    margin-top: -10px;
}
/* ELAN MERCADO BLACK THEME */


/* FOOTER ACCORDION CSS HERE */
.mobile-footer {
    display: none;
}
/* FOOTER ACCORDION CSS HERE */

/* DOWNLOAD KEY DOCUMENTS */
.download-key-documents-section {
    background-color: var(--accent);
    padding: 30px 0;
}
.download-key-documents-section {
    background-color: #c19a5b;
    padding: 40px 0;
} 
.download-key-link-btn {
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 10px;
}
.download-key-link-btn .pd-pdf-icon {
    max-width: 23px;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.download-key-link-btn .text-white {
    font-size: 14px;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.download-key-link-btn .pd-download-arrow {
    max-width: 16px;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.download-key-link-btn {
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    border-radius: 4px;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.download-key-link-btn:hover {
    background-color: #fff;
}
.download-key-link-btn:hover img, .download-key-link-btn:hover span {
    filter: invert(1);
}
.download-key-item h4 {
    color: #fff;
    font-size: 32px;
    margin: 0;
    position: relative;
}
.download-key-item h4::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 12px;
    right: 15px;
}
.download-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
.download-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
.download-col {
    flex: 0 0 auto;
    width: 20%;
}
/* DOWNLOAD KEY DOCUMENTS */ 

/* PROJECT BEHIND SECTION CSS */
.project-concept-left-img {
    /* border-radius: 0 0 150px 0; */
    /* overflow: hidden; */
    padding-right: 40px;
}
.project-concept-behind-cnt .title h2 {
    /* text-transform: uppercase;
    font-size: 50px; */
}
.project-concept-behind-cnt .title p {
    /* font-size: 16px;
    color: var(--primary); */
}
/* PROJECT BEHIND SECTION CSS */

/* ELAN NEWS AND EVENTS */
.elan-witness-div-right {
    padding-left: 40px;
}
.elan-witness-quotes blockquote {
    position: relative;
    font-size: 18px;
    font-style: italic;
    font-weight: 200;
    padding-left: 100px;
    padding-right: 100px;
    line-height: 1.5;
    margin-top: 70px;
    text-transform: capitalize;
}
.elan-witness-quotes blockquote::before {
    width: 40px;
    height: 40px;
    content: "";
    position: absolute;
    left: 50px;
    top: -10px;
    background-image: url("../images/elan-news-blockquote.webp");
    background-size: contain;
    background-repeat: no-repeat;
}
.en-signature {
    padding-left: 60px;
}
.en-signature img {
    max-width: 200px;
}
.new-event-video-section .title h2 {
    text-transform: uppercase;
}
.cs_section_heading .cs_fs_67 {
    margin: 0;
}
.project-logo {
    max-width: 230px;
    margin-bottom: 30px;
}
/* ELAN NEWS AND EVENTS */

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99999;
    top: 0;
    width: 100%;
    height: 100vh;
    font-size: 80px;
    background-color: #1b1b1b;
}
  
.cs_preloader_in {
    width: 130px;
    height: 130px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 40px;
    border-radius: 50%;
}
.cs_preloader_in:after, .cs_preloader_in:before {
    content: "";
    border-width: 3px;
    border-style: solid;
    border-radius: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    margin-left: -65px;
    margin-top: -65px;
}
.cs_preloader_in:after {
    border-color: transparent;
    border-top-color: var(--accent);
    -webkit-animation: spin 1s ease-in-out infinite;
            animation: spin 1s ease-in-out infinite;
    z-index: 2;
}
.cs_preloader_in:before {
    border-color: var(--accent);
    opacity: 0.2;
}



.flip-card {
  background-color: transparent;
  max-width: 400px;
  width:100%;
  height: 450px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
.flip-card img{
  max-width: 400px;
  width:100%;
  height: 450px;
}
/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-front h2 {
    position:absolute;
    bottom:15%;
    left:5%;
    color:#fff;
    font-family: 'Source Serif Pro';
    letter-spacing:1px;
    text-transform:uppercase;
    text-align:left;
    font-size:24px;
}
.flip-card-front span {
    font-size:26px;
    color:#efad24;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #d59c21;
  color: white;
  transform: rotateY(180deg);
}
.flip-card-back {
    font-size: 55px;
    padding: 150px 40px;
    line-height: 35px;
    text-align: center;
    font-family: 'Source Serif Pro';
    font-weight:400;
}
.flip-card-back span {
    font-size:27px;
    display:block;
    padding-left:40px;
    color:#fff;
    text-transform:capitalize;
}

  
@-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
}  
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.common-desktop-banner {
    height: 100%;
}
.common-mobile-banner {
    height: 100%;
}
.form-group {
    margin-bottom: 30px;
    position: relative;
}
.countryCode {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    border: none;
    padding: 0 0 0 11px;
    background-color: transparent;
    border-right: 1px solid #000;
    color: gray;
    font-size: 16px;
    font-family: var(--primary-font);
}
.countryCode ~ .form-control {
    padding-left: 110px;
}
/* NEWS AND EVENT CSS HERE */
.hp-event-tag {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}
.news-event-post h5 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
}
.hp-event-box .read-more {
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}
.hp-event-date {
    position: absolute;
    right: 30px;
    bottom: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hp-event-day {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.news-event-post .hp-event-month {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.hp-event-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 30px 30px;
  z-index: 99;
}  
.hp-event-slide.en-news-slide {
    position: relative;
}
.hp-event-box.relative {
    position: relative;
}
.hp-event-box.relative::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.3);
    left: 0;
    top: 0;
}
.media-publications-section .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
}
.media-publications-section .hp-event-slide.en-news-slide {
    background-color: #fff;
    padding: 15px;
    /* margin-bottom: 30px; */
}
.slick-slide img {
    width: 100%;
}
.media-publications-section .hp-event-box.relative::after {
    display: none;
}
.media-publication-text {
    text-align: center;
    margin-top: 20px;
}
.media-publication-text h5 {
    font-size: 16px;
    letter-spacing: 1px;
    color: #353535;
    font-family: var(--secondary-font);
}
/* NEWS AND EVENT CSS ENDS HERE */
.project-concept-behind-it-section {
    background-color: #f7f7f7;
}
.project-concept-behind-it-section .title-span {
    color: #000;
}

.modal.show .modal-dialog {
    transform: none;
    width: 32% !important;
}

.modal-dialog .modal-content {
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}
.modal-dialog .modal-header {
	padding:0px;
	margin:0px;
}
.modal-dialog button.close {
    position: absolute;
    top: 5px;
    right: 4px;
    background: #fff;
    width: 25px;
    border: none;
}

/* COLOUR THEME */
.epic-body .title .title-span {
    color: #d59c21;
}
.epic-body .download-key-documents-section {
    background-color: #d59c21;
}
.epic-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #d59c21;
    border-color: #d59c21;
}
.epic-body .cs_list.cs_style_1 svg {
    color: #d59c21;
}
.epic-body .location-advantage-section {
    background-color: #1b1b1b;
} 
.mercado-body .title .title-span {
    color: #2f729a;
}
.mercado-body .download-key-documents-section {
    background-color: #2f729a;
}
.project-rera-disclaimer {
    text-align: center;
}
.project-rera-disclaimer p {
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}
.project-rera-disclaimer p:last-child {
    margin-top: 30px;
}
.full-screen-img-section img {
    width: 100%;
}
.mercado-body .cs_list.cs_style_1 svg {
    color: #2f729a;
}
.mercado-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #2f729a;
    border-color: #2f729a;
}
.paradise-body .title .title-span {
    color: #cfa17d;
}
.paradise-body .download-key-documents-section {
    background-color: #cfa17d;
}
.paradise-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #cfa17d;
    border-color: #cfa17d;
}
.paradise-body .cs_list.cs_style_1 svg {
    color: #cfa17d;
}
.paradise-body .location-advantage-section {
    background-color: #1b1b1b;
} 
.miracle-body .title .title-span {
    color: #6a0884;
}
.miracle-body .download-key-documents-section {
    background-color: #6a0884;
}
.miracle-body .cs_list.cs_style_1 svg {
    color: #6a0884;
}
.miracle-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #6a0884;
    border-color: #6a0884;
}
.town-centre-body .title .title-span {
    color: #f37021;
}
.town-centre-body .download-key-documents-section {
    background-color: #f37021;
}
.town-centre-body .cs_list.cs_style_1 svg {
    color: #f37021;
}
.town-centre-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #f37021;
    border-color: #f37021;
}

.empire-body .title .title-span {
    color: #b4ae90;
}
.empire-body .download-key-documents-section {
    background-color: #b4ae90;
}
.empire-body .cs_list.cs_style_1 svg {
    color: #b4ae90;
}
.empire-body .brands-associated-div .nav-pills .nav-item .nav-link.active {
    background-color: #b4ae90;
    border-color: #b4ae90;
}
.empire-body .location-advantage-section {
    background-color: #1b1b1b;
}
/* COLOUR THEME */
.privacy-policy-body header {
    background-color: #000;
}
.maincontent {
    padding-top: 140px;
    padding-bottom: 40px;
} 
.form-control {
    padding: 10px 10px;
    border-radius: 0;
    border-color: #000;
    color: #000;
    font-family: var(--primary-font);
}
.our-awards-setion .banner-txt {
    position: static;
    transform: translate(0,0);
    margin-top: 15px;
}
.our-team-section {
    position: relative;
}
.team-two-swiper {
    margin-top: 50px;
}
.video-div .img-fluid {
    width: 100%;
}
.cs_author_img {
    text-align: right;
}
.cs_author_cnt .title p {
    text-align: justify;
}
.cs_author_cnt .title h2 {
    margin-bottom: 0;
}

/* Commercial Projects PAGE STARTS HERE */
.swiper-pagination-sliders {
    width: auto !important;
    height: auto !important;
    transform: translate(0) !important;
}
.swiper-pagination-sliders {
    width: auto !important;
    height: auto !important;
    position: absolute;
    z-index: 9;
}
.swiper-pagination-sliders .swiper-pagination-bullet {
    width: 10px;
    height: 10px !important;
    margin: 10px 0 !important;
    border-radius: 100%;
    background-color: var(--accent);
}
.continue-journey-itm-div-cnt {
    border-left: 1px solid #fff;
    padding: 15px 15px;
}
.continue-journey-itm-div-cnt h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
}
.continue-journey-itm-div-cnt p {
    font-size: 14px;
    line-height: normal;
    color: #fff;
}
.continue-journey-itm-div-cnt h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
.continue-journey-section {
    position: relative;
}
.continue-journey-slider .swiper-button-prev::after {
    display: none;
}
.continue-journey-slider .swiper-button-next::after {
    display: none;
}
.continue-journey-slider .swiper-button-prev svg, .continue-journey-slider .swiper-button-next svg {
    font-size: 30px;
    color: #fff;
}   
.continue-journey-itm-div-img .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    border: 1px solid #fff;
    color: #000;
    opacity: 0;
    background-color: #fff;
}
.continue-journey-itm-div-img:hover .btn {
    opacity: 1;
}
.continue-journey-itm-div-img {
    position: relative;
}
/* Commercial Projects PAGE ENDS HERE */ 

.mobile-contact {
    display: none !important;
}
.btn-wrap {
    display: flex;
    justify-content: space-between;
    visibility: hidden;
}
.moreless-button {
    border: 1px solid #000;
    padding: 5px 20px;
    color: #000;
    display: inline-block;
    margin-top: 20px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
    font-family: var(--primary-font);
}
::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    font-family: var(--primary-font);
}
:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    font-family: var(--primary-font);
}
:-moz-placeholder { /* Firefox 18- */
    color: #000;
    font-family: var(--primary-font);
}
.modal-content {
    border-radius: 0;
}
.modal-header {
    border: none;
}
.footer-enquire span {
    display: none;
}
.footer-enquire {
    text-decoration: none;
    background-color: var(--accent);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9;
}
.footer-enquire:hover {
    color: #fff !important;
}
.modal-title {
    font-size: 30px; 
    font-family: var(--primary-font);
    text-transform: uppercase;
    color: #000;
}
.btn-close {
    color: #000;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
} 
.modal-form .form-group {
    margin-bottom: 15px;
}
/* RESPONSIVE CSS STARTS HERE */
@media only screen and (max-width: 1255px) {
    .award-slider .swiper-button-prev {
        left: -38px;
        width: 35px;
        height: 25px;
    }
    .award-slider .swiper-button-next {
        right: -38px;
        width: 35px;
        height: 25px;
    }
}
@media only screen and (max-width: 1199px) {
    .cs_video_block.cs_style_1 .cs_video_block_title {
        font-size: 45px;
    }
    .project-logo {
        margin-bottom: 15px;
    }
    .hp-location-projects .hp-project-icon {
        width: 6.5%;
        max-width: unset;
    } 
    .hp-project-location-details {
        bottom: -210px;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
    }
    .project-location-section {
        padding-bottom: 1px;
    }
    .hp-location-projects .hp-pd-box {
        padding: 15px 15px;
    }
    .hp-pd-top {
        display: flex;
        align-items: center;
    }
    .hp-location-projects .hp-pd-box h5 {
        margin: 10px 0 10px 0;
        font-size: 20px;
    }
    .hp-location-projects .hp-pd-box .project-logo {
        width: 70px;
        margin: 0;
    }
    .hp-location-projects .hp-pd-box p {
        font-size: 14px;
        line-height: initial;
        margin: 0;
    }
    .hp-pd-btns {
        display: flex;
    }
    .hp-location-projects .hp-pd-box .btn-primary {
        font-size: 10px;
        border-radius: 20px;
        letter-spacing: 1px;
        padding: 15px 15px;
        width: 45%;
        margin: 0 auto !important;
    }
    .hp-location-projects {
        margin-bottom: 250px;
    }
    .header-inner {
        height: 80px;
    }
    .header-fix .header-inner {
        height: 65px;
    }
    ul.top_icon { display: none;}
    .banner-txt h1 {
        font-size: 70px;
        margin-bottom: 30px;
    }
    .main-btn {
        padding: 10px 20px;
    }
    .banner-txt p {
        margin-bottom: 20px;
    }
    .title .title-span {
        margin-bottom: 20px;
    }
    .about-img {
        padding-right: 0;
    }
    .title h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .about-service-item p {
        margin: 15px 0 0 0;
        font-size: 15px;
    }
    .same-margin-bottom {
        margin-bottom: 50px;
    }
    .same-margin-top {
        margin-top: 50px;
    }
    .same-padding-bottom {
        padding-bottom: 50px;
    }
    .same-padding-top { 
        padding-top: 50px;
    }
    .decade-success-div h2 {
        font-size: 40px;
    }
    .elan-review-item p {
        font-size: 22px;
    }
    .elan-review-item h3 {
        font-size: 20px;
    }
    .award-item-cnt p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .award-item-cnt {
        padding: 12px;
    }
    .award-item-cnt h4 {
      font-size: 30px;
    }
    .hosted-name {
        font-size: 30px;
    }
    .about-real-estate-experience h4 {
        font-size: 50px;
    }
    .about-real-estate-experience {
        right: -7px;
    }
    .top-footer-item h4 {
        font-size: 22px;
    }
    .top-footer-item h4 span::after {
        width: 45px;
        right: -52px;
        top: 14px;
    }
    .top-footer-item ul li a {
        font-size: 14px;
    }
    .top-footer-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .copyrightText p {
        font-size: 14px;
    }
    .privacypolicyText p a {
        font-size: 14px;
    }
    .award-slider .swiper-button-prev {
        left: -18px;
        width: 40px;
        height: 25px;
        background-color: var(--accent);
        color: #fff;
        padding: 3px;
    }
    .award-slider .swiper-button-next {
        right: -18px;
        width: 40px;
        height: 25px;
        background-color: var(--accent);
        color: #fff;
        padding: 3px;
    }
    .elan-review-div {
        margin-top: 60px;
    }
    .padding-left-div {
        padding-left: 30px;
    }
    .padding-right-div {
        padding-right: 30px;
    }
    .brands-associated-div .nav-pills .nav-item .nav-link {
        padding: 8px 22px;
        font-size: 15px;
    }
    /* Spreading a billion smiles  */
    .paradise-proven-usp .pn-usp-content {
        padding: 1rem 1rem;
    }
    .paradise-proven-usp .pn-usp-content p {
        font-size: 22px;
    }
    /* Spreading a billion smiles  */
    
    /* DOWNLOAD KEY DOCUMENTS */
    .download-col:first-child {
        width: 100%;
        text-align: center;
    }
    .download-col {
        width: 25%;
    }
    .download-key-item h4 br {
        display: none;
    }
    .download-key-item h4 {
        margin: 0 0 30px 0;
        font-size: 30px;
    }
    .download-key-item h4::after {
        display: none;
    }
    /* DOWNLOAD KEY DOCUMENTS */
    .project-concept-left-img {
        padding-right: 0;
    }

}
@media only screen and (max-width: 991px) { 
    .commercial_projects.cs_hero.cs_style_3 {
        height: 100vh;
    }  
    .cs_height_lg_80 {
        height: 50px;
    } 
    .cs_video_block.cs_style_1 .cs_video_block_title {
        font-size: 35px;
    }
    .director-section {
        margin-bottom: 40px;
    }
    .same-margin-bottom {
        margin-bottom: 40px;
    }
    .same-margin-top {
        margin-top: 40px;
    }
    .same-padding-bottom {
        padding-bottom: 40px;
    }
    .same-padding-top { 
        padding-top: 40px;
    }
    .banner-txt h1 {
        font-size: 60px;
    }
    .top-footer-item {
        margin-bottom: 40px;
    }
    .title .title-span {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .title h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .award-item-cnt h4 {
        font-size: 25px;
    }
    .hosted-name {
        font-size: 25px;
    }
    .first-luxury-mall-img-video {
        padding: 180px 0;
    }
    .decade-success-div h2 {
        font-size: 35px;
    }
    .decade-success-div .cs_play_btn svg {
        width: 60px;
    }
    .elan-review-div {
        margin-top: 40px;
    }
    .elan-review-item {
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .elan-review-border-right-md::after {
        display: none;
    }
    .elan-review-border-bottom::before {
        content: "";
        height: 1px;
        width: 100%;
        background-color: gainsboro;
        position: absolute;
        right: -12px;
        bottom: 0;
    }
    .elan-review-border-right-md::before {
        right: 12px;
    }
    .mobile-contact-number .btn {
        font-size: 15px;
        letter-spacing: 1px;
        word-spacing: 0px;
    }
    .copyrightText p {
        font-size: 13px;
    }
    .privacypolicyText p a {
        font-size: 13px;
    }
    .scroll-up-div {
        top: 10%;
    }
    .about-cnt .title {
        text-align: center;
    }
    .decade-success-section {
        padding: 150px 0;
        height: auto;
    }
    .padding-left-div {
        padding-left: 0;
    }
    .padding-right-div {
        padding-right: 0;
    }
    .brands-associated-div .nav-pills .nav-item .nav-link {
        padding: 8px 20px;
        font-size: 15px;
    }
    /* Spreading a billion smiles  */
    .paradise-proven-usp li::before, .paradise-proven-usp li:last-child::after {
        height: 100%;
        display: none;
    }
    .paradise-proven-usp li:nth-child(2)::after {
        display: none;
    }
    .paradise-proven-numbers h2 br, .paradise-proven-usp .pn-usp-content::before {
        display: none;
    }
    .paradise-proven-usp {
        display: inline-block;
        padding: 0 90px;
    }
    .paradise-proven-usp {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .paradise-proven-usp li {
        padding: 0 !important;
        width: 50%;
        float: left;
    }
    .paradise-proven-usp li:nth-child(2n+1) {
        padding-top: 0 !important;
        border-right: 1px solid gray;
    }
    .paradise-proven-usp li:nth-child(1), .paradise-proven-usp li:nth-child(2) {
        border-bottom: 1px solid gray;
    }
    .pn-usp-content-img {
        height: 50px;
    }
    .paradise-proven-usp li:nth-child(2)::after {
        content: "";
        width: 1px;
        background-image: url(../img/long-vertical-line.webp);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: auto;
        bottom: 0;
        right: 0;
        height: 100%;
    }
    /* Spreading a billion smiles  */
    .vision-mission-item p {
        font-size: 14px;
        margin: 0;
        line-height: initial;
    }
    .vision-mission-item {
        margin-top: 10px;
    }
    .vision-mission-item h5 {
        font-size: 22px;
    }
    /* DOWNLOAD KEY DOCUMENTS */
    .download-col {
        width: 50%;
    }
    .download-key-item h4 {
        margin: 0 0 25px 0;
        font-size: 25px;
    }
    .download-key-item {
        margin-bottom: 20px;
    }
    .download-key-documents-section {
        padding: 20px 0; 
    }
    /* DOWNLOAD KEY DOCUMENTS */
    
    /* PROJECT BEHIND SECTION CSS */
    .project-concept-behind-cnt {
        margin-top: 0;
    }
    .project-concept-behind-cnt .title h2 {
        /* font-size: 40px; */
    }
    .project-concept-behind-cnt .title p {
        font-size: 13px;
        padding: 0;
    }
    .project-concept-behind-cnt p {
        /* margin: 20px 0 0 0; */
    }
    /* .project-concept-right-div-top-img {
        max-width: 47%;
        width: 47%;
        float: left;
    }
    .project-concept-right-div-top-img img {
        width: 100%;
    }
    .project-concept-right-div-bottom-img img {
        margin: 0;
    }
    .project-concept-right-div-bottom-img {
        width: 47%;
        float: right;
    } */
    /* PROJECT BEHIND SECTION CSS */
    /* FOUNDATION PAGE */
    .paradise-proven-usp .pn-usp-content p br {
        display: none;
    }
    .about-service {
        margin-top: 20px;
    }
    /* FOUNDATION PAGE */
    .about-cnt {
        margin-top: 40px;
    }

}
@media only screen and (max-width: 800px) {
    .hp-location-projects {
        margin-top: -50px;
    }
    

}
@media only screen and (max-width: 767px) {
    .footer-enquire {
        width: 100%;
        height: auto;
        border-radius: 0;
        bottom: 0;
        left: 0;
        padding: 5px 0;
    }
    .footer-enquire span {
        display: block;
        margin: 0 0 0 15px;
    }
    .mobile-contact {
        display: block !important; 
    }
    .desktop-contact {
        display: none !important;
    }
    .btn-wrap {
        visibility: visible;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    .btn-wrap .slick-arrow {
        background-color: var(--accent);
        color: #fff;
        padding: 5px;
    }
    .elan-witness-div-right {
        padding-left: 0;
        padding-top: 30px;
    }
    .elan-witness-quotes blockquote {
        font-size: 14px;
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }
    .elan-witness-quotes blockquote::before {
        width: 20px;
        height: 20px;
        left: 0;
        top: -15px;
    }
    footer {
        margin-bottom: 40px;
    }
    .cs_height_lg_80 {
        height: 30px;
    }
    .cs_video_block.cs_style_1 .cs_video_block_title {
        font-size: 30px;
    }
    .paradise-proven-usp {
        padding: 0;
    } 
    .same-margin-bottom {
        margin-bottom: 30px;
    }
    .same-margin-top {
        margin-top: 30px;
    }
    .same-padding-bottom {
        padding-bottom: 30px;
    }
    .same-padding-top { 
        padding-top: 30px;
    }  
    .logo {
        max-width: 80px;
    }
    .header-fix .header-inner .logo {
        max-width: 70px;
    }
    .mobile-contact-number .btn {
        font-size: 14px;
    }
    .banner-txt p {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .banner-txt h1 {
        font-size: 50px;
        margin-bottom: 25px;
    }
    .title .title-span {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .title h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .title p {
        font-size: 14px;
    }
    .about-service {
        margin-top: 0;
    }
    .about-service-item {
        /* padding-bottom: 20px;
        padding-top: 20px; */
    }
    .about-service-border-right::after {
        /* right: 0;
        top: initial;
        width: 100%;
        height: 1px;
        background-color: gainsboro;
        bottom: 0; */
    }
    .decade-success-section {
        padding: 100px 0;
    }
    .decade-success-div h2 {
        font-size: 30px;
    }
    .decade-success-div .cs_play_btn svg {
        width: 55px;
    }
    .elan-review-border-right::after {
        height: 1px;
        width: 100%;
        right: 0;
        top: 0;
    }
    .elan-review-border-bottom::before {
        display: none;
    }
    .elan-review-border-right::after {
        height: 1px;
        width: 100%;
        right: 0;
        top: inherit;
        bottom: 0;
    }
    .elan-review-border-right-md::after {
        display: block;
    }
    .middle-footer-div {
        padding-bottom: 30px;
    }
    .scroll-up-div {
        top: -15px;
    }
    .bottom-footer-div {
        padding: 15px 0;
        display: block;
        text-align: center;
    }
    .middle-footer-div-item p {
        margin-bottom: 35px;
        text-align: center;
        padding-right: 0;
    }
    .top-footer-item h4 {
        font-size: 20px;
    }
    .top-footer-item ul li {
        margin-bottom: 0;
    }
    .about-service-item img {
        max-width: 45px;
        height: auto;
    }
    .top-footer-item {
        text-align: center;
    }
    .top-footer-item h4 span::after {
        display: none;
    }
    .brands-associated-div .nav-pills .nav-item .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    .brands-associated-div .nav-pills {
        top: -90px;
    }
    .project-overview-section {
        height: auto;
        padding: 30px 0;
    }
    .vision-mission-item {
        margin-top: 25px;
        text-align: center;
    }
    .cs_dark .project-partners-associates .brands-associated-div .nav-pills {
        top: 20px;
    }
    .our-team-section .row.cs_gap_y_60 {
        gap: 30px 0;
    }
    /* FOOTER MOBILE CSS START HERE */
    .mobile-footer {
        display: block;
    }
    .desktop-footer {
        display: none;
    }
    .accordion-item {
        border-bottom: 1px solid #ac8553;
    }
    .accordion-button {
        padding: 15px 0;
        color: #fff !important;
        font-size: 20px;
        font-family: var(--primary-font);
    }
    .accordion-header {
        margin-bottom: 0;
        font-size: initial;
    }
    .accordion-item:first-child .accordion-button {
        border-top: 1px solid #ac8553;
    }
    .accordion-button::after {
        position: absolute;
        top: 50%;
        right: 0;
        width: 13px;
        height: 13px;
        background-image: url("../images/accordion-plus.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.5s;
        transform: translateY(-50%);
    }  
    .accordion-button:not(.collapsed)::after {
        background-image: url("../images/accordion-minus.png");
        transform: translateY(-50%);
    }
    .accordion-body ul li a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }
    .accordion-body ul {
        list-style: none;
        padding: 0;
    }
    .accordion-body p {
        color: #fff;
        font-size: 14px;
    }
    .footer-social-icon {
        justify-content: center;
        margin: 20px 0 60px 0;
    }
    .mobile-rera p {
        font-size: 12px;
    }
    /* FOOTER MOBILE CSS START HERE */

    /* PROJECT BEHIND SECTION CSS */
    .project-concept-behind-cnt {
        margin-top: 30px; 
    }
    .project-concept-behind-cnt .title h2 {
        /* font-size: 30px; */
    }
    .project-concept-right-div {
        /* margin-top: 25px; */
    }
    .director-section {
        margin-bottom: 30px;
    }
    .project-concept-behind-cnt {
        margin-top: 20px;
        text-align: center;
    }
    .project-logo {
        margin: 25px auto 30px;
        max-width: 150px;
    }
    .project-concept-behind-cnt {
        margin-top: 0;
        text-align: center;
    }
    /* PROJECT BEHIND SECTION CSS */
    .about-cnt {
        margin-top: 30px;
    }
    .cs_newsletter.cs_style_1 h2 {
        font-size: 25px;
    }
    .wrap-cnt-awards {
        padding: 0;
    }
    

}
@media only screen and (max-width: 575px) {
    .home_about_lt img {
        width: 70%;
        position: relative;
    left: 0;}
    footer {
        margin-bottom: 35px;
    }
    .team-two-swiper {
        margin-top: 25px;
    }
    .cs_newsletter.cs_style_1 h2 {
        font-size: 18px;
    }
    .project-logo {
        margin: 15px auto 20px;
        max-width: 140px;
    }
    .cs_preloader_in {
        width: 80px;
        height: 80px;
        padding: 24px;
    }
    .cs_preloader_in::after, .cs_preloader_in::before {
        margin-left: -40px;
        margin-top: -40px;
    }
    .cs_height_lg_80 {
        height: 20px;
    }
    .director-section {
        margin-bottom: 20px;
    }
    .cs_dark .project-partners-associates .brands-associated-div .nav-pills {
        width: 185.5px;
    }
    .paradise-proven-usp .pn-usp-content img {
        max-width: 40px;
    }
    .vision-mission-item h5 {
        font-size: 20px;
    }
    .vision-mission-item p {
        font-size: 13px;
    }
    .cs_video_block.cs_style_1 .cs_video_block_title {
        font-size: 24px;
    }
    .paradise-proven-usp .pn-usp-content p {
        font-size: 15px;
    }
    .paradise-proven-usp .pn-usp-content {   
        padding: 1rem 8px;
    }
    .hp-location-projects {
        margin-top: -20px;
    }
    .mobile-contact-number a span {
        display: none;
    }
    .banner-txt p {
        font-size: 14px;
    }
    .banner-txt h1 {
        font-size: 40px;
    }
    .main-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .title .title-span {
        margin-bottom: 0;
        font-size: 14px;
    }
    .title h2 {
        font-size: 18px;
    }
    .title p {
        font-size: 13px;
        line-height: initial;
    }
    .same-margin-bottom {
        margin-bottom: 20px;
    }
    .same-margin-top {
        margin-top: 20px;
    }
    .same-padding-bottom {
        padding-bottom: 20px;
    }
    .same-padding-top { 
        padding-top: 20px;
    }
    .about-service-item p {
        margin: 5px 0 0 0;
        font-size: 13px;
    }
    .about-service-item {
        /* padding-bottom: 15px;
        padding-top: 15px; */
    }
    .about-real-estate-experience h4 {
        font-size: 22px;
    }
    .about-real-estate-experience {
        right: -17px;
    }
    .decade-success-section {
        padding: 60px 0;
    }
    .decade-success-div h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .decade-success-div .cs_play_btn svg {
        width: 50px;
    }
    .elan-review-div {
        margin-top: 0px;
    }
    .elan-review-item {
        padding-bottom: 15px;
        padding-top: 15px;
    }
    .elan-review-item h3 {
        font-size: 18px;
    }
    .elan-review-item p {
        font-size: 18px;
        margin: 0;
    }
    .elan-review-item {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .first-luxury-mall-img-video {
        padding: 80px 0;
    }
    .first-luxury-mall-img-video .cs_play_btn svg {
        width: 20px;
    }
    .first-luxury-mall-img-video .cs_play_btn {
        width: 50px;
        height: 50px;
    }
    .award-slider .swiper-button-next {
        right: 1px;
    }
    .award-slider .swiper-button-prev {
        left: 1px;
    }
    .copyrightText p {
        font-size: 12px;
    }
    .privacypolicyText p a {
        font-size: 12px;
    }
    .middle-footer-div {
        border-top: 1px solid gainsboro;
        padding-top: 15px;
        margin-top: 15px;
        padding-bottom: 20px;
    }
    .top-footer-item ul li a {
        font-size: 13px;
    }
    .top-footer-item p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .top-footer-item h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .top-footer-item {
        margin-bottom: 25px;
    }
    .award-item-cnt h4 {
        font-size: 18px;
    }
    .hosted-text {
        font-size: 14px;
    }
    .hosted-name {
        font-size: 18px;
    }
    .about-service-item img {
        max-width: 40px;
    }
    .nav-main-menu {
        width: 100%;
        left: -100%;
    } 
    .nav-main-menu ul {
        padding: 70px 70px 0 80px;
        text-align: center;
    }
    .nav-main-menu ul li {
        margin-bottom: 20px;
    }
    .nav-main-menu ul li a {
        font-size: 15px;
    }
    .brands-associated-div .nav-pills .nav-item .nav-link {
        font-size: 13px;
        padding: 5px 15px;
    }
    .brands-associated-div .nav-pills {
        /* top: -65px; */
    } 
    .partners-associates-bg-video .img-fluid {
        height: 350px;
    }
    .partners-items {
        max-width: 80px;
    }
    .cs_team.cs_style_1 .cs_team_info h3 {
        font-size: 16px;
        margin: 0;
    }
    .cs_team.cs_style_1 .cs_team_info p {
        font-size: 12px;
        line-height: 20px;
    }
    .cs_author_card .cs_author_img {
        width: 250px;
        height: 250px;
    }
    .cs_author_card .cs_author_img svg {
        width: 250px;
        height: 250px;
    }
    .brands-associated-setion .title {
        /* text-align: center;
        margin-bottom: 80px; */
    } 
    .brands-associated-div .nav-pills {
        /* top: -60px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 190px; */
    }
    /* .swiper-highlight-img {
        height: 350px;
    }
    .swiper-highlight-img img {
        object-fit: cover;
    } */
    .project-highlight-section {
        padding: 20px;
    }
    .gallery-section ~ .cs_primary_bg .cs_gap_y_70 {
        gap: 25px 0;
    }
    .gallery-section ~ .cs_primary_bg .cs_gap_y_70 .cs_iconbox .cs_iconbox_icon {
        margin-bottom: 15px;
    }
    .location-advantage-section .cs_gap_y_45 {
        gap: 0 0;
    }
    .elan-presidential-luxury-mall {
        padding: 20px 0;
        background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-presidential/mobile-banner");
    }
    .tower-with-style-image {
        min-height: 220px;
        height: 20vh;
    }
    /* FOOTER MOBILE CSS STARTS HERE */ 
    .accordion-button {
        font-size: 16px;
    }
    .accordion-body ul li a {
        font-size: 13px;
    }
    .accordion-body p {
        font-size: 13px;
    }
    .mobile-rera p {
        font-size: 10px;
    }
    /* FOOTER MOBILE CSS ENDS HERE */
    /* DOWNLOAD KEY DOCUMENTS */
    .download-col {
        width: 100%;
    }
    .download-key-item h4 {
        margin: 0 0 15px 0;
        font-size: 18px;
    }
    .download-key-item {
        margin-bottom: 15px;
    }
    /* DOWNLOAD KEY DOCUMENTS */


    /* PROJECT BEHIND SECTION CSS */
    .project-concept-left-img {
        border-radius: 0;
    }
    .project-concept-behind-cnt {
        margin-top: 20px;
    }
    .project-concept-behind-cnt .title h2 {
        /* font-size: 20px; */
    }
    .project-concept-behind-cnt .title p {
        font-size: 12px;
        padding: 0;
        margin-top: 0;
    }
    .project-concept-right-div {
        /* margin-top: 20px; */
    }
    .project-concept-behind-cnt p {
        /* font-size: 13px; */
    }
    .project-concept-left-div {
        padding-right: 0;
    }
    .chairman-section .title h2 {
        margin: 0;
        /* text-align: justify; */
        color: var(--secondary);
        font-family: var(--secondary-font);
        font-size: 13px;
        line-height: initial;
    }
    .director-section .cs_section_heading .mb-0 {
        font-size: 13px;
        line-height: initial;
        text-align: center;
    }
    .cs_section_heading .cs_mb_44.cs_mb_lg_35 {
        font-size: 13px;
        line-height: initial;
        text-align: center;
    }
    .billion-smiles-section .title h2 {
        margin: 0;
        /* text-align: justify; */
        color: var(--secondary);
        font-family: var(--secondary-font);
        font-size: 13px;
        line-height: initial;
    }
    .cs_post.cs_style_1 .cs_post_title {
        text-align: center;
    }
    .elan-recent-initiatives-item .cs_post_subtitle {
        font-size: 13px;
        line-height: initial;
        /* text-align: left; */
        text-align: center;
    }
    .cs_author_card .cs_author_meta img {
        max-height: 60px;
        margin: 0;
    }
    /* PROJECT BEHIND SECTION CSS */   
    .about-banner .cs_hero_bg {
        background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-group/mobile-banner") !important;
        position: relative;
        background-size: 100% 100%;
    } 
    .about-banner .cs_hero_bg::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        left: 0;
        top: 0;
        position: absolute;
        z-index: 1;
    }
    .about-cnt {
        margin-top: 20px;
    } 
	.plancont {
    padding: 0px 2%;
}
.banner-section {
    height: 75vh;
}
.banner-div {
    height: 90%;
}

	.d-none { display:block !important;}
	.home_about_in {display:block; padding: 20px 0px;}
	.home_about_lt { width: 100%; text-align: left;}
	.home_about_rt {width:100%; padding:0px;}
	.home_about_rt h3 { margin-top:0px;}
	.home_about:before {display:none;}
	.home_about_rt h3 p { font-size:40px;}
	.retail_sec h3 { font-size:28px;}
	.grid figure { min-width: 330px; width: 32%;}
	.retail_sec { padding: 30px 0px 10px;}
	.epic {position: relative; top: 8%;
    left: 0%;
    right: 0%;}
	.epic ul { display: block; padding:0px;}
	.epic ul li { width: 90%;}
	.epic ul li:nth-child(1), .epic ul li:nth-child(3) { margin-top:0px;}
.epic ul li:nth-child(4), .epic ul li:nth-child(6) { margin-top:0px;}
.epic ul li:nth-child(2), .epic ul li:nth-child(5) { margin-top:0px;}
.location_sec .left {
    width: 100%;
    float: left;
}
.location_sec .right {
    width: 100%;
    float: none;
	clear:both;
}
.location_sec .left img {
    width: 100%;
}
.loc_cont {
    padding: 30px 10px 20px 10px;
}
.loc_cont h3 {font-size: 38px; line-height: 45px;}
.footer_sec { padding: 15px;}
.loc_cont p {
    font-size: 17px;
    line-height: 30px;
}
.home_about_lt h2 {
    font-size: 50px;
    line-height: 50px;
}
.concept_cont p {
    font-size: 17px;
    padding: 10px 30px;
}

.modal.show .modal-dialog {
    transform: none;
    width: 75% !important;
    margin: 30px auto;
}
.inner-banner-section {
    height: 45vh;
}
.inner-banner-div {
    position: relative;
    height: 90%;
}
.inner-banner-div img {
    width: 100%;
    height: 100%;
}
.banner-txt h1 {
    font-size: 32px;
	padding:5px;
}
.about_cont {
    padding: 20px 0px 0px 0px;
}
.standard {
    font-size: 26px;
    line-height: 35px;
}
.director_sec {
    margin: 20px 0px;
    padding: 0px;
}
.mission_pic {
    width: 100% !important;
}
.mission_box h2 {font-size:30px;}
.grid figure figcaption {top:5%;}
.standard {
    font-size: 22px;
    line-height: 30px;
}
.director_pic {
    padding-left: 0;
}
.director_pic img {
    padding-left: 0;
    padding-top: 20px;
}

.plancont2 {
    padding: 20px 1% 10px;
    font-size: 15px;
}
.vision_sec {
    width: 100%;
}
.vision_sec h2 {
    font-size: 35px;
}
.touch_sec {
    width: 100%;
}
.touch_title {font-size:26px;}
.touch_sec p { font-size: 17px;}
.frm_box {
    padding: 20px;
    right: 0;
    width: 100%;
}
.frm_title {font-size: 30px;}
.gallery_cont {
    width: 100%;
}
.gallery_cont h2 { font-size: 28px;}
.modal-content2 {
    padding: 20px 20px;
    width: 95%;
}
.strategic_des h2 {
    font-size: 26px;
    line-height: 35px;
}
ul.manesar li {
    font-size: 14px;
    line-height: 30px;
}
.strategic_pic {
    width: 100%;
    padding: 0px 0px 0px 0px;
}
.spacedes {
    padding-top: 40px;
}
.strategic_pic2 {
    width: 100%;
    padding: 0px;
}
.strategic_des2 h2 {
    font-size: 26px;
    line-height: 35px;
}
.strategy_pic {order:2;}
.strategy_cont {order:1;}

.modal-content {width:95% !important;}
.flip-card {margin:10px 0px;}
 
}
@media only screen and (min-width: 1400px) {
    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;    
    }  
    .award-slider .swiper-button-prev {
        left: -45px;
        width: 40px;
        height: 25px;
    }
    .award-slider .swiper-button-next {
        right: -45px;
        width: 40px;
        height: 25px;
    }
}
@media only screen and (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}

/* RESPONSVIE CSS ENDS HERE */



.containerrr {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 3em;
    overflow: hidden;
    position: relative;
  }
  
  .containerrr::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    background-size: 1em 1em;
    opacity: 0.5;
    inset: 0;
    z-index: 0;
  }
  
  .containerrr > * {
    z-index: 1;
  }
  
  .component-header {
    position: relative;
  }
  
  .component-header button {
    --wh: 3em;
    display: none;
    width: var(--wh);
    height: var(--wh);
    background: var(
      --matchBg,
      linear-gradient(to bottom right, #050708, #303339)
    );
    border: none;
    outline: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: calc(100% + 2em);
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .component-header button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--txtBg);
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 18 2.5-2.5M18 6H9m9 0v9m0-9-6.5 6.5' stroke='%231C274C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: 60%;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  
  .gallery h2 {
    font-size: 45px;
    color: #d4a649;
    text-align: center;
    font-family: 'Source Serif Pro';    
    font-weight: 400;
    line-height: 45px;
	margin-bottom:20px;
}
  
  .themes ul {
    display: none;
    gap: 0.8em;
    position: relative;
    --wh: 1.2em;
  }
  
  .themes ul::before {
    content: "";
    width: var(--wh);
    height: var(--wh);
    transform: scale(1.1);
    box-shadow: 0px 0px 0px 2px #fff;
    position: absolute;
    inset: 0;
    left: var(--posX, 0);
    border-radius: 50%;
    transition: 0.3s;
    transition-timing-function: (0.23, 1, 0.32, 1.2);
  }
  
  .themes ul li {
    width: var(--wh);
    height: var(--wh);
    border-radius: 50%;
    list-style: none;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 1024px){
    .component-header h2{
      font-size: 1.5em;
    }
    
    .component-header button{
      --wh: 2em;
    }
  }
  
  
  
  .gallery_sec { padding:50px 0px; clear:both;}
  .containerrr{
      &[data-theme='dark']{
          --bg: linear-gradient(to bottom right, #1e2022, #323439);
          --txtBg: linear-gradient(
          to bottom right,
          #d4d4d8, #52525b
          );
          --borderClr: rgb(65, 65, 65);
      }
  
      &[data-theme='light']{
          --bg: linear-gradient(to bottom right, #fff, #cccccc);
          --txtBg: linear-gradient(to bottom right,#93c5fd, #1e3a8a);
          --borderClr: rgb(255, 255, 255);
      }
  
      &[data-theme='custom']{
          --bg: linear-gradient(to bottom right, #ccfbf1, #60a5fa);
          --txtBg: linear-gradient(to bottom right,#6996f8, #1e3a8a);
          --borderClr: rgba(230, 230, 230, 0.5);
      }
  }
  
  .slider-container{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      width: clamp(22rem, 90%, 64rem);
      height: 20rem;
      margin: 0 auto;
  }
  
  .slider{
      position: relative;
      height: 100%;
      width: 100%;
      transform-style: preserve-3d;
      perspective: 300px;
  }
  
  .slide{
    width: 30%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
  }
  
  .slide span{
      position: absolute;
      border-radius: inherit;
      display: flex;
      height: 3rem;
      width: 3rem;
      align-items: center;
      justify-content: center;
      background-image: var(--txtBg);
      -webkit-background-clip: text;
      background-clip: text;
      font-size: 2.25rem;
      line-height: 2.5rem;
      font-weight: 800;
      color: transparent;
  }
  
  .slider-buttons{
      display: flex;
      gap: 1.5rem;
      z-index: 1;
	  position:relative;
	  top:20px;
  }
  
  .slider-buttons button{
      display: flex;
      height: 2rem;
      width: 2rem;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-image: var(--bg);
      border: none;
      outline: none;
      cursor: pointer;
      position: relative;
      box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  }
  
  .slider-buttons button::before{
      content: '';
      width: 80%;
      height: 80%;
      background: var(--txtBg);
      position: absolute;
      border-radius: inherit;
      transition: .3s;
      opacity: .5;
  }
  
  .slider-buttons button:hover::before{
      opacity: 1;
  }
  
  .slider-buttons button:nth-of-type(1)::before{
      mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
  }
  
  .slider-buttons button:nth-of-type(2)::before{
      mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
  }
  
  @media (max-width: 700px){
      .slider-container{
          gap: 0;
      }
  
      .slide{
          width: clamp(4rem, 6rem, 25rem);
          height: clamp(6rem, 8rem, 27rem);
      }
      
      .slide span{
          font-size: 1.6rem;
      }
	  .gallery_sec {
    padding: 25px 0px;
	}
	.gallery h2 {margin-bottom:0px;}
	.slider-buttons { top: 0px;}
  }