:root {

  --primary-font: "DM Serif Display", serif;

  /* --primary-font:"Tenor Sans", sans-serif; */

  --secondary-font: "Poppins", sans-serif;

  --primary-color: #27356e;

  --secondary-color: #bda588;

  --dark-color: #242424;

  --info-color: #ffffff;

  --text-color: #423d3ded;

  --primary-font-size: 16px;

  --primary-transition-effect: all 0.35s linear;

}


html {

  scroll-behavior: smooth;

}

* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

  font-size: var(--primary-font-size);

}



body {

  font-family: var(--secondary-font);

  font-weight: 500;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--primary-font);

}



ul,

li {

  padding: 0;

  margin: 0;

  list-style-type: none;

}



a,

a:hover,

a:focus {

  text-decoration: none;

  outline: inherit;

  color: inherit;

  transition: var(--primary-transition-effect);

}



img {

  max-width: 100%;

}

.link {

  color: var(--secondary-color);

  font-weight: 600;

  text-decoration: none;

  border-bottom: 1px solid;

  position: relative;

  margin-right: 20px;

}

.link .lnr {

  font-weight: 600;

  font-size: 15px;

  position: absolute;

  top: 4px;

  right: -19px;

}

.section-padding {

  padding: 100px 0;

}

.section-heading {

  font-size: 50px;

  font-weight: 600;

  line-height: 59px;

  margin-bottom: 15px;

  color: var(--primary-color);

  opacity: 0.9;

}

.section-heading.white {

  color: var(--info-color);

}

.section-info {

  color: var(--text-color);

  line-height: 30px;

  opacity: 0.7;

}

.primary-color {

  color: var(--primary-color);

}

.container {

  max-width: 1430px;

  padding-left: 15px;

  padding-right: 15px;

  margin: 0 auto;

}



.primary-button {

  border: 1px solid rgb(188, 152, 107);

  background: rgb(188, 152, 107);

  padding: 18px 26px;

  display: inline-block;

  color: var(--info-color);

  line-height: 1;

  cursor: pointer;

  font-weight: 500;

  transition: all 0.35s ease-in-out;

  letter-spacing: 2px;

  font-family: var(--secondary-font);

  border-radius: 4px;

  /* text-transform: uppercase; */

  font-size: 15px;

}

.primary-button.white-btn {

  border: 1px solid var(--info-color);

  background: var(--info-color);

  color: var(--dark-color);

}

.primary-button.white-btn:hover,

.primary-button.white-btn:focus {

  border-color: var(--info-color);

  background: var(--info-color);

  color: var(--dark-color);

  opacity: 0.8;

}

.primary-button.xl-button {

  padding: 15px 44px;

}

@media (max-width: 480px) {

  .primary-button {
    font-size: 14px;
    line-height: 22px;
    padding: 16px 12px;
}

}



.primary-button:hover,

.primary-button:focus {

  border-color: #a78e6f;

  background: #a78e6f;

  color: var(--info-color);

}



/* header css */
.header-content {
    align-items: center;
    justify-content: space-around;
}

.site-header {

  position: fixed;

  z-index: 9999;

  left: 0;

  top: 0;

  width: 100%;

  padding: 10px 0;

  background: transparent

    linear-gradient(180deg, #00000096 0%, #0f0f0f7b 24%, #54545400 100%) 0% 0%

    no-repeat padding-box;

  transition: var(--primary-transition-effect);

}

.site-header.fixed {

  background: rgba(21, 21, 21, 0.3);

  /*backdrop-filter: blur(20px);*/

}

.site-header .primary-button {

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);

}

.site-header .primary-button:hover {

  background: var(--info-color);

  color: #242424;

}

.navbar-brand {

  width: 110px;

  padding: 0;

  margin-right: 0;

}

.site-nav .nav-link {

  color: var(--info-color);

  padding: 35px 0;

  text-transform: uppercase;

  font-weight: 500;

  letter-spacing: 1px;

  font-size: 16px;

}

.site-nav .nav-link:hover {

  color: var(--secondary-color);

}

.site-nav .nav-item + .nav-item {

  margin-left: 50px;

}

.site-nav .nav-link .lnr {

  font-size: 13px;

  margin-left: 8px;

}

.hasSubmenu {

  position: relative;

}



.submenu {

  background: #bc986b;

  width: 200px;

  padding: 10px 20px;

  border-radius: 7px;

  position: absolute;

  top: 90%;

  transform: translateY(20px);

  transition: var(--primary-transition-effect);

  visibility: hidden;

  opacity: 0;

  pointer-events: none;

}

.hasSubmenu:hover .submenu {

  transform: none;

  visibility: visible;

  opacity: 1;

  pointer-events: all;

}

.submenu a {

  color: var(--info-color);

  padding: 10px 0;

  text-transform: uppercase;

  font-weight: 500;

  letter-spacing: 1px;

  font-size: 15px;

  display: block;

  transition: var(--primary-transition-effect);

}

.submenu a:hover {

  transform: translateX(10px);

}

.submenu li + li a {

  border-top: 1px solid #ffffff57;

}

