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

:root {
  --bg-primary: #e6f0ff;
  --bg-light-primary: #f5fafe;
  --text-heading: #000336;
  --btn-bg: #0f1b4c;
  --text-normal: #5a6473;
  --text-primary: #4f5361;
  --text-blue: #0689ff;
  --card-bg: #17275f;
  --text-black: #000000;
  --text-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: white;
}

#cursor {
  display: none;
  width: 0px;
  height: 0px;
  background-color: black;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  filter: invert(1) contrast(1.5);
  z-index: 1000 !important;
}

.carousel-container {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  width: 100%;
  min-width: 100%;
  object-fit: cover;
}

.nav-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-90%);
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 50%;
  padding: 10px;
  outline: none;
  user-select: none;
  width: 40px;
  height: 40px;
}

.nav-btn-left {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  top: 50%;
  transform: translateY(-90%);
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 50%;
  /* padding:10px; */
  outline: none;
  user-select: none;
  width: 40px;
  height: 40px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.indicator-container {
  text-align: center;
  margin-top: 20px;
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: #333;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  color: var(--text-normal);
}

button {
  outline: none;
  border: 0;
  background: transparent;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

h2 {
  color: var(--text-heading);
  font-size: 2rem;
}

.container {
  width: 85vw;
  max-width: 1110px;
  margin: auto;
}

#logo {
  height: 1.4rem;
}

header {
  background-color: var(--bg-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-items ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-items ul li a {
  color: var(--text-primary);
  font-weight: 500;
}

.nav-items ul li a:hover {
  color: var(--text-black);
}

.btn {
  padding: 8px 20px;
  border-radius: 10px;
}

.btn-dark {
  background-color: var(--btn-bg);
  color: var(--text-white);
}

#toggle-btn {
  z-index: 999;
  height: 2rem;
  cursor: pointer;
  display: none;
}

@media (max-width: 900px) {
  #toggle-btn {
    display: block;
  }

  .nav-items {
    flex-direction: column;
    position: fixed;
    height: 100vh;
    background-color: white;
    right: 0;
    top: 0;
    width: 85vw;
    max-width: 400px;
    justify-content: center;
    transition: 0.5s ease;
  }

  .nav-items ul {
    flex-direction: column;
  }

  .-right-100 {
    right: -100%;
  }
}

/* Home */

#home {
  background-color: var(--bg-primary);
  height: 100vh;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.home-container .home-left {
  flex: 1;
}

.home-container .home-left h1 {
  font-size: 3.2rem;
  color: var(--text-heading);
}

.home-container .home-left p {
  color: var(--text-normal);
  line-height: 2rem;
}

.home-container .home-right {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.home-right img {
  width: 100%;
  max-width: 550px;
}

@media (max-width: 900px) {
  #home {
    height: auto;
    min-height: 100vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .home-container {
    flex-direction: column-reverse;
    gap: 2.5rem;
    text-align: center;
  }

  .home-container .home-left h1 {
    font-size: 2rem;
  }

  .home-container .home-left p {
    font-size: 0.9rem;
  }
}

/* About */
.about-container {
  padding: 5.5rem 0;
}

.about-rating {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 1.5rem;
}

.about-rating .stars {
  display: flex;
  justify-content: end;
  margin-bottom: 0.45rem;
}

.stars img {
  height: 1.3rem;
}

.about-companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding-top: 4rem;
}

.about-guidelines {
  padding: 3rem 0;
  text-align: center;
}

.about-guidelines--content h2 {
  color: var(--text-heading);
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
}

.top-line {
  height: 0.35rem;
  border-radius: 0.35rem;
  width: 4rem;
  background-color: var(--text-heading);
}

.about-guidelines--content .top-line {
  margin: 0.5rem auto;
}

.guide-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 7rem;
  padding-top: 4rem;
}

.guide-box img {
  height: 3rem;
}

.guide-box h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 0.55rem;
}

.guide-box button {
  color: var(--text-blue);
}

@media (max-width: 900px) {
  .about-rating {
    gap: 2rem;
    text-align: center;
    justify-content: center;
  }

  .about-rating .stars {
    justify-content: center;
  }

  .about-guidelines--content h2 {
    font-size: 1.85rem;
  }
}

/* feature */

#feature {
  background-color: var(--bg-light-primary);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.feature-container h2 {
  color: var(--text-heading);
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
}

.feature-container div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.arrow {
  width: 1.95rem;
}

.feature-container button {
  color: var(--text-blue);
}

