@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* Variables start */
:root {
  --clr-white: #ffffff;
  --clr-black: #000000;
  --dim-white: #f2f2f2;
  --primary-yellow: #eacd15;
  --dark-blue: #03023a;
  --light-gray: #d9d9d9;
  --dark-gray: #3d424d;
  --secondary-white: #dee7ed;
  --bluish-white: #f5f7fc;
  --light2-gray: #cccccc;
  --periwinkle: #989ab2;
}
/* Variables end */

/* Global start */
html {
  font-size: 10px;
}

.container {
  padding: 0 15px;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  background-color: var(--clr-white);
  font-size: 18px;
  color: var(--dark-blue);
}

/* line height start */

.lh-2 {
  line-height: 2;
}

/* line height end */

/* Margin start */
.mb-40 {
  margin-bottom: 4rem;
}
/* Margin end */

img {
  max-width: 100%;
}
.g-80 {
  --bs-gutter-x: 8rem;
  --bs-gutter-y: 8rem;
}
/* Global end */

/* Font size start */
h1,
.h1 {
  font-size: 5.6rem;
}

h2,
.h2 {
  font-size: 4rem;
}

.h2.small,
h2.small {
  font-size: 3.2rem;
}

h3,
.h3 {
  font-size: 24px;
}

.h3.small,
h3.small {
  font-size: 20px;
}

h4,
.h4 {
  font-size: 18px;
}

h4.small {
  font-size: 16px;
}

h5,
.h5 {
  font-size: 14px;
}

h5.small {
  font-size: 13px;
}

h6,
.h6 {
  font-size: 12px;
}

.p,
p {
  font-size: 18px;
  color: var(--dark-blue);
}

.font-16 {
  font-size: 16px;
}

/* Font size end */

/* Font weight start */
.fw-800 {
  font-weight: 800;
}
/* Font weight end */

/* Text color start */
.white {
  color: var(--clr-white);
}

.dark-blue {
  color: var(--dark-blues);
}

.secondary-white {
  color: var(--secondary-white);
}

.dark-gray {
  color: var(--dark-gray);
}

.dark-blue {
  color: var(--dark-blue);
}

.black {
  color: var(--clr-black);
}
.light-gray {
  color: var(--light-gray);
}
.light2-gray {
  color: var(--light2-gray);
}
.periwinkle {
  color: var(--periwinkle);
}
/* Text color end */

/* Background color start */
.bg-bluish-white {
  background-color: var(--bluish-white);
}
/* Background color end */

/* Border radius start */

.border-radius-24 {
  border-radius: 2.4rem;
}

/* Border radius start */

/* Button start */
.elite-btn {
  border-radius: 8rem;
  font-size: 16px;
  min-width: 16.4px;
  padding: 13px 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Manrope";
  text-transform: capitalize;
  transition: all 0.3s;
}
.yellow-btn {
  border: none;
  background-color: var(--primary-yellow);
}
.border-btn {
  border: 1px solid var(--clr-white);
  background-color: transparent;
}
.elite-btn.border-btn:hover {
  border: 1px solid var(--primary-yellow);
  transition: all 0.3s;
  color: var(--primary-yellow);
}
.elite-btn.yellow-btn:hover {
  transition: all 0.3s;
  background-color: #d8bf1d;
}
/* Button end */

/* Spacing start */
.space-top {
  padding-top: 12rem;
}

.space-bottom {
  padding-bottom: 12rem;
}
/* Spacing end */

/* Responsive start */
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1550px;
  }
}
/* Responsive end */

/* Header start */

.nav-link-list .nav-link-wrap a.active-link {
  color: var(--clr-white);
}

.nav-link-list .nav-link-wrap a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--clr-white);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  transition: all 0.2s;
}

.nav-link-list .nav-link-wrap a:hover::before,
.nav-link-list .nav-link-wrap a.active-link::before {
  opacity: 1;
  visibility: visible;
}