/* banner css */

.site-banner {

  position: relative;

  width: 100%;

  padding-top: 49%;

  overflow: hidden;

}

.site-banner:before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  right: 0;

  background: rgb(0 0 0 / 10%);

  z-index: 1;

}

.site-banner video {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

  object-fit: cover;

}

.banner-content {

  position: absolute;

  bottom: 80px;

  left: 50%;

  transform: translateX(-50%);

  text-align: center;

  z-index: 1;

  max-width: 800px;

  padding: 0 15px;

}

.subheading {

  color: var(--secondary-color);

  letter-spacing: 0.5em;

  text-transform: uppercase;

  margin-bottom: 20px;

  font-size: 14px;

  font-weight: 700;

  line-height: 20px;

  display: block;

  font-family: var(--secondary-font);

}

.subheading.white-subheading {

  color: var(--info-color);

}

.banner-content h1 {

  font-size: 50px;

  color: var(--info-color);

  font-family: var(--primary-font);

  margin-bottom: 15px;

  letter-spacing: 1px;

}

.banner-content p {

  font-size: 15px;

  color: var(--info-color);

  font-weight: 300;

  margin-bottom: 35px;

  line-height: 32px;

}



/* about us css */

.counter-card {

  text-align: center;

}

.counter-card span.counter {

  font-family: var(--primary-font);

  font-size: 140px;

  font-weight: 400;

  letter-spacing: -1px;

  color: var(--secondary-color);

  /* line-height: 110px; */

  opacity: 0.8;

}

.counter-card .counter-icon {

  font-family: var(--primary-font);

  font-size: 50px;

  color: var(--secondary-color);

  position: relative;

  vertical-align: top;

  top: 10px;

}

.counter-card span.counter-img {

  display: inline-block;

  opacity: 0.2;

  vertical-align: text-bottom;

  width: 55px;

  height: 50px;

  margin-right: 12px;

}

.counter-card p {

  font-size: 16px;

  color: var(--dark-color);

  margin-bottom: 0;

  font-weight: 600;

  /* text-transform: uppercase; */

  letter-spacing: 2px;

}

.about-section {

  overflow: hidden;

}

.about-objectives {

  padding: 65px 0;

  margin-top: 100px;

  position: relative;

  background: #f7f2ee;

}

.about-objectives:after {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 100%;

  right: -100%;

  background: #f7f2ee;

}

.about-img {

  position: relative;

  left: -50px;

  border-radius: 10px;

  overflow: hidden;

}

.about-objectives-list {

  margin-bottom: 45px;

}

.about-objectives-list h3 {

  font-size: 24px;

  color: #242424;

  margin-bottom: 25px;

  position: relative;

  padding-left: 70px;

}

.about-objectives-list p {

  color: var(--text-color);

  line-height: 30px;

  opacity: 0.7;

}

.about-objectives-list h3 .icon {

  display: inline-block;

  width: 55px;

  height: 55px;

  background: #bda588;

  border-radius: 50px;

  text-align: center;

  line-height: 53px;

  position: absolute;

  left: 0;

  top: -15px;

}

.about-objectives-list h3 .icon img {

  width: 30px;

  filter: invert(1);

}



/* project section css */

.project-card {

  position: relative;

  background: #173e62;

  border-radius: 10px;

  overflow: hidden;

}



.project-info {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 0 110px 30px 40px;

  z-index: 1;

}



.project-img {

  opacity: 0.5;

}

.project-img img {

  transition: var(--primary-transition-effect);

}

.project-card:hover img {

  transform: scale(1.05);

}

.project-info h3 {

  color: var(--info-color);

  font-size: 28px;

}



.project-info p {

  color: var(--info-color);

  margin-bottom: 0;

}



.project-info .project-number {

  position: absolute;

  right: 30px;

  bottom: 0;

  font-size: 80px;

  color: var(--info-color);

  font-family: var(--primary-font);

  opacity: 0.3;

  transition: var(--primary-transition-effect);

}

.project-card:hover .project-number {

  opacity: 1;

}



/* why us section */

.why-us-section {

  overflow: hidden;

}

.why-slider {

  padding: 65px 0;

  margin-top: 50px;

  position: relative;

  background: #f7f2ee;

}


.why-slider:after {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 100%;

  right: -100%;

  background: #f7f2ee;

}

.slick-slide {

  display: inline-block;

  vertical-align: top;

}



.slider-wrapper {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

}

.text-slider .slick-list {

  overflow: hidden;

  margin-right: 160px;

  position: relative;

}



.image-slider {

  position: relative;

  margin-left: -50px;

}

.image-slider img {

  border-radius: 10px;

}

.text-slider img {

  width: 65px;

  margin-bottom: 25px;

}

.text-slider h3 {

  color: var(--primary-color);

  font-size: 24px;

  margin-bottom: 15px;

}

.text-slider p {

  color: var(--text-color);

  line-height: 30px;

  opacity: 0.7;

  margin-bottom: 0;

}

