.property {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  gap: 10px;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px; /* prevents content from touching edges on small screens */
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .property {
    padding: 16px;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property {
    padding: 12px;
    gap: 6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property {
    padding: 8px;
    gap: 4px;
  }
}

.property .frame {
   display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  overflow-y: auto; /* better for responsiveness */
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame {
    padding: 6px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame {
    padding: 4px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame {
    padding: 2px 0;
  }
}

.property .frame::-webkit-scrollbar {
  width: 0;
  display: none;
}

.property .div {
  display: flex;
  flex-direction: column;
  width: 100%;              /* responsive width */
  max-width: 1440px;        /* limit for large screens */
  min-height: 693px;        /* allows content to grow */
  align-items: center;
  gap: 150px;
  padding: 19px 0;
  position: relative;
  background-color: #ffffff;
  margin: 0 auto;           /* center the container */
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .div {
    gap: 100px;
    padding: 16px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .div {
    gap: 60px;
    padding: 14px 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .property .div {
    gap: 40px;
    padding: 12px 0;
  }
}

.boraland-about-us .frame-2 {
  display: flex;
  width: 100%;          /* make it full width */
  max-width: 1364px;    /* keep original layout on large screens */
  height: 71px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: relative;
  border-radius: 12px;
  box-sizing: border-box; /* include padding in width */
}

/* Tablet */
@media (max-width: 1024px) {
  .boraland-about-us .frame-2 {
    padding: 10px 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .boraland-about-us .frame-2 {
    flex-direction: column;       /* stack logo + menu + contact */
    height: auto;                 /* allow height to adjust */
    align-items: center;
    gap: 12px;                    /* space between stacked items */
    padding: 10px 8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .boraland-about-us .frame-2 {
    gap: 8px;
    padding: 8px 6px;
  }
}

.boraland-about-us .WEBSITE-ICON-LOGO {
  position: relative;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0; /* remove negative margins for cleaner scaling */
}
/* Logo control */
.boraland-about-us .WEBSITE-ICON-LOGO {
  height: 40px;
  width: auto;
}
/* Tablet */
@media (max-width: 1024px) {
  .boraland-about-us .WEBSITE-ICON-LOGO {
    width: 56px;
    height: 56px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .boraland-about-us .WEBSITE-ICON-LOGO {
    width: 48px;
    height: 48px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .boraland-about-us .WEBSITE-ICON-LOGO {
    width: 40px;
    height: 40px;
  }
}

.boraland-about-us .frame-3 {
  display: flex;               /* changed inline-flex to flex */
  flex-wrap: wrap;             /* allow menu items to wrap on small screens */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  flex: 1;                     /* allow container to grow/shrink */
  border-radius: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .boraland-about-us .frame-3 {
    gap: 8px;
    padding: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .boraland-about-us .frame-3 {
    justify-content: center;    /* center wrapped items */
    gap: 6px;
    padding: 6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .boraland-about-us .frame-3 {
    gap: 4px;
    padding: 4px;
  }
}

.property .boraland-menus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.50px;
  margin-bottom: -6.50px;
  border-radius: 48px;
}

.property .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.property .about-us-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.50px;
  margin-bottom: -6.50px;
  background-color: #f3dc8e;
  border-radius: 48px;
}

.boraland-about-us .frame-wrapper {
  display: flex;                 /* changed inline-flex to flex */
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  margin: 0;                     /* remove negative margins */
}

/* Tablet */
@media (max-width: 1024px) {
  .boraland-about-us .frame-wrapper {
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .boraland-about-us .frame-wrapper {
    align-items: center;          /* center button on small screens */
    gap: 6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .boraland-about-us .frame-wrapper {
    gap: 4px;
  }
}

.boraland-about-us .frame-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;          /* use relative padding instead of fixed 5px top/bottom */
  position: relative;
  width: auto;                /* let width adjust based on content */
  max-width: 100%;            /* prevents overflow */
  border-radius: 32px;
  box-sizing: border-box;     /* ensures padding doesn’t break width */
}

/* Tablet */
@media (max-width: 1024px) {
  .boraland-about-us .frame-4 {
    padding: 7px 10px;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .boraland-about-us .frame-4 {
    padding: 6px 8px;
    gap: 6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .boraland-about-us .frame-4 {
    padding: 5px 6px;
    gap: 4px;
  }
}

.property .search-box {
  display: inline-flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.00px;
  margin-bottom: -6.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #2b2b2b;
  border-radius: 15px;
  border: 1px solid;
  border-color: transparent;
}

/* Base */
.property .text-wrapper-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #f3dc8e;
  font-size: 16px;   /* base font size for desktop */
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-2 {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-2 {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-2 {
    font-size: 13px;
  }
}

/* Base */
.property .path {
  position: relative;
  width: clamp(6px, 0.6vw, 8.53px);
  height: auto; /* maintains aspect ratio */
}

.property .frame-5 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1169px; /* keeps desktop layout */
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  margin: 0 auto; /* centers on smaller screens */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-5 {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-5 {
    gap: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-5 {
    gap: 12px;
  }
}
.property .frame-6 {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-6 {
    gap: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-6 {
    gap: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-6 {
    gap: 8px;
  }
}

.property .text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -8px;
  text-align: center;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-3 {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-3 {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -4px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-3 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -2px;
  }
}

.property .text-wrapper-4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  opacity: 0.64;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -8px;
  text-align: center;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-4 {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-4 {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -4px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-4 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -2px;
  }
}

.property .frame-7 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
  position: relative;
  flex: 0 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-7 {
    gap: 20px;
    padding: 6px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-7 {
    gap: 16px;
    padding: 4px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-7 {
    gap: 12px;
    padding: 2px 0;
  }
}

.property .boraland-provides {
  position: relative;
  width: 100%;
  max-width: 849px; /* keeps desktop width */
  margin-top: -1px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.40px;
  line-height: 1.4em; /* better scaling with font size */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .boraland-provides {
    font-size: 18px;
    max-width: 700px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .boraland-provides {
    font-size: 16px;
    max-width: 500px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .boraland-provides {
    font-size: 14px;
    max-width: 320px;
  }
}

.property .line {
  position: relative;
  width: 100%;          /* fill parent width */
  max-width: 544px;     /* keeps original desktop width */
  height: 1px;
  margin-bottom: -1px;
  object-fit: cover;
}

.property .he {
  position: relative;
  width: 100%;           /* fills parent width */
  max-width: 278px;      /* keeps original desktop size */
  height: 57px;
  border-radius: 32px;
  backdrop-filter: blur(6.5px) brightness(100%);
  -webkit-backdrop-filter: blur(6.5px) brightness(100%);
  background: linear-gradient(
      0deg,
      rgba(243, 220, 142, 0.92) 0%,
      rgba(243, 220, 142, 0.92) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  display: flex;          /* centers content inside */
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .he {
    max-width: 240px;
    height: 52px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .he {
    max-width: 200px;
    height: 48px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .he {
    max-width: 160px;
    height: 44px;
  }
}

.property .div-wrapper {
  display: flex;             /* changed inline-flex to flex for consistency */
  align-items: center;
  gap: 8px;
  position: relative;        /* allow it to stay inside the button naturally */
  width: 100%;               /* take full button width */
  justify-content: center;   /* center the text horizontally */
  padding: 0 12px;           /* add some horizontal padding */
  box-sizing: border-box;    /* include padding in width */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .div-wrapper {
    padding: 0 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .div-wrapper {
    padding: 0 8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .div-wrapper {
    padding: 0 6px;
  }
}
.property .frame-8 {
  display: flex;            /* inline-flex → flex for consistency */
  align-items: center;
  justify-content: center;  /* center content inside */
  gap: 8px;
  position: relative;
  flex: 1 1 auto;           /* allow it to shrink/grow inside the button */
  width: 100%;              /* take full button width */
  box-sizing: border-box;   /* include gap/padding inside width */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-8 {
    gap: 6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-8 {
    gap: 4px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-8 {
    gap: 2px;
  }
}

.property .request-a {
  position: relative;
  width: 100%;               /* take full width of parent (.frame-8) */
  max-width: fit-content;     /* optional: prevent it from expanding too much on large screens */
  margin-top: -1px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: normal;        /* allow wrapping on smaller screens */
  text-align: center;         /* center text inside button */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .request-a {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .request-a {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .request-a {
    font-size: 13px;
  }
}

.property .frame-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background-color: #2b2b2b;
  border-radius: 48px;

  /* Make it flow with .he parent */
  position: relative;
  width: auto;         /* width adapts to content */
  height: 49px;
  margin-left: 8px;    /* space from text */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-9 {
    padding: 6px 20px;
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-9 {
    padding: 5px 16px;
    height: 42px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-9 {
    padding: 4px 12px;
    height: 38px;
    gap: 6px;
  }
}

.property .arrow-right {
  position: relative;
  width: 24px;               /* smaller default for responsiveness */
  height: 24px;
  aspect-ratio: 1;
  margin-left: 8px;          /* space between text and arrow */
  margin-right: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .arrow-right {
    width: 22px;
    height: 22px;
    margin-left: 6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .arrow-right {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .arrow-right {
    width: 18px;
    height: 18px;
    margin-left: 4px;
  }
}

.property .frame-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 171px;
  position: relative;

  width: 100vw;
  flex: 0 0 auto;
  background-color: #2b2b2b;
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-10 {
    gap: 40px;
    padding: 40px 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-10 {
    gap: 32px;
    padding: 32px 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-10 {
    gap: 24px;
    padding: 24px 16px;
  }
}

.property .frame-11 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1110px; /* keeps original desktop layout */
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
  margin: 0 auto; /* center on smaller screens */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-11 {
    gap: 14px;
    padding: 8px 0px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-11 {
    gap: 12px;
    padding: 6px 0px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-11 {
    gap: 10px;
    padding: 4px 0px;
  }
}

.property .frame-12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3.79px;
  padding: 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 240px;
  width: auto; /* ensures flexibility on small screens */
  max-width: 100%;
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-12 {
    gap: 3px;
    padding: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-12 {
    gap: 2px;
    padding: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-12 {
    gap: 1.5px;
    padding: 10px;
  }
}

.property .group {
  position: relative;
  width: 13.36px;
  height: auto; /* height adjusts according to aspect ratio */
  transform: rotate(41.70deg);
  aspect-ratio: 1.26;
  opacity: 0.64;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .group {
    width: 11px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .group {
    width: 9px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .group {
    width: 7px;
  }
}

.property .img {
  position: absolute;
  top: -3px;
  left: -2px;
  width: 17px;
  height: auto; /* maintain aspect ratio */
  transform: rotate(-41.70deg);
}

/* Tablet */
@media (max-width: 1024px) {
  .property .img {
    width: 14px;
    top: -2.5px;
    left: -1.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .img {
    width: 12px;
    top: -2px;
    left: -1px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .img {
    width: 10px;
    top: -1.5px;
    left: -0.8px;
  }
}

.property .text-wrapper-5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -0.76px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-5 {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-5 {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-5 {
    font-size: 13px;
  }
}

.property .text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #ffffff;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-6 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.9);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-6 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.8);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-6 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.7);
  }
}

.property .text-wrapper-7 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #f3dc8e;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

/* Tablet */
@media (max-width: 1024px) {
  .property .text-wrapper-7 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.9);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .text-wrapper-7 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.8);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .text-wrapper-7 {
    font-size: calc(var(--boraland-geist-40-m-fl-font-size) * 0.7);
  }
}

.property .we-act-as-your {
  position: relative;
  display: flex;
  align-items: center;
  width: 394px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  text-align: justify;
  letter-spacing: 0;
  line-height: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .we-act-as-your {
    width: 320px;
    font-size: 13px;
    line-height: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .we-act-as-your {
    width: 260px;
    font-size: 12px;
    line-height: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .we-act-as-your {
    width: 200px;
    font-size: 11px;
    line-height: 13px;
  }
}

.property .frame-13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  margin-left: -97px;
  margin-right: -97px;
  width: calc(100% + 194px); /* counteracts the negative margin for proper alignment */
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-13 {
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-13 {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-13 {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-13 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-13 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-13 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.property .haha {
  display: flex;
  width: 1292px;
  max-width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 16px;
  position: relative;
  flex: 0 0 auto;
  border-top: 0.5px solid #ffffff7a;
  border-bottom: 0.5px solid #ffffff7a;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .haha {
    width: 100%;
    padding: 20px 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .haha {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 18px 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .haha {
    padding: 16px 10px;
    gap: 16px;
  }
}

.property .frame-14 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-14 {
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-14 {
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-14 {
    gap: 12px;
    padding: 10px 0;
  }
}
/* Extra small mobile tweak */
@media (max-width: 360px) {
  .property .frame-14 {
    gap: 8px;
    padding: 8px 0;
    flex-wrap: wrap; /* allow items to wrap if needed */
  }
}
.property .rectangle-wrapper {
  display: flex;
  flex-direction: column; /* stacks the small rectangles vertically */
  width: 25px;            /* fixed width for the visual bars */
  align-items: flex-start; /* aligns each rectangle to the start of the column */
  gap: 10px;              /* vertical space between rectangles */
  padding: 6px 0px;       /* small top/bottom padding inside the wrapper */
  position: relative;
  align-self: stretch;     /* stretches vertically to fill the parent container */
}

/* Optional: for smaller screens, reduce width and gap */
@media (max-width: 768px) {
  .property .rectangle-wrapper {
    width: 18px;
    gap: 6px;
    padding: 4px 0;
  }
}

@media (max-width: 480px) {
  .property .rectangle-wrapper {
    width: 15px;
    gap: 4px;
    padding: 3px 0;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .property .rectangle-wrapper {
    width: 22px;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .rectangle-wrapper {
    width: 20px;
    gap: 6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .rectangle-wrapper {
    width: 18px;
    gap: 6px;
  }
}

.property .rectangle {
  position: relative;
  align-self: stretch;   /* makes the rectangle take the full width of its wrapper */
  width: 100%;
  height: 7px;           /* thickness of each bar */
  background-color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .rectangle {
    height: 6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .rectangle {
    height: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .rectangle {
    height: 4px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .property .rectangle {
    height: 6px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .rectangle {
    height: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .rectangle {
    height: 4px;
  }
}

.property .engineer-led {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: -1.92px;
  line-height: 32px;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .engineer-led {
    font-size: 28px;
    line-height: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .engineer-led {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -1px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .engineer-led {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.5px;
  }
}

.property .description-wrapper {
  display: flex;
  flex-direction: column;
  width: 726px;
  max-width: 100%;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .description-wrapper {
    width: 600px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .description-wrapper {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .description-wrapper {
    width: 100%;
    gap: 8px;
  }
}

.property .description {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28.4px;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .description {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .description {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .description {
    font-size: 15px;
    line-height: 22px;
  }
}


.property .haha-2 {
  width: 1292px;
  max-width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  border-color: #ffffff7a;
  display: flex;
  padding: 24px 16px;
  position: relative;
  flex: 0 0 auto;
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .haha-2 {
    width: 100%;
    padding: 20px 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .haha-2 {
    flex-direction: column;
    gap: 20px;
    padding: 18px 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .haha-2 {
    gap: 16px;
    padding: 16px 10px;
  }
}

.property .frame-15 {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 16px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .frame-15 {
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .frame-15 {
    flex-direction: row;
    gap: 20px;
    padding: 14px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property .frame-15 {
    gap: 16px;
    padding: 12px 0;
  }
}

.property .frame-16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 171px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.property .frame-17 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3.79px;
  padding: 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #2b2b2b;
  border-radius: 240px;
}

.property .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -0.76px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.property .frame-18 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.property .text-wrapper-9 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #2b2b2b;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

.property .advisory-feasibility {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: transparent;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

.property .span {
  color: #2b2b2b;
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-style: var(--boraland-geist-40-m-fl-font-style);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  font-size: var(--boraland-geist-40-m-fl-font-size);
}

.property .text-wrapper-10 {
  color: #fdd85b;
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-style: var(--boraland-geist-40-m-fl-font-style);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  font-size: var(--boraland-geist-40-m-fl-font-size);
}

.property .p {
  position: relative;
  display: flex;
  align-items: center;
  width: 394px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 14px;
  text-align: justify;
  letter-spacing: 0;
  line-height: 16px;
}

.property .haha-3 {
  display: flex;
  width: 1292px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 16px;
  position: relative;
  flex: 0 0 auto;
  border-top: 0.5px solid #2b2b2b7a;
  border-bottom: 0.5px solid #2b2b2b7a;
}

/* Tablet */
@media (max-width: 1024px) {
  .property .haha-3 {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 16px 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .property .haha-3 {
    padding: 12px 8px;
  }
}

.property .rectangle-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 7px;
  background-color: #2b2b2b;
}

.property .engineer-led-2 {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 32px;
  letter-spacing: -1.92px;
  line-height: 32px;
}

.property .description-2 {
  align-self: stretch;
  margin-top: -1.00px;
  position: relative;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28.4px;
}

.property .haha-4 {
  align-items: center;
  justify-content: center;
  gap: 95px;
  align-self: stretch;
  width: 100%;
  border-color: #2b2b2b7a;
  display: flex;
  padding: 24px 16px;
  position: relative;
  flex: 0 0 auto;
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
}

.property .frame-19 {
  display: flex;
  width: 630px;
  align-items: center;
  justify-content: center;
  gap: 151px;
  position: relative;
}

.property .frame-20 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  background-color: #2c2c2c08;
  border-radius: 30px;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .description-3 {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -0.50px;
  white-space: nowrap;
  position: relative;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28.4px;
}

.property .icon-wrapper {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px;
  position: relative;
  background-color: #2b2b2b;
  border-radius: 14px;
}

.property .icon {
  position: relative;
  width: 6.67px;
  height: 8px;
}

.property .frame-21 {
  display: flex;                 /* Flex container for vertical stacking */
  flex-direction: column;        /* Stack children vertically */
  align-items: center;           /* Center content horizontally */
  gap: 94px;                     /* Space between child elements */
  padding: 48px 171px;           /* Top/Bottom 48px, Left/Right 171px */
  position: relative;            /* For any absolute children positioning */
           /* Make it stretch to parent width */
  width: 100vw;                   /* Full width of parent */
  flex: 0 0 auto;                /* Prevent shrinking or growing */
  background-color: #2b2b2b0d;  /* Slight transparent black background */
}

/* Optional: make padding responsive for tablets and mobile */
@media (max-width: 1024px) {
  .property .frame-21 {
    padding: 48px 64px;          /* reduce side padding on tablets */
    gap: 64px;
  }
}

@media (max-width: 768px) {
  .property .frame-21 {
    padding: 32px 32px;          /* reduce padding on mobile */
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .property .frame-21 {
    padding: 24px 16px;          /* smallest padding for small devices */
    gap: 32px;
  }
}

.property .text-wrapper-11 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #fdd85b;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

.property .frame-22 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-23 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-24 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-25 {
  display: flex;
  width: 275px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px;
  position: relative;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .frame-26 {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 32px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-27 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.property .text-wrapper-12 {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Poppins-Light", Helvetica;
  font-weight: 300;
  color: #2b2b2b;
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
}

.property .vector {
  position: relative;
  width: 72px;
  height: 72px;
  aspect-ratio: 1;
}

.property .frame-28 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 6px;
}

.property .div-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -0.15px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 32px;
  text-align: center;
  letter-spacing: -3.00px;
  line-height: 32px;
  white-space: nowrap;
}

.property .text-wrapper-13 {
  color: #2b2b2b;
  letter-spacing: -0.96px;
}

.property .text-wrapper-14 {
  color: #fdd85b;
  letter-spacing: -0.96px;
}

.property .frame-29 {
  display: flex;
  width: 275px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px;
  position: relative;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
  margin-left: -2.50px;
  margin-right: -0.50px;
}

.property .frame-31 {
  display: flex;
  width: 275px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px;
  position: relative;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .vector-2 {
  position: relative;
  width: 86px;
  height: 72px;
  aspect-ratio: 1.2;
}

.property .frame-32 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .vecteezy-plowed {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 215px;
  object-fit: cover;
}

.property .frame-33 {
  align-items: flex-start;
  justify-content: flex-end;
  display: inline-flex;
  flex-direction: column;
  gap: 32px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-34 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 6px;
}

.property .verified-land {
  position: relative;
  width: fit-content;
  margin-top: -0.15px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 32px;
  letter-spacing: -3.00px;
  line-height: 32px;
}

.property .frame-35 {
  position: relative;
  width: 100vw;
  height: 762px;
  background-color: #2b2b2bfc;
}

.property .BORALAND-LOGO-one {
  position: absolute;
  top: calc(50.00% - 431px);
  left: calc(50.00% - 431px);
  width: 862px;
  height: 862px;
  aspect-ratio: 1;
  object-fit: cover;
}

.property .services {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1px 0px;
  position: absolute;
  top: calc(50.00% - 142px);
  left: calc(50.00% - 554px);
  overflow: hidden;
}

.property .frame-36 {
  display: flex;
  flex-direction: column;
  width: 1110px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
}

.property .frame-37 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.property .boraland-is-an {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 862px;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.80px;
  line-height: 16px;
}

.property .frame-38 {
  display: flex;
  width: 830px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.property .text-wrapper-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #f3dc8e;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.80px;
  line-height: 16px;
  white-space: nowrap;
}

.property .make-construction {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.80px;
  line-height: 16px;
}

.property .frame-39 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.property .serious-projects {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.64;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #ffffff;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  text-align: center;
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

.property .search-box-2 {
  height: 58px;
  margin-bottom: -1.00px;
  background-color: #f3dc8e;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border: 1px solid;
  border-color: transparent;
}

.property .text-wrapper-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.property .frame-40 {
  padding: 8px;
  margin-top: -1.10px;
  border-radius: 69px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-41 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 96px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.property .frame-42 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  padding: 56px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.property .frame-43 {
  display: flex;
  height: 286px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.property .frame-44 {
  display: flex;
  flex-direction: column;
  width: 421px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
}

.property .frame-45 {
  display: flex;
  flex-direction: column;
  max-width: 387px;
  align-items: flex-start;
  gap: 31px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.property .frame-46 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.property .frame-47 {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.property .BORALAND-LOGO-one-2 {
  position: relative;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
}

.property .text-wrapper-17 {
  position: relative;
  width: fit-content;
  font-family: "Jost-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.property .helping-businessmen {
  position: relative;
  align-self: stretch;
  font-family: "Poppins-Light", Helvetica;
  font-weight: 400;
  color: #3a3a3a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
}

.property .text-wrapper-18 {
  font-weight: 300;
}

.property .text-wrapper-19 {
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
}

.property .frame-48 {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 32px;
  border: 1px solid;
  border-color: #2c2c2c33;
  backdrop-filter: blur(6.5px) brightness(100%);
  -webkit-backdrop-filter: blur(6.5px) brightness(100%);
  background: linear-gradient(
    0deg,
    rgba(243, 220, 142, 0.16) 0%,
    rgba(243, 220, 142, 0.16) 100%
  );
}

.property .frame-49 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.property .at-sign {
  position: relative;
  width: 24px;
  height: 24px;
}

.property .text-wrapper-20 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.property .frame-50 {
  padding: 8px 24px;
  align-self: stretch;
  background-color: #2b2b2b;
  border-radius: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.property .text-wrapper-21 {
  position: relative;
  width: fit-content;
  font-family: "Plus Jakarta Sans-SemiBold", Helvetica;
  font-weight: 600;
  color: #f3dc8e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.property .frame-51 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.property .frame-52 {
  display: inline-flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.property .frame-53 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.property .text-wrapper-22 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Poppins-Bold", Helvetica;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.property .text-wrapper-23 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.property .text-wrapper-24 {
  position: relative;
  align-self: stretch;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.property .text-wrapper-25 {
  position: relative;
  width: fit-content;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.property .text-wrapper-26 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Bold", Helvetica;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.property .frame-54 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.property .search-box-3 {
  height: 42px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border: 1px solid;
  border-color: transparent;
}

.property .img-2 {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: -8.00px;
  margin-bottom: -6.00px;
}

.property .text-wrapper-27 {
  position: relative;
  width: fit-content;
  margin-top: -12.50px;
  margin-bottom: -9.50px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.property .search-box-4 {
  height: 42px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border: 1px solid;
  border-color: transparent;
}

.property .search-box-5 {
  height: 42px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border: 1px solid;
  border-color: transparent;
}

.property .frame-55 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 8px;
}

.property .vector-3 {
  position: relative;
  width: 32px;
  height: 32px;
}

.property .text-wrapper-28 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.48px;
  line-height: normal;
}

.property .vector-4 {
  position: relative;
  width: 31px;
  height: 30px;
}

.property .frame-56 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.property .copyright {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.property .text-wrapper-29 {
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 24px;
}

.property .frame-57 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.property .text-wrapper-30 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 17.6px;
  white-space: nowrap;

}

/* ===================== */
/* DEFAULT (DESKTOP) */
/* ===================== */

/* Show desktop menu */
.frame-3 {
  display: flex;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Hide mobile menu on desktop */
.mobile-menu {
  display: none;
}


/* ===================== */
/* MOBILE (≤768px) */
/* ===================== */

@media (max-width: 768px) {

  /* Hide desktop menu */
  .frame-3 {
    display: none !important;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    cursor: pointer;
  }

  /* Hamburger lines */
  .hamburger span {
    display: block;
    height: 3px;
    background-color: #2b2b2b;
    border-radius: 2px;
  }

  

  /* Mobile menu (hidden by default) */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: #f9f9f6;
    padding: 16px;
    border-top: 1px solid #dddddd;
    z-index: 1000;
  }

  /* Show mobile menu when active */
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu .menu-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .menu-top a{
  text-decoration: none;
}
}