.hamburger .line {
  width: 30px;
  height: 2px;
  background-color: var(--clr-white);
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger {
  border: none;
  background-color: transparent;
  z-index: 11;
  display: none;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.elite-header.header-color {
  background-color: var(--dark-blue);
  transition: all 0.2s ease-in-out;
}

.elite-header {
  transition: all 0.2s ease-in-out;
}

.elite-logo {
  max-width: 18.3rem;
  height: 5.2rem;
}

.elite-header-logo img {
  max-width: inherit;
  object-fit: contain;
}

.nav-link-list {
  list-style: none;
}
.elite-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.nav-link-list .nav-link-wrap a:hover {
  color: var(--clr-white);
  transition: all 0.2s;
}
.header-btn-wrap {
  display: flex;
}
.nav-link-list .nav-link-wrap a {
  color: var(--light-gray);
  transition: all 0.2s;
  position: relative;
}
.nav-link-list .nav-link-wrap:not(:last-of-type) {
  margin-right: 4rem;
}
.nav-link-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
.header-btn-wrap button:not(:last-of-type) {
  margin-right: 12px;
}
.nav-link-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 72%;
}
/* Header end */

/* Hero start */
.elite-hero {
  background-image: url("../images/backgrounds/Hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.elite-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    53.52deg,
    #182a4d 6.65%,
    rgba(24, 42, 77, 0) 67.15%
  );
  height: 100%;
  width: 100%;
  mix-blend-mode: hard-light;
  z-index: -1;
}
.hero-title {
  max-width: 665px;
  margin-bottom: 12px;
}
.hero-caption {
  max-width: 588px;
  margin-bottom: 32px;
}
/* Hero end */

/* Why Invest start */
.why-invest-point-wrap {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}
.why-invest-points-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.4rem;
  position: relative;
}
.why-invest-points-container .why-invest-point-wrap:nth-of-type(odd) {
  justify-content: flex-end;
}
.why-invest-points-container::after {
  content: "";
  position: absolute;
  right: calc(50% - 1px);
  width: 2px;
  height: 100%;
  background-color: var(--dim-white);
}
.why-invest-points-container::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  width: 75%;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: var(--dim-white);
}
.why-invest-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
  max-width: 105.4rem;
  height: 33.8rem;
}
.why-invest-img-wrap img {
  max-width: inherit;
  object-fit: cover;
}
/* Why Invest end */

/* Strategic Partnerships Start */
.strategic-partnerships-content {
  max-width: 133.8rem;
}
.strategic-partnerships-content p {
  color: var(--dark-gray);
}
.strategic-partnerships-img {
  padding-bottom: 116%;
}
/* Strategic Partnerships End */