.text-slider .slick-arrow {

  position: absolute;

  right: 60px;

  top: 40%;

  width: 60px;

  height: 60px;

  background: var(--info-color);

  border: 0;

  font-size: 0;

  transform: translateY(-50%);

  z-index: 1;

  transition: var(--primary-transition-effect);

}

.text-slider .slick-arrow:hover {

  background: var(--secondary-color);

}

.text-slider .slick-arrow.slick-next {

  margin-top: 75px;

}

.text-slider .slick-arrow::before {

  content: "";

  position: absolute;

  top: 29px;

  width: 12px;

  height: 12px;

  border-left: 1px solid;

  border-right: 1px solid;

  border-bottom: 1px solid;

  transition: var(--primary-transition-effect);

}

.text-slider .slick-arrow:hover::before {

  border-color: var(--info-color);

}

.text-slider .slick-arrow.slick-prev:before {

  left: 50%;

  border-right: 0;

  transform: rotate(45deg) translateX(-50%);

}

.text-slider .slick-arrow.slick-next:before {

  right: 50%;

  border-left: 0;

  transform: rotate(-45deg) translateX(50%);

}

.text-slider-inner {

  padding-left: 30px;

}



/* video css */

.walkthrough-video {

  overflow: hidden;

  position: relative;

  padding: 380px 0;

  background: url(../img/h5_img6.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;

}

.walkthrough-video::before {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.1);

}

.walkthrough-video .play-btn {

  background: transparent;

  width: 70px;

  height: 70px;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  border: 0;

  opacity: 0.8;

  transition: var(--primary-transition-effect);

}

.walkthrough-video:hover .play-btn {

  opacity: 1;

}

#staticBackdrop .modal-content:before {

  content: "";

  display: block;

  padding-top: 56.3%;

}

.modal-content button.close {

  position: absolute;

  right: -15px;

  top: -15px;

  background: #fff;

  opacity: 1;

  width: 40px;

  height: 40px;

  text-align: center;

  border-radius: 40px;

  color: var(--primary-color);

  z-index: 2;

}

.modal-content button.close span {

  font-size: 32px;

  font-weight: 300;

  line-height: 30px;

}

#staticBackdrop .modal-content iframe {

  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

}



/* news css */

.news-img {

  overflow: hidden;

  border-radius: 8px;

}

.news-img img {

  transition: var(--primary-transition-effect);

}

.news-card:hover img {

  transform: scale(1.05);

}

.news-info {

  padding-top: 25px;

}

.news-info h3,

.news-info h3 a {

  color: var(--dark-color);

  font-size: 24px;

  margin-bottom: 15px;

}

.news-info h3 a:hover {

  color: var(--primary-color);

}

.news-info p {

  color: var(--text-color);

  line-height: 30px;

  opacity: 0.7;

}



/* footer css */

.site-footer-contact {

  background: url(../img/footer_bkg_1.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;

  padding: 80px 0;

}

.site-footer-contact .section-heading {

  margin-bottom: 50px;

  font-size: 40px;

}

.contact-list label {

  display: block;

  color: var(--info-color);

  text-transform: uppercase;

  font-size: 14px;

}

.contact-list a {

  color: var(--info-color);

  font-size: 24px;

  font-family: var(--primary-font);

}

.site-footer-contact address {

  color: var(--info-color);

  line-height: 26px;

  opacity: 0.8;

}

.social-links img {

  display: block;

  width: 15px;

  height: auto;

}

.social-links li {

  width: auto;

  padding-right: 20px;

}

/* .social-links img[alt="youtube"] {

  width: 18px;

} */

.footer-contact-inner {

  border-bottom: 1px solid rgb(255 255 255 / 20%);

  padding-bottom: 80px;

}

.footer-main {

  background: #183e63;

}

.footer-heading {

  font-size: 18px;

  color: var(--info-color);

  margin-bottom: 25px;

  font-family: var(--primary-font);

}

.footer-main p {

  color: var(--info-color);

  font-size: 14px;

  opacity: 0.8;

  line-height: 28px;

  padding-right: 60px;

}

.footer-links li + li {

  margin-top: 15px;

}

.footer-links a {

  color: var(--info-color);

  font-size: 15px;

  opacity: 0.8;

  position: relative;

  padding-left: 20px;

  display: inline-block;

}

.footer-links a:hover {

  opacity: 1;

  transform: translateX(10px);

}

.footer-links a:before {

  content: "";

  position: absolute;

  left: 0;

  top: 7px;

  width: 7px;

  height: 7px;

  border-right: 1px solid;

  border-bottom: 1px solid;

  transform: rotate(-45deg);

}

.footer-links a:hover::before {

  border-color: var(--info-color);

}

.footer-main .form-control {

  font-size: 14px;

  background: var(--info-color);

  border: 0;

  color: var(--info-color);

  height: 45px;

  padding: 10px 15px;

  outline: 0;

  font-weight: 600;

}

.footer-main .form-control:focus {

  box-shadow: none;

}



.footer-main .form-control::placeholder {

  color: var(--dark-color);

  opacity: 0.5;

}



.footer-main .form-control::-ms-input-placeholder {

  color: var(--dark-color);

  opacity: 0.5;

}

.footer-main .primary-button {

  height: 45px;

  padding: 10px 20px;

  letter-spacing: 0;

  font-weight: 600;

}

.footer-main p.copyright {

  margin: 0;

  text-align: center;

  padding: 20px 0;

  margin-top: 60px;

}



.footer-focused-links a.footer-heading:hover,

.footer-focused-links a.footer-heading:focus {

  opacity: 0.8;

  color: var(--info-color);

}

.footer-focused-links li + li {

  margin-top: 15px;

}



.inner-page-banner {

  /* background-color: #000000; */

  background-image: url(../img/background-contact.jpg);

  background-repeat: no-repeat;

  background-position: center top;

  background-size: cover;

  position: relative;

}

.page-title {

  justify-content: center;

  align-self: center;

  flex-grow: 1;

  /* margin-top: 239px; */

  padding: 180px 0;

}



.page-title h1 {
    text-align: center;
    color: var(--info-color);
    font-size: 50px;
    text-transform: capitalize;
    
}

.inner-page-banner .page-title h1 {
    text-align: left;
}

.contact-arrow {

  background: var(--info-color);

  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);

  padding: 50px;

}