.feature-imgs-container {
  padding-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-box {
  background-color: #ffffff;
  min-width: 240px;
  max-width: 240px;
  /* max-height: 380px; */
}

.feature-box .banner {
  width: 100%;
  background-size: cover;
  background-position: fill;

}

.banner img {
  width: 100%;
  max-height: 146px;
  min-height: 146px;
}

.feature-box h4 {
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 7px;
}

.feature-box-content-items {
  display: none;
  gap: 1.3rem;
  margin-top: 10px;
}

.feature-box-content-items img {
  height: 1rem;
}

.feature-box-content-items div {
  font-weight: 500;
}

.feature-box-content {
  padding: 16px;
}

@media (max-width: 900px) {
  .feature-container h2 {
    font-size: 1.5rem;
  }

  #feature {
    padding: 2rem 0;
  }

  .feature-container div {
    gap: 1rem;
  }
}

.service-container {
  display: flex;
  gap: 2.5rem;
  padding: 3rem 0;
}

.service-container div {
  flex: 1;
}

.service-container img {
  width: 100%;
  max-width: 450px;
}

.service-container .top-line {
  margin-top: 5rem;
}

.service-container p {
  margin-top: 10px;
  font-size: 0.83rem;
}

.service-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .service-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.residential-container {
  display: flex;
  gap: 2.5rem;
  padding: 3rem 0;
}

.residential-container div {
  flex: 1;

}

.residential-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.residential-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}

.residential-container .top-line {
  margin-top: 5rem;
}

.residential-container p {
  margin-top: 10px;
  text-align: center;
}

.residential-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .residential-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}


.commercial-container {
  display: flex;
  gap: 2.5rem;
  padding: 3rem 0;
}

.commercial-container div {
  flex: 1;

}

.commercial-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.commercial-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.358);
}

.commercial-container .top-line {
  margin-top: 5rem;
}

.commercial-container p {
  margin-top: 10px;
  font-size: 0.83rem;
}

.commercial-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .commercial-container {
    flex-direction: column-reverse;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.info-box {
  margin: 8rem auto;
  max-width: 60rem;
  border-radius: 1rem;
  background-color: var(--card-bg);
  color: var(--text-white);
  padding: 6%;
  position: relative;
}

.info-box img {
  height: 26rem;
  position: absolute;
  bottom: 0;
  object-fit: cover;
  right: 5rem;
}

.info-box h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-box button {
  background: white;
  color: var(--card-bg);
  font-weight: 600;
  margin-top: 2rem;
  padding: 0.8rem 1.2rem;
}

@media (max-width: 900px) {
  .info-box img {
    display: none;
  }

  .info-box {
    text-align: center;
    margin: 3rem auto;
  }

  .info-box h3 {
    font-size: 1.8rem;
  }
}

/* footer */

footer {
  padding-top: 4rem;
}

.footer-container {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  /* align-items: center; */
}



.footer-container h3 {
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.footer-container ul li a,
.footer-container span {
  color: var(--text-primary);
  line-height: 2.4rem;
  font-size: 12px;
}

.footer-container ul li a:hover {
  color: #0f1b4c;
}

.footer-container div {
  max-width: 25rem;
}

@media (max-width: 900px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 3rem;
  }
}

.social-icons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-icons img {
  object-fit: cover;
  height: 1.2rem;
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  margin-top: 2.5rem;
}

.copyright a {
  text-decoration: none;
}

/* Service Page */

#service-page {
  background-color: var(--bg-primary);
  height: 100vh;
}

.service-page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.service-page-container .service-page-left {
  flex: 1;
}

.service-page-container .service-page-left h1 {
  font-size: 2.2rem;
  color: var(--text-heading);
}

.service-page-container .service-page-left p {
  color: var(--text-normal);
  line-height: 2rem;
}