/* Diverse Investment Portfolio Start */
.investment-portfolio {
  background: linear-gradient(135deg, #060f23 0%, #022c84 100%);
}
.investment-portfolio-img-wrapper h3 {
  transition: all 0.2s ease-in-out;
  bottom: -10%;
}
.investment-portfolio-img {
  max-width: 490px;
  max-height: 527px;
  padding-bottom: 98%;
  width: 100%;
  height: 100%;
  margin: auto;
}
.investment-portfolio-img img {
  width: inherit;
  height: inherit;
}
.investment-portfolio-img-wrapper:hover h3 {
  bottom: 20px;
}
.investment-portfolio-content {
  color: var(--secondary-white);
}
/* Diverse Investment Portfolio End */

/* Mitigating Risks Start */
.mitigating-risks .nav .nav-link {
  background: var(--clr-white);
  line-height: 1.5;
  color: #182a4d;
  padding: 4.8rem 0rem 4.8rem 3.2rem;
  border-left: 4px solid;
  border-color: transparent;
  width: 100%;
}

.mitigating-risks .nav .nav-link.active {
  color: var(--dark-blue);
  border-left: 4px solid;
  border-color: var(--primary-yellow);
}

.mitigating-risks-pills-img-wrapper {
  padding-bottom: 41%;
}
/* Mitigating Risks End */

/* Our Core Values Start */
.core-value-wrapper {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
}

.core-value-box:not(:first-child) {
  background: var(--clr-white, #fff);
  padding: 5.6rem;
  border-radius: 20px;
}

.core-value-box-icons {
  width: 8rem;
  height: 8rem;
}

.core-value-box-icons img {
  width: inherit;
  height: inherit;
}
/* Our Core Values End */

/* Client-Centric Approach Start */
.client-approach-wrapper {
  background: var(--bluish-white);
}
.client-approach-content-wrapper {
  max-width: 63.8rem;
}
.client-approach-content-wrapper h2 {
  color: var(--dark-blue);
}
.client-approach-content-wrapper p {
  color: var(--dark-gray);
}
.client-approach-img-wrapper {
  max-width: 774px;
  max-height: 100%;
}
.client-approach-wrapper-img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  width: inherit;
  height: inherit;
  background-position: right;
}
/* Client-Centric Approach End */

/* Join Us start */

.join-us {
  position: relative;
  background-image: url("../images/backgrounds/Join-us-realizing-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-top: 17.6rem;
}

.join-us-description {
  max-width: 92rem;
  margin-bottom: 3.2rem;
}
.join-us-img-wrap {
  max-width: 59.7rem;
  height: 72.3rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.join-us-img-wrap img {
  max-width: inherit;
  object-fit: contain;
}
.join-us .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Join Us end */

/* About us start */

.about-us-text {
  padding-top: 6.7rem;
  padding-bottom: 4.3rem;
  border-radius: 5rem;
  background-color: var(--bluish-white);
  margin-top: -24px;
}

.about-us-text-description {
  max-width: 129.5rem;
  margin: 0 auto;
}
.about-us-img-wrapper {
  position: relative;
  padding-bottom: 23%;
  width: 100rem;
  margin: 0 auto;
  object-fit: cover;
}

.custom-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* About us end */

/* Who we are start */
.who-we-are-img-row {
  display: flex;
}

.who-we-are-inner-img-wrapper {
  max-width: 100%;
  width: 100%;
}
.who-we-are-img-container {
  padding-bottom: 89%;
  position: relative;
}
.who-we-are-top-img-wrapper {
  width: 100%;
}
.who-we-are-top-img-container {
  padding-bottom: 43%;
  position: relative;
}
/* Who we are end */

/* Our mission start */
.our-mission-img-wrapper {
  position: relative;
  padding-bottom: 83.4%;
  width: 100%;
}
/* Our mission end */

/* Community Impact Start */
.community-impact {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url(../images/cover/Community-impact-bg.jpg),
    lightgray 0px -510.192px / 100% 320.397% no-repeat;
  background-position: center;
}
/* Community Impact End */

/* Our Expertise start */
.our-expertise-img-wrapper {
  position: relative;
  padding-bottom: 67.4%;
  width: 100%;
}
.elite-market-img-warpper,
.elite-page-img-wrapper {
  position: relative;
  padding-bottom: 66%;
  width: 100%;
}
/* Our Expertise end */

/* Footer start */
.elite-footer {
  background-color: var(--dark-blue);
}
.contact-detail-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-detail-wrap:not(:last-of-type) {
  margin-bottom: 10px;
}
.contact-detail-wrap svg {
  margin-right: 15px;
}
.email-input {
  background-color: transparent;
  border: 1px solid #292857;
  border-radius: 6rem;
  font-size: 16px;
  color: var(--light2-gray);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 59px;
  padding-right: 87px;
  width: 100%;
}
.email-input::placeholder {
  color: var(--light2-gray);
}
.email-input-wrap {
  position: relative;
}
.sms-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light2-gray);
}
.email-send-btn {
  padding: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 60px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-detail-title {
  margin-bottom: 20px;
}
.footer-logo-text {
  max-width: 59.6rem;
}
/* .contact-wrap{
  position: relative;
}
.contact-wrap::after{
  content: "";
  position: absolute;
  background-color: #292857;
  top: 0;
  right: calc(100% + 7.8rem);
  width: 1px;
  height: 100%;
}
.contact-wrap::before{
  content: "";
  position: absolute;
  background-color: #292857;
  top: 0;
  left: calc(100% + 7.8rem);
  width: 1px;
  height: 100%;
} */
.footer-separator {
  background-color: #292857;
  width: 1px;
  height: 11.3rem;
}
.footer-wrap {
  display: flex;
  margin-bottom: 10rem;
  align-items: center;
  justify-content: space-between;
}
.footer-inner-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #292857;
  max-width: 1440px;
  margin: auto;
}
.contact-detail-wrap:hover {
  color: var(--primary-yellow);
  transition: all 0.2s;
}
/* Footer end */

/* Rahul css start */
.page-banner {
  position: relative;
  height: 47rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: -1;
}
.page-banner-image {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  color: var(--clr-white);
  font-weight: 400;
}
.breadcrumb .breadcrumb-item a {
  color: var(--clr-white);
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item.active {
  font-weight: 700;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--clr-white);
}
.contact-form {
  max-width: 60%;
  padding: 12rem 6.4rem;
  margin: 0 auto;
}
.ev-input,
.ev-select {
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  transition: 0.3s border;
  border: 1px solid transparent;
  color: var(--clr-black);
  border-radius: 8px;
  width: 100%;
}
.ev-input:hover,
.ev-select:hover {
  border-color: var(--dark-blue);
}
.ev-input:focus,
.ev-select:focus {
  border-color: var(--dark-blue);
  box-shadow: none;
}
.ev-input:placeholder {
  color: #3e424c;
}
.ev-select {
  background-size: 20px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0003 14C9.41693 14 8.83359 13.775 8.39193 13.3334L2.95859 7.90003C2.71693 7.65837 2.71693 7.25837 2.95859 7.0167C3.20026 6.77503 3.60026 6.77503 3.84193 7.0167L9.27526 12.45C9.67526 12.85 10.3253 12.85 10.7253 12.45L16.1586 7.0167C16.4003 6.77503 16.8003 6.77503 17.0419 7.0167C17.2836 7.25837 17.2836 7.65837 17.0419 7.90003L11.6086 13.3334C11.1669 13.775 10.5836 14 10.0003 14Z' fill='%23292D32'/%3E%3C/svg%3E%0A");
}
.icon-input-wrap {
  position: relative;
}
.icon-input-wrap .ev-input {
  padding-right: 50px;
}
.icon-input-wrap .input-icon {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #070139;
}
textarea.ev-input {
  resize: none;
  height: auto;
}
.project-details {
  padding-bottom: 7rem;
}
.property-image {
  --bs-aspect-ratio: 33%;
  margin-bottom: 32px;
}
.property-image img {
  border-radius: 2.4rem;
}
.property-info-list {
  padding-left: 4rem;
  border-left: 1px solid #edf1fa;
  margin-left: 6rem;
  margin-bottom: 0;
}
.property-info-list li:not(:last-child) {
  margin-bottom: 24px;
}
.property-info-title {
  color: #86888c;
  margin-right: 5px;
}
/* Rahul css end */

/* Ongoing Projects Page Start */
.ongoing-projects-card-wrapper {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
}
.ongoing-projects-card {
  border-radius: 24px;
  border: 1px solid #ededed;
  padding: 8px 10px;
}
.on-going-property-title {
  color: #86888c;
  margin-right: 5px;
}
.project-card-img {
  padding-bottom: 56%;
}
.project-card-img img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.user-details-wrapper a {
  color: #2615ea;
}

.line-limit-3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* Ongoing Projects Page End */

.thanks-you-btn{
    width: max-content;
}


.thanks-you-img-wrapper {
    width: 70%;
    margin: auto;
}

.thanks-you-img-wrapper img{
    width: inherit;
    height: inherit;
}


.thanks-you-content {
    max-width: 86.2rem;
  }
  .thanks-you-img {
    max-width: 84px;
    max-height: 84px;
    margin: auto;
  }


/*  */
.odd td:not(:last-child) {
    width: 12% !important;
}
/*  */