.form-control {

  padding: 3px 18px;

  font-size: 17px;

}



.contactUs-content .contact-details a {

  padding: 6px 0;

  display: inline-block;

  color: #808080;

  font-size: 17px;

}



ul.contact-details li a b {

  font-size: 18px;

}



.contact-arrow .section-heading {

  font-size: 40px;

  font-weight: 600;

  line-height: 59px;

  margin-bottom: 15px;

  color: var(--primary-color);

  opacity: 0.9;

}

.contactUs-content h2 {

  font-size: 40px;

  line-height: 49px;

}



.contact-section.section-padding .container {

  max-width: 1200px;

}



.search-widget {

  margin-bottom: 40px;

  padding: 24px 17px 35px 27px;

  border: 1px solid #ddd;

}

.search-widget h4 {

  border-left: 2px solid #bda588;

  padding-left: 10px;

  position: relative;

  margin-bottom: 20px;

  font-size: 24px;

}

.search-widget form {

  position: relative;

}

.search-widget input[type="text"] {

  margin-bottom: 0;

  padding-right: 65px;

  padding-left: 20px;

  height: 45px;

  background-color: #fff;

  font-weight: 600;

  font-size: 14px;

  border: 1px solid #ddd;

  width: 83%;

}

.search-widget button {

  position: absolute;

  /* right: 15px; */

  height: 100%;

  padding: 0 11px;

  color: #fff;

  border: 2px solid #bda588;

  background-color: #bda588;

  transition: all 0.3s ease 0s;

}

.latest-blog {

  margin-bottom: 40px;

  padding: 24px 17px 35px 27px;

  border: 1px solid #ddd;

}



.latest-blog h4 {

  border-left: 2px solid #bda588;

  padding-left: 10px;

  position: relative;

  font-size: 24px;

  margin-bottom: 25px;

  text-transform: capitalize;

}

.latest-blog ul {

  padding: 0;

  margin: 0;

}

.latest-blog > ul > li {

  margin-bottom: 30px;

  border-bottom: 1px solid #ddd;

  padding-bottom: 30px;

}

.latest-blog ul li {

  list-style: none;

}

.latest-post-img {

  float: left;

  margin-right: 20px;

}

.latest-post-img img {

  max-width: 80px;

}

.latest-post-content h6 {

  margin-bottom: 5px;

  font-weight: 500;

  font-size: 14px;

}



.latest-post-content .ltn__blog-meta {

  margin-bottom: 0;

}

.ltn__blog-meta li:last-child {

  margin-right: 0;

}

.latest-blog ul li {

  list-style: none;

}

.ltn__blog-meta li span {

  color: #fff;

  margin-right: 5px;

}



.sidebar {

  max-width: 370px;

}

li.ltn__blog-date a span {

  color: #bca486;

}



.latest-blog > ul > li:last-child {

  border-bottom: none;

}



.about-content p {

  font-size: 17px;

  line-height: 28px;

  color: var(--text-color);

}



.about-mission-vision {

  background-image: url(../img/about_bg.jpg);

  background-repeat: no-repeat;

  background-position: center top;

  background-size: cover;

  position: relative;

  padding: 80px;

  background-attachment: fixed;

  margin-bottom: 80px;

}



.mission-cnt {

  background-color: #fff;

  padding: 40px;

  height: 100%;

}



.mission-info h2 {

  color: #3c487c;



  /* color: #aa9274;*/

}

.mission-info p {

  color: var(--text-color);

  line-height: 28px;

  font-size: 16px;

}



.mission-img img {

  max-width: 81px;

  margin-bottom: 6px;

}









.about-content {

  padding-left: 20px;

}



.our_team_member {

  padding: 0 0 100px 0;

}

.leadership-img {

  justify-content: center;

  display: flex;

}

.leadership-img img {

  max-width: 100%;

  border-radius: 60%;

  height: 200px;

  width: 200px;

  object-fit: cover;

}

