.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.hero-slider .swiper-wrapper {
  height: 100%;
}
.hero-slider .swiper-slide {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-slider-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.hero-slider-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-slider-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.hero-slider-prev, .hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  color: #fff;
}
.hero-slider-prev:hover, .hero-slider-next:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .hero-slider-prev, .hero-slider-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.hero-slider-prev {
  left: 2rem;
}
@media (max-width: 768px) {
  .hero-slider-prev {
    left: 1rem;
  }
}
.hero-slider-next {
  right: 2rem;
}
@media (max-width: 768px) {
  .hero-slider-next {
    right: 1rem;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10.8rem 1.25rem 1.865rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .hero-content {
    padding-top: 5.75rem;
  }
}
@media (max-width: 430px) {
  .hero-content {
    padding-top: 4.375rem;
  }
}
.hero-content .title {
  color: #FFF;
  text-align: center;
}

.container-wrapper {
  width: 100%;
  max-width: 73.5rem;
  margin: 0 auto;
  padding-right: 26.1875rem;
}
@media (max-width: 1024px) {
  .container-wrapper {
    padding: 0;
  }
}
.container-wrapper .wrapper {
  width: 100%;
  max-width: 44.1875rem;
}
@media (max-width: 1024px) {
  .container-wrapper .wrapper {
    max-width: 100%;
  }
}
.sticky-container {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .sticky-container {
    display: contents;
  }
}
.sticky-container .project-card-sticky {
  position: sticky;
  top: 7.5rem;
  float: right;
  width: 24.1875rem;
  margin-right: 2.5rem;
  z-index: 1;
}
@media (max-width: 1024px) {
  .sticky-container .project-card-sticky {
    display: none;
  }
}
.sticky-container .project-card-sticky .project-card {
  width: 100%;
  max-width: 24.1875rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.3125rem;
  border: 1px solid var(--Gray-04, #EBEBEB);
  background: #FFF;
  z-index: 1;
}
.sticky-container .project-card-sticky .project-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-container .project-card-sticky .project-card-head .actions {
  display: flex;
  gap: 0.125rem;
}
.sticky-container .project-card-sticky .project-card-head .geo {
  display: flex;
  align-items: center;
  gap: 0.185rem;
  color: var(--Black, #000);
  text-align: center;
  /* Caption */
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 0.9rem */
}
.sticky-container .project-card-sticky .project-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sticky-container .project-card-sticky .project-card-content .title {
  color: var(--Black, #000);
  font-variant-numeric: lining-nums proportional-nums;
  /* H4 */
  font-family: "Cormorant Garamond";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 105%; /* 1.575rem */
  letter-spacing: -0.045rem;
  text-transform: uppercase;
}
.sticky-container .project-card-sticky .project-card-content .cost {
  color: var(--Black, #000);
  /* Sub1-Medium */
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 2.4rem */
  letter-spacing: -0.02rem;
}
.sticky-container .project-card-sticky .project-card-content .cost span {
  opacity: 0.4;
  color: var(--Black, #000);
  text-align: center;
  /* Caption */
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 0.9rem */
}
.sticky-container .project-card-sticky .project-card-content .cost .cost-from {
  opacity: 1;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.sticky-container .project-card-sticky .project-card-content .tags {
  display: flex;
  gap: 0.25rem;
}
.sticky-container .project-card-sticky .project-card-content .tags-item {
  padding: 0.25rem;
  background: #EBEBEB;
  color: var(--Black, #000);
  text-align: center;
  /* Caption */
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 0.9rem */
}
.sticky-container .project-card-sticky .project-card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sticky-container .project-card-sticky .project-card-actions .btn {
  width: 100%;
  padding: 0 1rem;
  height: 2.5rem;
  min-height: 2.5rem;
  /* H5 */
  font-family: "Cormorant Garamond";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 105%; /* 1.3125rem */
  letter-spacing: -0.0375rem;
  text-transform: uppercase;
}

.project-info {
  width: 100%;
}
.project-info-content {
  width: 100%;
}
.project-info-content .wrapper {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5px solid black;
}
.project-info-content .container-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5rem;
  row-gap: 2.5rem;
  padding-right: 0;
}
.project-info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-info-item .label {
  opacity: 0.64;
  color: var(--Black, #000);
  /* B4 */
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
}
.project-info-item .value {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--Black, #000);
  /* Sub2-Medium */
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 1.65rem */
  letter-spacing: -0.015rem;
}
.project-info-item .value .est {
  color: var(--Black, #000);
  text-align: center;
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.project-desc {
  width: 100%;
}
.project-desc-content {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .project-desc-content {
    padding-top: 3.75rem;
  }
}
@media (max-width: 430px) {
  .project-desc-content {
    padding-bottom: 1.875rem;
  }
}
.project-desc-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 430px) {
  .project-desc-content .wrapper {
    gap: 1.875rem;
  }
}
.project-desc-text {
  color: var(--Black, #000);
  /* B1 Light */
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 135%; /* 2.025rem */
  letter-spacing: -0.045rem;
}
@media (max-width: 430px) {
  .project-desc-text {
    font-size: 1.25rem;
    letter-spacing: -0.0375rem;
  }
}

.about-life {
  width: 100%;
}
.about-life-content {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 430px) {
  .about-life-content {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.about-life-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .about-life-content .wrapper {
    gap: 1.875rem;
  }
}
@media (max-width: 430px) {
  .about-life-content .wrapper {
    gap: 1.25rem;
  }
}
.about-life .title-container {
  color: var(--Black, #000);
}
.about-life-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 525px) {
  .about-life-list {
    grid-template-columns: 1fr;
    gap: 0.825rem;
  }
}
.about-life-item {
  display: flex;
  flex-direction: column;
  padding: 1.31rem 1.37rem;
  gap: 0.81rem;
  border: 1px solid #DADADA;
  background: #FFF;
}
@media (max-width: 525px) {
  .about-life-item {
    padding: 1.125rem;
  }
}
.about-life-item .label {
  opacity: 0.64;
  color: var(--Black, #000);
  /* B4 */
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
}
.about-life-item .value {
  color: var(--Black, #000);
  /* B1 Light */
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 135%; /* 2.025rem */
  letter-spacing: -0.045rem;
}
@media (max-width: 525px) {
  .about-life-item .value {
    font-size: 1.25rem;
    letter-spacing: -0.0375rem;
  }
}

/* в”Ђв”Ђ Gallery Grid в”Ђв”Ђ */
.sp-gallery-grid {
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0;
}
.sp-gallery-grid-slider {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.sp-gallery-grid-slider .swiper-slide {
  height: 25rem;
}
.sp-gallery-grid-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2.5rem;
}
.sp-gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-gallery-grid-prev,
.sp-gallery-grid-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  cursor: pointer;
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.14);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.sp-gallery-grid-prev:hover,
.sp-gallery-grid-next:hover {
  background: #fff;
}
.sp-gallery-grid-prev {
  left: 3.25rem;
}
.sp-gallery-grid-next {
  right: 3.25rem;
}
.sp-gallery-grid-prev.swiper-button-disabled,
.sp-gallery-grid-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sp-gallery-grid-prev,
  .sp-gallery-grid-next {
    width: 2.25rem;
    height: 2.25rem;
  }
  .sp-gallery-grid-prev {
    left: 2.875rem;
  }
  .sp-gallery-grid-next {
    right: 2.875rem;
  }
}
@media (max-width: 525px) {
  .sp-gallery-grid-slider {
    padding: 0 1.25rem;
  }
  .sp-gallery-grid-slider .swiper-slide {
    height: 16rem;
  }
  .sp-gallery-grid-prev {
    left: 1.75rem;
  }
  .sp-gallery-grid-next {
    right: 1.75rem;
  }
}

.amenities {
  width: 100%;
}
.amenities-content {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 430px) {
  .amenities-content {
    padding-top: 1.875rem;
  }
}
.amenities-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .amenities-content .wrapper {
    gap: 1.875rem;
  }
}
@media (max-width: 430px) {
  .amenities-content .wrapper {
    gap: 1.25rem;
  }
}
.amenities .title-container {
  color: var(--Black, #000);
}
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.amenities-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.25rem 1rem;
  background: #EBEBEB;
  color: var(--Black, #000);
  text-align: center;
  /* B4 */
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
}

.section-group {
  background: black;
  width: 100%;
}
.section-group-content {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 1024px) {
  .section-group-content {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.section-group-content .container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .section-group-content .container-wrapper {
    gap: 4.375rem;
  }
}
.section-group-content .container-wrapper .wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 430px) {
  .section-group-content .container-wrapper .wrapper {
    gap: 2.5rem;
  }
}
.section-group-content .container-wrapper .wrapper .title-container {
  color: white;
}
.section-group-content .characteristics-two-col {
  display: flex;
  align-items: stretch;
}
.section-group-content .char-v-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin: 0 3.75rem;
}
@media (max-width: 768px) {
  .section-group-content .characteristics-two-col {
    flex-direction: column;
    gap: 3rem;
  }
  .section-group-content .char-v-divider {
    display: none;
  }
}
.section-group-content .characteristics-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.section-group-content .char-col-heading {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}
.section-group-content .characteristics-items {
  display: flex;
  flex-direction: column;
}
.section-group-content .characteristics-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.section-group-content .characteristics-item.residences {
  gap: 0.25rem;
  padding: 0.75rem 0;
  border: none;
}
.section-group-content .characteristics-items .characteristics-item:first-child {
  padding-top: 0;
}
.section-group-content .characteristics-items .characteristics-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.section-group-content .characteristics-item .label {
  opacity: 0.64;
  color: #FFF;
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.section-group-content .characteristics-item .value {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
  letter-spacing: -0.045rem;
}
.section-group-content .characteristics-item .char-note {
  opacity: 0.64;
  color: #FFF;
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 0.125rem;
}
.section-group-content .exclusive-nearby {
  max-width: 34.75rem;
}
.section-group-content .exclusive-nearby-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.75rem;
  row-gap: 3rem;
}
@media (max-width: 1024px) {
  .section-group-content .exclusive-nearby-list {
    column-gap: 2.5rem;
    row-gap: 2.5rem;
  }
}
@media (max-width: 525px) {
  .section-group-content .exclusive-nearby-list {
    grid-template-columns: 1fr;
  }
}
.section-group-content .exclusive-nearby-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 21rem;
}
.section-group-content .exclusive-nearby-item .value {
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  /* Numbers */
  font-family: "Cormorant Garamond";
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 105%; /* 6.3rem */
  letter-spacing: -0.18rem;
  text-transform: uppercase;
}
@media (max-width: 430px) {
  .section-group-content .exclusive-nearby-item .value {
    font-size: 4.125rem;
    letter-spacing: -0.12375rem;
  }
}
.section-group-content .exclusive-nearby-item .label {
  padding-top: 0.75rem;
  border-top: 0.5px solid white;
  color: #FFF;
  /* B1 Light */
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 135%; /* 2.025rem */
  letter-spacing: -0.045rem;
}
@media (max-width: 430px) {
  .section-group-content .exclusive-nearby-item .label {
    font-size: 1.25rem;
    letter-spacing: -0.0375rem;
  }
}

/* в”Ђв”Ђ Location Map (neighbourhood polygon on single-project) в”Ђв”Ђ */
.location {
  padding-top: 4.375rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 1024px) {
  .location {
    padding-bottom: 36.875rem;
  }
}
@media (max-width: 430px) {
  .location {
    padding-top: 3rem;
  }
}
.location-content {
  display: flex;
  justify-content: center;
  padding-bottom: 2.625rem;
}
.location-content .title {
  color: var(--Black, #000);
}
.location-map {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.location-map .map-container {
  width: 100%;
  min-height: 42rem;
  overflow: hidden;
  height: 42rem;
  border-radius: 0.3125rem;
}
@media (max-width: 1024px) {
  .location-map .map-container {
    min-height: 27rem;
    height: 27rem;
  }
}
@media (max-width: 525px) {
  .location-map .map-container {
    height: 26.6875rem;
  }
}
.location-card-overlay {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  z-index: 1000;
  pointer-events: auto;
  height: calc(100% - 0.75rem);
  width: 22rem;
}
.location-card-overlay .neighbourhood-map-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  gap: 2.125rem;
}
.location-card-overlay .neighbourhood-map-card__image {
  width: 100%;
  height: 14.125rem;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.location-card-overlay .neighbourhood-map-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}
.location-card-overlay .neighbourhood-map-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
  gap: 1.5rem;
  overflow: hidden;
  flex: 1;
}
.location-card-overlay .neighbourhood-map-card__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}
.location-card-overlay .neighbourhood-map-card__title {
  color: black;
  margin: 0;
}
.location-card-overlay .neighbourhood-map-card__btn {
  margin: 0 0.75rem 0.75rem;
  text-align: center;
  width: calc(100% - 1.5rem);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .location-card-overlay {
    top: calc(100% - 8.125rem);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1rem;
    height: 41.25rem;
    width: 100%;
    max-width: 48rem;
  }
}
@media (max-width: 430px) {
  .location-card-overlay {
    padding: 0;
  }
}

/* в”Ђв”Ђ Neighbourhood accordion (used inside location-card-overlay) в”Ђв”Ђ */
.neighbourhood-accordion {
  display: flex;
  flex-direction: column;
}
.neighbourhood-accordion__item {
  border-bottom: 0.5px solid #d0d0d0;
}
.neighbourhood-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: -0.0375rem;
  text-transform: uppercase;
}
.neighbourhood-accordion__trigger svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  transform: rotate(180deg);
}
.neighbourhood-accordion__body {
  display: none;
  padding-bottom: 0.75rem;
}
.neighbourhood-accordion__body p {
  color: #767676;
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.neighbourhood-accordion__item.is-open .neighbourhood-accordion__trigger svg {
  transform: rotate(0deg);
}
.neighbourhood-accordion__item.is-open .neighbourhood-accordion__body {
  display: block;
}

/* в”Ђв”Ђ Location Highlights в”Ђв”Ђ */
.project-location-highlights {
  width: 100%;
}
.project-location-highlights-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 430px) {
  .project-location-highlights-content {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.project-location-highlights-text {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.02rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid #000;
  background: var(--Gray-05, #F8F8F8);
  border-radius: 0 0.3125rem 0.3125rem 0;
}
@media (max-width: 430px) {
  .project-location-highlights-text {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

/* в”Ђв”Ђ Investment & Financial Section в”Ђв”Ђ */
.sp-investment {
  width: 100%;
  background: #fff;
}
.sp-investment-content {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 1024px) {
  .sp-investment-content {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.sp-investment-content .title-container {
  color: black;
}
.sp-investment-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.investment-points-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 32rem;
}
.investment-points-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #000;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.investment-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.investment-field .label {
  opacity: 0.64;
  color: #000;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0.25rem;
}
.investment-field .value {
  color: #000;
  font-family: Roboto;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 135%;
  letter-spacing: -0.045rem;
}
.deposit-structure {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.deposit-heading {
  opacity: 0.64;
  color: #000;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.deposit-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 20rem;
}
.deposit-item {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  background: #EBEBEB;
  color: #000;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}

/* в”Ђв”Ђ Interesting Facts в”Ђв”Ђ */
.sp-interesting-facts {
  width: 100%;
}
.sp-interesting-facts-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-interesting-facts-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-interesting-facts-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-interesting-facts-content .title-container {
  color: var(--Black, #000);
}
.sp-interesting-facts-text {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.02rem;
}
.sp-interesting-facts-text p {
  margin-bottom: 0.75rem;
}
.sp-interesting-facts-text p:last-child {
  margin-bottom: 0;
}

/* в”Ђв”Ђ Residences в”Ђв”Ђ */
.sp-residences {
  width: 100%;
}
.sp-residences-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-residences-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-residences-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-residences-content .title-container {
  color: var(--Black, #000);
}
.sp-residences-text {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.03rem;
}
@media (max-width: 430px) {
  .sp-residences-text {
    font-size: 1.125rem;
  }
}
.sp-residences-text p {
  margin-bottom: 0.75rem;
}
.sp-residences-text p:last-child {
  margin-bottom: 0;
}

/* в”Ђв”Ђ Deposit Structure в”Ђв”Ђ */
.sp-deposit {
  width: 100%;
  background: var(--Gray-05, #F8F8F8);
}
.sp-deposit-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-deposit-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-deposit-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sp-deposit-content .title-container {
  color: var(--Black, #000);
}
.sp-deposit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 525px) {
  .sp-deposit-list {
    flex-direction: column;
  }
}
.sp-deposit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FFF;
  border: 1px solid #EBEBEB;
  border-radius: 0.3125rem;
  flex: 1 1 auto;
  min-width: 12rem;
}
.sp-deposit-index {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  background: #000;
  color: #FFF;
  font-family: "Cormorant Garamond";
  font-size: 1.25rem;
  font-weight: 500;
}
.sp-deposit-label {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 140%;
}

/* в”Ђв”Ђ Project Highlights в”Ђв”Ђ */
.sp-highlights {
  width: 100%;
}
.sp-highlights-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-highlights-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-highlights-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-highlights-content .title-container {
  color: var(--Black, #000);
}
.sp-highlights-text {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.03rem;
}
@media (max-width: 430px) {
  .sp-highlights-text {
    font-size: 1.125rem;
  }
}
.sp-highlights-text p {
  margin-bottom: 0.75rem;
}
.sp-highlights-text p:last-child {
  margin-bottom: 0;
}

/* в”Ђв”Ђ Walk / Transit / Bike Score в”Ђв”Ђ */
.sp-scores {
  width: 100%;
}
.sp-scores-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-scores-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-scores-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sp-scores-content .title-container {
  color: var(--Black, #000);
}
.sp-scores-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .sp-scores-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.sp-scores-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #EBEBEB;
  border-radius: 0.3125rem;
  background: var(--Gray-05, #F8F8F8);
}
.sp-scores-label {
  color: var(--Black, #000);
  font-family: "Cormorant Garamond";
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
}
.sp-scores-value {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 150%;
}

/* в”Ђв”Ђ Local Tips в”Ђв”Ђ */
.sp-local-tips {
  width: 100%;
}
.sp-local-tips-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-local-tips-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-local-tips-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-local-tips-content .title-container {
  color: var(--Black, #000);
}
.sp-local-tips-text {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.02rem;
}
.sp-local-tips-text p {
  margin-bottom: 0.75rem;
}
.sp-local-tips-text p:last-child {
  margin-bottom: 0;
}

/* в”Ђв”Ђ Infrastructure & Commercial Anchor Projects в”Ђв”Ђ */
.sp-infrastructure {
  width: 100%;
  background: var(--Gray-05, #F8F8F8);
}
.sp-infrastructure-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-infrastructure-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-infrastructure-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sp-infrastructure-content .title-container {
  color: var(--Black, #000);
}
.sp-infrastructure-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sp-infrastructure-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #FFF;
  border: 1px solid #EBEBEB;
  border-radius: 0.3125rem;
}
.sp-infrastructure-label {
  color: var(--Black, #000);
  font-family: "Cormorant Garamond";
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02rem;
}
.sp-infrastructure-value {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 160%;
}

/* в”Ђв”Ђ Best Nearby Schools в”Ђв”Ђ */
.sp-schools {
  width: 100%;
}
.sp-schools-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-schools-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-schools-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-schools-content .title-container {
  color: var(--Black, #000);
}
.sp-schools-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sp-schools-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sp-schools-group-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-family: Roboto;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sp-schools-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-schools-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #EBEBEB;
}
.sp-schools-item:first-child {
  border-top: 1px solid #EBEBEB;
}
.sp-schools-name {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
}
.sp-schools-rating {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 120%;
  text-align: right;
  max-width: 62%;
}
.sp-schools-rating-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sp-schools-rating-line {
  margin: 0;
}
@media (max-width: 768px) {
  .sp-schools-item {
    align-items: flex-start;
  }
  .sp-schools-rating {
    max-width: 58%;
  }
}

/* в”Ђв”Ђ Neighborhood's Proximity to Key Area в”Ђв”Ђ */
.sp-proximity {
  width: 100%;
}
.sp-proximity-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
  .sp-proximity-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.sp-proximity-content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sp-proximity-content .title-container {
  color: var(--Black, #000);
}
.sp-proximity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-proximity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #EBEBEB;
}
.sp-proximity-item:first-child {
  border-top: 1px solid #EBEBEB;
}
.sp-proximity-label {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}
.sp-proximity-value {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 120%;
  padding: 0.25rem 0.75rem;
  background: var(--Gray-05, #F8F8F8);
  border-radius: 0.25rem;
}

/* в”Ђв”Ђ Location Overview Section в”Ђв”Ђ */
.sp-location {
  width: 100%;
  background: #0d0d0d;
}
.sp-location-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .sp-location-content {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.sp-location-top {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
}
.sp-loc-col {
  flex: 1;
}
.sp-loc-vdivider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-right: 2rem;
}
.sp-loc-hdivider {
  display: none;
}
.sp-loc-heading {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.75rem 0;
}
.sp-loc-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
}
.sp-transport-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sp-transport-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sp-transport-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sp-transport-label {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
}
.sp-transport-value {
  color: rgba(255, 255, 255, 0.84);
  font-family: Roboto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.45;
}
.sp-destinations-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.sp-destination-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #FFF;
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}
.sp-destination-item svg {
  flex-shrink: 0;
  opacity: 0.75;
}
.sp-destination-item span {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
}
.sp-location-lifestyle {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.sp-lifestyle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 0;
  justify-content: center;
}
.sp-lifestyle-item {
  width: 250px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  min-width: 6rem;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.sp-lifestyle-label {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
}
.sp-lifestyle-value {
  color: rgba(255, 255, 255, 0.84);
  font-family: Roboto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .sp-location-top {
    flex-direction: column;
  }
  .sp-loc-vdivider {
    width: auto;
    height: 1px;
    margin: 1rem 0;
  }
  .sp-lifestyle-list {
    gap: 2rem 0;
  }
}
@media (max-width: 430px) {
  .sp-lifestyle-item {
    min-width: 5rem;
  }
}

.project-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1005;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-info-modal.open {
  display: flex;
}
.project-info-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}
.project-info-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26.625rem;
  max-height: calc(100vh - 3.125rem);
  margin: 1.5625rem;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
@media (max-width: 430px) {
  .project-info-modal__content {
    padding: 1.5rem;
  }
}
.project-info-modal--success .project-info-modal__content {
  max-width: 24rem;
}
.project-info-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.project-info-modal__title {
  margin: 0;
  color: var(--Black, #000);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
}
.project-info-modal__desc {
  margin: 0.5rem 0 0;
  color: var(--Gray-02, #767676);
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__close {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #000;
  transition: opacity 0.2s ease;
}
.project-info-modal__close:hover {
  opacity: 0.6;
}
.project-info-modal__body,
.project-info-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-info-modal__request-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}
.project-info-modal__request-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
}
.project-info-modal__request-project {
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--Gray-02, #767676);
}
.project-info-modal__option {
  position: relative;
  display: grid;
  grid-template-columns: 1.125rem 1fr 1rem;
  gap: 0.75rem;
  align-items: center;
  min-height: 4.375rem;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.project-info-modal__option:hover,
.project-info-modal__option.is-selected {
  border-color: #000;
}
.project-info-modal__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.project-info-modal__option-icon {
  display: flex;
  color: #000;
}
.project-info-modal__option-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #000;
  font-family: Roboto, sans-serif;
}
.project-info-modal__option-text span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__option-text small {
  color: var(--Gray-02, #767676);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__radio {
  width: 1rem;
  height: 1rem;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  position: relative;
}
.project-info-modal__option.is-selected .project-info-modal__radio {
  border-color: #000;
}
.project-info-modal__option.is-selected .project-info-modal__radio::after {
  content: "";
  position: absolute;
  inset: 0.1875rem;
  border-radius: 50%;
  background: #000;
}
.project-info-modal__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.project-info-modal__field:focus-within .project-info-modal__label,
.project-info-modal__field.is-filled .project-info-modal__label {
  transform: translateY(0);
}
.project-info-modal__label {
  transition: all 0.3s ease;
  transform: translateY(calc(100% + 0.25rem));
  display: block;
  color: var(--Gray-02, #767676);
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__input {
  width: 100%;
  height: 2.5rem;
  padding: 0 0 1.34rem;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  color: var(--Black, #000);
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__input:focus {
  outline: none;
  border-bottom-color: #000;
}
.project-info-modal__textarea {
  min-height: 3rem;
  resize: vertical;
}
.project-info-modal__error {
  min-height: 1rem;
  color: #c41e3a;
  font-family: Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__footer {
  margin-top: 1rem;
}
.project-info-modal__submit {
  width: 100%;
}
.project-info-modal__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-info-modal__terms {
  margin: 1rem 0 0;
  color: var(--Gray-02, #767676);
  font-family: Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
}
.project-info-modal__terms a {
  color: inherit;
  text-decoration: underline;
}

/*# sourceMappingURL=projectDetail.css.map */
