@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('../woff2/rivieranights-regular-webfont.woff2') format('woff2'),
       url('../woff/rivieranights-regular-webfont.woff') format('woff');
  font-weight: normal; 
  font-style: normal;
}
:root {
  --web-wash: #fff;
  --primary: #1b1b1b;
  --secondary: #7d7e7c;
  --ternary: #d8d8d7;
  --gray: #f7f7f5;
  --border: #eaeaea;
  --accent: #aa8453;
  --primary-font: "Libre Caslon Display", serif;
  --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;
}
.same-padding-bottom {
    padding-bottom: 70px;
}
.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; */
}
.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;
}
.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);
}
.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: rgba(0,0,0,0.7);
    -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;
}
.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;
}
.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;
}
.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;
}
.elan-emperor-luxury-mall {
    background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-emperor/emperor-desktop");
    background-position: center center;
    background-size: 100% 100%;
    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: 78px;
    color: #fff;
    margin-bottom: 35px;
}
.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("../jpg/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("../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: var(--accent) !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("../webp/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("../webp/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("../webp/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;
}
  
@-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%;
    background-size: cover;
}
.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;
}


/* 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;
}
.brand-ambassador-mobile {
    display: none;
}
.brand-ambassador-div .btn-close {
    color: #000;
    opacity: 1;
    position: absolute;
    right: -20px;
    top: -20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 10px;
    border-radius: 100%;
}
/* 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;
    }
    .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(../webp/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("../png/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("../png/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) {
    .brand-ambassador-div .btn-close {
        right: 0px;
        top: 0px;
    }
    .brand-ambassador-mobile {
        display: block;
    }
    .brand-ambassador-desktop {
        display: none;
    }
    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");
    }
    .elan-emperor-luxury-mall {
        padding: 20px 0;
        background-image: url("https://res.cloudinary.com/diwgt4zc8/image/upload/f_auto,q_auto/v1/elan-emperor/emperor-mobile");
        background-size: cover;
    }
    .elan-emperor-luxury-mall .title {
        padding-bottom: 450px;
    }
    .elan-emperor-luxury-mall .title p {
        margin-bottom: 5px;
    }
    .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;
    } 
    
}
@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 */