.leadership-info {

  text-align: center;

  margin: 20px;

}



.leadership-info .subheading {

  margin-bottom: 10px;

}



.strong_legacy {

  padding-bottom: 100px;

}



.our_leadership_page-img img {

  width: 100%;

}





.our_leadership_page_card {

  background: white;

  border-radius: 15px;

padding: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  height: 100%;

  border-top: 4px solid var(--accent-color);

  text-align: center;

}



.our_leadership_page_card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}







.our_leadership_page_icon {

    justify-content: center;

    display: flex;

    align-items: center;

}

.our_leadership_page_icon img {

   max-width: 36%;

}

.leadership-info h3 {
    color: var(--primary-color);
    font-size: 34px;
}

p.section-info b {
    color: #242424;
}

.floor-info {
    background: #fbf9f6;
    padding: 50px;
}

.floor-info h3 {
    font-size: 40px;
    font-family: var(--primary-font);
    margin-bottom: 20px;
}

.floor-info p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #5b5b5b;
   
    line-height: 32px;
}

.floor-info li {
    font-size: 18px;
    font-family: var(--primary-font);
    color: #5b5b5b;
  
}

.twin-towers-cnt h4 {
    font-size: 33px;
    line-height: 49px;
}

.floor-info ul + ul {
    margin-top: 15px;
}

.floor-card {
    margin-top: 40px;
}

.floor-section {
    margin-bottom: 100px;
}
.amenities-card {
    background-color: #fff;
    position: relative;
    text-align: center;
    padding: 40px;
}
.amenities-img img {
    max-width: 82px;
}
.amenities-info h4 {
    font-size: 20px;
    margin-top: 13px;
}

.amenties-section {
    background-color: #f7f2ee;
    padding: 80px;
   
}

.twin-info {
    padding-left: 60px;
}

.contactUs-content iframe {
    padding-right: 60px;
}

.brand-roots {
    background-color: #f7f2ee;
    padding: 80px;
}

.project-card.section {
    position: relative;
    background-color: inherit;
    border-radius: 10px;
    overflow: hidden;
}

.project-img.info {
    opacity: inherit;
}

.construction-info {
    padding: 20px 0px 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.construction-info h4 {
    font-size: 19px;
     font-weight: 600;
   
}

a.link.construction {
    font-size: 19px;
    font-weight: 600;
}

.contact-arrow.section {
    max-width: 830px;
    margin: 0 auto;
}

.inner-page-banner.towers {


    /* background-color: #000000; */
    background-image: url(../img/twin-tower-banner.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}



#demo {
  height:100%;
  position:relative;
  overflow:hidden;
}


.green{
  background-color:#6fb936;
}
        .thumb{
            margin-bottom: 30px;
        }
        
        .page-top{
            margin-top:85px;
        }

   
img.zoom {
    width: 100%;
   
    border-radius:5px;
    object-fit:cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}
        
 
.transition {
    -webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
    .modal-header {
   
     border-bottom: none;
}
    .modal-title {
        color:#000;
    }
    .modal-footer{
      display:none;  
    }




 @media (max-width: 1420px) {

  .counter-card span.counter {
   
    font-size: 90px;
   
}
.section-padding {
    padding: 60px 20px;
}
.section-heading {
    font-size: 40px;
  
}
.counter-card p {
    font-size: 15px;
   
}
.about-objectives-list h3 {
    font-size: 22px;
    color: #242424;
    margin-bottom: 23px;
    
}
}


.site-header .site-nav {
    display: flex;
}

/* Mobile Menu Hidden */
#close-tgl {
    width: 50px;
    height: 50px;
    background: #a28c72;
    border: 0;
    color: #fff;
    border-radius: 2px;
    line-height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
#close-tgl .lnr {
    font-size: 24px;
}
@media (max-width: 991px) {
  #close-tgl {
    display: inline-block;
  }
}
.mobile-menu {
    display: none;
    background: #bda588;
    color: #fff;
    padding: 65px 30px 40px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all 0.4s ease-in;
}
@media (max-width: 991px) {
  .mobile-menu {
    display: block;
  }
  .mobile-active .mobile-menu {
      transform: none;
  }
}
.mobile-menu .nav-link {
    padding: 15px 30px 15px 0;
}

.mobile-menu .nav-link .lnr {
    position: absolute;
    right: 0;
    top: 18px;
}
#menu-tgl {
    display: none;
    width: 50px;
    height: 50px;
    background: #bc986b;
    border: 0;
    color: #fff;
    border-radius: 2px;
    line-height: 60px;
}

#menu-tgl .lnr {
    font-size: 24px;
}
@media (max-width: 991px) {
    #menu-tgl {
      display: inline-block;
    }
}
@media (max-width: 1200px) {
.site-banner {
    position: relative;
    width: 100%;
    padding-top: 69%;
    overflow: hidden;
}
.amenities-img img {
    max-width: 56px;
}
.amenities-info h4 {
    font-size: 17px;
    margin-top: 13px;
}
.amenities-card {
 
    padding: 20px 0px;
}
.header-content {
    align-items: center;
    justify-content: space-between;
    margin: 0 30px;
}
.about_us_page .image-content img{
  width: 100%;
}
.about_us_page .about-content span {
    margin-top: 40px;
}
.our_leadership_page_content.pl-4 {
    margin-top: 40px;
    text-align: center;
}
}