.service-page-container .service-page-right {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-page-right img {
  width: 100%;
  max-width: 550px;
}

@media (max-width: 900px) {
  #service-page {
    height: auto;
    min-height: 100vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .service-page-container {
    flex-direction: column-reverse;
    gap: 2.5rem;
    text-align: center;
  }

  .service-page-container .service-page-left h1 {
    font-size: 2rem;
  }

  .service-page-container .service-page-left p {
    font-size: 0.9rem;
  }
}

.container-box-invest {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.invest-tgr-container {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.invest-tgr-container div {
  flex: 1;
  align-items: center;
}

.invest-tgr-img {
  display: flex;
  align-items: center;
}

.invest-tgr-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.invest-tgr-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.invest-tgr-container p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.invest-tgr-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .invest-tgr-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.container-box-brokerage {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.brokerage-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.brokerage-container div {
  flex: 1;
  align-items: center;
}

.brokerage-img {
  display: flex;
  align-items: center;
}

.brokerage-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.brokerage-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.brokerage-container p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.brokerage-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .brokerage-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}


.container-box-lease {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.lease-container {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.lease-container div {
  flex: 1;
  align-items: center;
}

.lease-img {
  display: flex;
  align-items: center;
}

.lease-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.lease-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.lease-container p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.lease-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .lease-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}


.container-box-property {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.property-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.property-container div {
  flex: 1;
  align-items: center;
}

.property-img {
  display: flex;
  align-items: center;
}

.property-container img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.property-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.property-container p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.property-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .property-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ---------residential-------- */

.residential-page-right {
  width: 100%;
  max-width: 600px;
}

.container-box-map {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.residential-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.residential-map-img {
  display: flex;
  align-items: center;
}

.residential-map img {
  width: 100%;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.container-box-real-estate-investment {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.real-estate-investment-container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.real-estate-investment-container div {
  flex: 1;
  align-items: center;
}

.real-estate-investment-img {
  display: flex;
  align-items: center;
}

.real-estate-investment-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.real-estate-investment-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.real-estate-investment-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.real-estate-investment-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .real-estate-investment-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.container-box-trustee-sale-investments {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.trustee-sale-investments-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.trustee-sale-investments-container div {
  flex: 1;
  align-items: center;
}

.trustee-sale-investments-img {
  display: flex;
  align-items: center;
}

.trustee-sale-investments-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.trustee-sale-investments-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.trustee-sale-investments-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.trustee-sale-investments-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .trustee-sale-investments-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.container-box-rental-properties {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.rental-properties-container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.rental-properties-container div {
  flex: 1;
  align-items: center;
}

.rental-properties-img {
  display: flex;
  align-items: center;
}

.rental-properties-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.rental-properties-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.rental-properties-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.rental-properties-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .rental-properties-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.container-box-distressed-notes {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.distressed-notes-container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.distressed-notes-container div {
  flex: 1;
  align-items: center;
}

.distressed-notes-img {
  display: flex;
  align-items: center;
}

.distressed-notes-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.distressed-notes-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.distressed-notes-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.distressed-notes-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .distressed-notes-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}


.container-box-san-jose-development {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.san-jose-development-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.san-jose-development-container div {
  flex: 1;
  align-items: center;
}

.san-jose-development-img {
  display: flex;
  align-items: center;
}

.san-jose-development-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.san-jose-development-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.san-jose-development-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.san-jose-development-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .san-jose-development-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.container-box-funds-and-syndications {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

}

.funds-and-syndications-container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.funds-and-syndications-container div {
  flex: 1;
  align-items: center;
}

.funds-and-syndications-img {
  display: flex;
  align-items: center;
}

.funds-and-syndications-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.358);
}


.funds-and-syndications-container ul {
  list-style-type: circle;
}



ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}


.funds-and-syndications-container p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.funds-and-syndications-counts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.count {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .funds-and-syndications-container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* -------start-About-us------ */
.about_banner {
  position: relative;
  text-align: center;
}

.about_banner img {
  width: 100%;
  height: 300px;
  object-position: top;
}

.about_banner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  /* font-weight: lighter; */
}

.about_banner h5 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: lighter;
}

.about-us {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  align-items: center;
  gap: 50px;
}

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-left {
  width: 50%;
}

.about-us-right {
  width: 50%;
  display: flex;
  align-items: center;
}

.team {
  display: flex;
  gap: 75px;
  text-align: center;
  padding: 150px 0;
  justify-content: space-evenly;
}

.team-container {
  /* border: solid 1px #a8a8a8c9; */
  border-radius: 15px;
  padding: 30px 60px;
  box-shadow: 4px 4px 20px rgba(99, 99, 99, 0.669);
}

.team-container p {
  font-size: 0.9rem;
}

.team-left {
  width: 45%;
  overflow: hidden;
}

.team-left img {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.team-right img {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
}

.team-right {
  width: 45%;
}

.team-right h3 {
  padding: 20px;
  font-size: 1.5rem;
}

.team-left h3 {
  padding: 20px;
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .bottem {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .about-us-left {
    width: 100%;
    padding: 50px 0px;
  }

  .team {
    flex-wrap: wrap;
    padding: 50px 0;
  }

  .team-left {
    width: 1000%;
    overflow: hidden;
  }

  .team-right {
    width: 100%;
  }

  .team-left img {
    width: 200px;
    height: 200px;

  }

  .team-right img {
    width: 200px;
    height: 200px;
  }
}