@media (max-width: 991px) {


    .banner-content p {
    font-size: 15px;
    color: var(--info-color);
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 25px;
}

.banner-content h1 {
    font-size: 40px;
   
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.banner-content {
    position: absolute;
   
    text-align: center;
    z-index: 1;
    max-width: 490px;
    padding: 0px 40px;
    top: 50%;
}
.counter-card p {
    font-size: 13px;
}
.counter-card span.counter {
    font-size: 60px;
}
.news-info h3, .news-info h3 a {
   
    font-size: 21px;
    line-height: 31px;
}
  .banner-content {
    width: 100%;
    text-align: center;
    padding: 0 15px;
  }

  .about_us .image-content img {

    width: 100%;
  }
  .banner-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  

 
  

  .about-info {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-objectives .row {
    flex-direction: column;
  }

  .about-objectives .col-md-6 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-img img {
    width: 100%;
    border-radius: 8px;
  }

  /* Counter Cards */
  .about-counter {
    margin-top: 20px;
  }

  .counter-card {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Featured Projects */
  

  .project-card {
    margin-bottom: 20px;
  }

  /* Why Choose Us Section */
  

  .image-slider,
  .text-slider {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .text-slider-inner {
    padding-left: 0;
}
  

  .news-card {
    margin-bottom: 20px;
  }

  /* General Typography Fix */
  h2.section-heading {
    font-size: 31px;
    line-height: 1.4;
}
  p.section-info {
    font-size: 15px;
  }
  .about-objectives a {
    margin-left: 30px;
}
.about-objectives-list {
    margin-bottom: 0;
    padding: 20px 20px;
}
.about-content {
    padding-left: 0px;
    margin-top: 40px;
   text-align: center;
}
.about-content span {
    margin-top: 40px;
}
.page-title h1 {
    font-size: 24px;
    line-height: 34px;
}
.our-leadership-content {
   
    text-align: center;
}
.section-padding {
    padding: 60px 0;
}
.subheading {
   
    margin-bottom: 10px;
    
}
.brand-roots {
 
    padding: 60px 0;
    overflow: hidden;
}
.brand_philosophy-content h2 {
    font-size: 26px;
    line-height: 37px;
}
/*.about-content p {
    margin-top: 40px;
}
*/
.twin-info {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
}
.floor-info {
    padding: 40px 10px;
    text-align: center;
}
.contact-arrow .section-heading {
    font-size: 25px;
   
}
.floor-info p {
 
    font-size: 16px;
   
    line-height: 32px;
}
.twin-towers-cnt h4 {
    font-size: 23px;
    line-height: 39px;
}
.amenities-card {
    padding: 20px 10px;
}

.page-top {
    margin-top: 60px;
}
.contact-arrow {
   
    padding: 50px 20px;
}
.construction-info {
    padding: 13px 0px 0px;
   
    margin-bottom: 40px;
}
.construction-info h4 {
    font-size: 19px;
    font-weight: 500;
}
.leadership-info h3 {
   
    font-size: 28px;
}
.leadership-info .subheading {
    margin-bottom: 10px;
    font-size: 12px;
}
.our_leadership_page_content.pl-4 {
    margin-top: 40px;
    text-align: center;
}
.amenities-img img {
    max-width: 61px;
}
.amenities-info h4 {
    font-size: 16px;
    margin-top: 13px;
    line-height: 24px;
}
}

/* ==============================
   RESPONSIVE STYLES â‰¤ 767px
   ============================== */
@media (max-width: 767px) {

  .page-title {
        padding: 180px 40px;
}

.our_leadership_page_content.pl-4 {
    margin-top: 40px;
    text-align: center;
}
.our-leadership-content h2 {
    margin-top: 40px;
}


.leadership-info h3 {
    font-size: 25px;
}

.subheading {

    font-size: 12px;
   
}

  .banner-content {
    width: 90%;
    padding: 0 15px;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .banner-content {
  
    top: 39%;
}

  .banner-content li {
    width: 100%;
    margin: 0 !important;
  }

  

  /* About Section */
  .counter-card span.counter {
    font-size: 60px;
}

  .about-info {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-objectives .row {
    flex-direction: column;
  }

  .about-objectives .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-img img {
    width: 100%;
    height: auto;
  }

  .about-objectives-list h3 {
    font-size: 20px;
}

  .about-objectives-list p {
    font-size: 15px;
  }

  /* Counter Cards */
  .counter-card h4 {
    font-size: 17px;
  }

  .counter-card p {
    font-size: 15px;
  }

  /* Featured Projects */
  .featured-section .row {
    flex-direction: column;
  }

  .project-card {
    margin-bottom: 20px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card p {
    font-size: 14px;
  }

  /* Why Choose Us Section */
  
  .image-slider, .text-slider {
    width: 100%;
    margin-bottom: 20px;
  }

  .text-slider-inner h3 {
    font-size: 17px;
  }

  .text-slider-inner p {
    font-size: 14px;
  }

  /* News Section */
  .news-section .row {
    flex-direction: column;
  }

  .news-card {
    margin-bottom: 20px;
  }

  .news-card h3 {
    font-size: 17px;
  }

  .news-card p {
    font-size: 14px;
  }

  /* General Typography */
  h2.section-heading {
    font-size: 30px;
    line-height: 1.3;
}

  p.section-info {
    font-size: 14px;
  }


.site-footer-contact .footer-contact-inner {
    text-align: center;
  }

  .site-footer-contact .row {
    flex-direction: column;
    align-items: center;
  }

  .site-footer-contact .col-md-4 {
    width: 100%;
    margin-bottom: 20px;
  }

  .site-footer-contact address {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .social-links ul {
    justify-content: center;
  }

  .social-links ul li {
    margin: 0 5px;
  }

  .social-links ul li img {
    width: 30px;
    height: auto;
  }

  /* Footer Main Section */
  .footer-main .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-main .col-md-3 {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-links,
  .footer-focused-links {
    padding: 0;
    list-style: none;
  }

  .footer-links li,
  .footer-focused-links li {
    margin-bottom: 10px;
  }

  .footer-links li a,
  .footer-focused-links li a {
    font-size: 14px;
    display: inline-block;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
  }

  .copyright {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
  }

  /* Modal */
  .modal-dialog {
    max-width: 95%;
    margin: 30px auto;
  }

  .modal-content iframe {
    width: 100%;
    height: auto;
  }

  .modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    z-index: 10;
  }
  .about-objectives-list h3 .icon {
   
    background: #bda588;
  
   
   
  
    top: -18px;
    text-align: center;
}

.about-objectives-list {
    margin-bottom: 0;
    padding: 20px 20px 0px 20px;
}
.about-objectives a {
    
    text-align: center;
    align-items: center;
    justify-content: center;
}
.text-slider-inner {
    padding-left: 0;
    text-align: center;
}
.news-info {
    padding-top: 25px;
    text-align: center;
    margin-bottom: 40px;
}
.leadership-card {
    margin-bottom: 40px;
}
.project-info {
    padding: 0 0px 30px 10px;
    text-align: center;
}
.text-slider .slick-arrow::before {
   
    top: 18px;
    width: 8px;
    height: 8px;
   
}
.text-slider .slick-list {
    
    margin-right: 0;
  
}
.text-slider .slick-arrow {
    position: absolute;
    right: 20px;
    top: 7%;
    width: 40px;
    height: 40px;
    background: var(--info-color);
    border: 0;
    font-size: 0;
    transform: translateY(-50%);
    z-index: 1;
    transition: var(--primary-transition-effect);
}
.image-slider {
   
    margin-left: 10px;
}
.why-slider {
    padding: 10px 0;
    margin-top: 40px;
    
}
.site-footer-contact .section-heading {
    margin-bottom: 20px;
    font-size: 27px;
}
.footer-contact-inner {
    
    padding-bottom: 20px;
}
.site-banner {
   
    padding-top: 90%;
    
}

.page-top-gallery {
    margin-top: -30px;
}
.video-aarav iframe {
    height: 500px;
}
.footer-main p.copyright {

    margin-top: 0px;
}
.navbar-brand img {
    max-width: 90%;
}
}



/* ==============================
   RESPONSIVE STYLES  575px
   ============================== */
@media (max-width: 575px) {

  .header-content {
    align-items: center;
    justify-content: space-between;
    margin: 0 16px;
}
  .banner-content {
   
    padding: 0 10px;
  }

  .banner-content h1 {
    font-size: 32px;
    line-height: 1.2;
}
  .banner-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .banner-content ul {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .banner-content li {
    width: 100%;
  }

  #menu-tgl {
    width: 40px;
    height: 40px;
    line-height: 50px;
}

.navbar-brand img {
    max-width: 80%;
}

  /* About Section */
  .about-section .row {
    flex-direction: column;
  }

  .about-info {
    text-align: center;
    margin-bottom: 15px;
  }

  .about-objectives .row {
    flex-direction: column;
  }

  .about-objectives .col-md-6 {
    width: 100%;
    margin-bottom: 15px;
  }

  .about-img img {
    width: 100%;
    height: auto;
  }

  .about-objectives-list h3 {
    font-size: 16px;
  }

  .about-objectives-list p {
    font-size: 13px;
  }

  /* Counter Cards */
  .counter-card h4 {
    font-size: 16px;
  }

  .counter-card p {
    font-size: 12px;
  }

  /* Featured Projects */
  .featured-section .row {
    flex-direction: column;
  }

  .project-card {
    margin-bottom: 15px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card p {
    font-size: 13px;
  }

  /* Why Choose Us Section */
  

  .image-slider, .text-slider {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .text-slider-inner h3 {
    font-size: 16px;
  }

  .text-slider-inner p {
    font-size: 13px;
  }

  /* News Section */
  .news-section .row {
    flex-direction: column;
  }

  .news-card {
    margin-bottom: 15px;
  }

  .news-card h3 {
    font-size: 16px;
  }

  .news-card p {
    font-size: 13px;
  }

  /* General Typography */
 h2.section-heading {
    font-size: 25px;
    line-height: 37px;
}
.subheading {
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
}
  p.section-info {
    font-size: 14px;
  }

  .site-footer-contact .footer-contact-inner {
    text-align: center;
  }

  .site-footer-contact .row {
    flex-direction: column;
    align-items: center;
  }

  .site-footer-contact .col-md-4 {
    width: 100%;
    margin-bottom: 15px;
  }

  .site-footer-contact address {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
  }

  .social-links ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-links ul li {
    margin: 0 4px 8px 4px;
  }

  .social-links ul li img {
    width: 16px;
    height: auto;
}

  /* Footer Main Section */
  .footer-main .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-main .col-md-3 {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-links,
  .footer-focused-links {
    padding: 0;
    list-style: none;
  }

  .footer-links li,
  .footer-focused-links li {
    margin-bottom: 8px;
  }

  .footer-links li a, .footer-focused-links li a {
    font-size: 15px;
    display: inline-block;
}

  .footer-heading {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

  .copyright {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }

  /* Modal */
  .modal-dialog {
    max-width: 100%;
    margin: 20px auto;
  }

  .modal-content iframe {
    width: 100%;
    height: auto;
  }

  .modal-content .close {
    top: 8px;
    right: 10px;
    font-size: 22px;
  }

  /* Buttons & Links */
  .primary-button {
    
    font-size: 13px;
    padding: 10px 16px;
}

  .site-banner {
    position: relative;
    width: 100%;
    padding-top: 130%;
    overflow: hidden;
}

.counter-card span.counter-img {
  
    width: 40px;
    height: 36px;
    margin-right: 12px;
}
.about-objectives {
   
    margin-top: 40px;
    
}

.project-info {
  
    padding: 0 0px 30px 10px;
    
}
.walkthrough-video {
   
    padding: 150px 0;
    
}
.news-info h3, .news-info h3 a {
    color: var(--dark-color);
    font-size: 19px;
    margin-bottom: 15px;
}
.amenities-info h4 {
    font-size: 18px;
    margin-top: 13px;
}
.amenties-section {
    background-color: #f7f2ee;
    padding: 70px 0;
}
.counter-card span.counter {
    font-size: 40px;
}
.contactUs-content iframe {
    padding-right: 0;
}
.about-img {
   
    left: 10px;
   
}
.footer-main p.copyright {
 
    margin-top: 0;
}

.custom-file-upload {
  
    font-size: 12px;
    
}
.contact-list a {
   
    font-size: 17px;
   
}
.banner-content {
    top: 32%;
}


.about-content p {
    margin-top: 0;
}
.brand_philosophy-content h2 {
    font-size: 23px;
    line-height: 35px;
}
.about-content p {
    font-size: 16px;
    line-height: 28px;
   
}
}
@media (max-width: 375px) {
.banner-content {
    top: 29%;
}
.site-banner {
   
    padding-top: 190%;
   
}
.about-objectives {
    padding: 35px 0;
  
}
.about-img {
   
    left: 10px;
    
}
.twin-towers-cnt h4 {
    font-size: 19px;
    line-height: 32px;
}
.about-objectives a {
    margin-left: 20px;
}
}

.custom-file-upload {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    /* border: 1px solid #ced4da;
    border-radius: .25rem; */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    overflow: hidden;
}


.career-button {
    padding-left: 20px;
}



.page-top-gallery {
    margin-bottom: 100px;
}







@media (max-width: 991px) {
  .left-menu.site-nav, .right-menu.site-nav {
      display: none;
  }
  .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      border-radius: 0;
      width: 100%;
      transform: none;
      background: transparent;
      padding-top: 0;
      padding-left: 10px;
      padding-right: 0;
      display: none;
  }
  .submenu a {
      text-transform: capitalize;
  }
  .mobile-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-menu .submenu.open {
    max-height: 500px;
    display: block;
  }
  .contactUs-content iframe {
    padding-right: 0px;
}
}

.inner-page-banner-contact {
    background-image: url(../img/contact-banner.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}






.social-li-nks {
    position: fixed;
    bottom: 10px;
    z-index: 9999;
    right: 10px;
    width: auto;
    text-align: left;
    float: left;
}
.social-li-nks img {
    background: #ffffff;
    border-radius: 5px;
}
.social-li-nks ul
{
    display: flex;
    flex-wrap: wrap;
}
.social-li-nks ul li a img
{
    width: 50px;
    transition:all ease-in-out 0.3s;
}
.social-li-nks ul li a {
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
}
.social-li-nks ul li
{
    margin-right: 15px;
}
/*.social-li-nks ul li a:hover img
{
    box-shadow: 0 0 10px 1px #51af64;
}*/



