*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, figure {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input {
  font: inherit;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: "Open Sans", arial, sans-serif;
  color: #434343;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 300;
  line-height: 1.15;
}

:focus-visible {
  outline: 2px solid #05ADB8;
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: #05ADB8;
  color: #ffffff;
}
.btn--primary:hover {
  background: #0E858D;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.btn--ghost:hover {
  border-color: #05ADB8;
  background: #05ADB8;
}

.property-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.property-card__media {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 5px;
}
.property-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 2rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
}
.property-card__unit {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.property-card__building {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.property-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.property-card__specs {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #434343;
}
.property-card__specs b {
  color: #212121;
  font-weight: 700;
}
.property-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #05ADB8;
  white-space: nowrap;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.tabs__item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666666;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.tabs__item[aria-selected=true] {
  color: #212121;
  border-bottom-color: #05ADB8;
}

.stat-circles {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-block: auto;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-circles .stat-circle {
  margin: 0 4px;
}
@media (min-width: 768px) {
  .stat-circles {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
    height: 175px;
  }
  .stat-circles .stat-circle {
    margin: 0 3.75%;
  }
}

.stat-circle {
  width: 119px;
  height: 119px;
  border-radius: 50%;
  background-color: rgba(5, 173, 184, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-circle {
    width: 172px;
    height: 172px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.25s ease;
  }
  .stat-circle:hover {
    background-color: rgba(5, 173, 184, 0.92);
  }
}
.stat-circle__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-circle__num {
  font-size: 45px;
  font-weight: 300;
  color: #ffffff;
  border-bottom: 1px solid #05ADB8;
  padding-bottom: 5px;
  margin-bottom: 7px;
  line-height: 1;
}
@media (min-width: 768px) {
  .stat-circle__num {
    font-size: 71px;
  }
}
.stat-circle__label {
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.3;
  max-width: 70px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}

.top-header {
  background-color: #05ADB8;
  height: 35px;
}
.top-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.top-header__link {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.top-header__link:hover {
  text-decoration: underline;
}
.top-header__link--phone, .top-header__link--email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.body-header {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.body-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #212121;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle--active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid rgba(33, 33, 33, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav--open {
  display: flex;
}
.mobile-nav__link {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #434343;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
}
.mobile-nav__link:hover {
  color: #05ADB8;
}

.logo {
  display: block;
  height: 55px;
}
.logo img {
  height: 100%;
  width: auto;
}

.nav {
  display: none;
}
@media (min-width: 1025px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #434343;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #05ADB8;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.25) 100%), url("../images/muranogrande-2.jpg");
  background-size: cover;
  background-position: center 65%;
  padding-top: 111px;
}
.hero__weather {
  position: absolute;
  left: 5%;
  bottom: 0;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__weather-temp {
  display: inline-block;
  margin-right: 23px;
  font-size: 16px;
  text-transform: uppercase;
}
.hero__weather-temp b {
  font-weight: 700;
}
.hero__weather-location {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: #ffffff;
}
.hero__scroll {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}
.hero__scroll p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.hero__scroll::after {
  content: "";
  display: block;
  margin: 0.5rem auto 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.residences {
  padding-block: 6rem;
  background: #ffffff;
}
.residences__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.residences__head {
  text-align: center;
  margin-bottom: 2rem;
}
.residences__head h2 {
  font-size: 26px;
  color: #212121;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}
.residences__head h2::after {
  content: "";
  width: 82px;
  height: 3px;
  display: block;
  background-color: #05ADB8;
  margin: 12px auto 0;
}
@media (min-width: 768px) {
  .residences__head h2 {
    font-size: 36px;
  }
  .residences__head h2::after {
    margin-top: 18px;
  }
}
.residences__head p {
  margin-top: 0.75rem;
  color: #434343;
  font-size: 0.85rem;
}

.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}
.property-grid[hidden] {
  display: none;
}
@media (min-width: 641px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .property-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.facts {
  padding: 35px 5% 70px;
  background: url("../images/stats.jpg") no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  .facts {
    padding-block: 100px;
  }
}
.facts__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.facts__head {
  text-align: center;
  margin-bottom: 2rem;
}
.facts__head h2 {
  font-size: 26px;
  color: #212121;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}
.facts__head h2::after {
  content: "";
  width: 82px;
  height: 3px;
  display: block;
  background-color: #05ADB8;
  margin: 12px auto 0;
}
@media (min-width: 768px) {
  .facts__head h2 {
    font-size: 36px;
  }
  .facts__head h2::after {
    margin-top: 18px;
  }
}
.facts__head h2 {
  color: #ffffff;
}
.facts__head p {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 0.85rem;
}
.facts__grid {
  text-align: center;
}
@media (min-width: 768px) {
  .facts__grid {
    max-width: 1180px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.fact {
  padding: 30px 20px 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .fact {
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .fact:nth-child(3n) {
    border-right: 0;
  }
  .fact:nth-child(4), .fact:nth-child(5), .fact:nth-child(6) {
    border-bottom: 0;
  }
}
.fact__value {
  position: relative;
  font-size: 27px;
  color: #ffffff;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fact__value::after {
  content: "";
  display: block;
  height: 1px;
  width: 105px;
  margin: 12px auto 0;
  background-color: #05ADB8;
}
@media (min-width: 768px) {
  .fact__value {
    font-size: 42px;
    margin-bottom: 0;
  }
  .fact__value::after {
    display: none;
  }
}
.fact__label {
  margin-top: 0.25rem;
  font-size: 15px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 768px) {
  .fact__label {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
  }
}

.about {
  padding-block: 6rem;
  background: #ffffff;
}
.about__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: 900px;
}
.about p {
  color: #434343;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.neighborhood {
  position: relative;
}
.neighborhood__image {
  position: relative;
  overflow: hidden;
}
.neighborhood__img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .neighborhood__img--mobile {
    display: none;
  }
}
.neighborhood__img--desktop {
  display: none;
}
@media (min-width: 768px) {
  .neighborhood__img--desktop {
    display: block;
  }
}
.neighborhood__caption {
  display: none;
}
@media (min-width: 768px) {
  .neighborhood__caption {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
  }
}
.neighborhood__caption h2 {
  font-size: 26px;
  color: #212121;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}
.neighborhood__caption h2::after {
  content: "";
  width: 82px;
  height: 3px;
  display: block;
  background-color: #05ADB8;
  margin: 12px auto 0;
}
@media (min-width: 768px) {
  .neighborhood__caption h2 {
    font-size: 36px;
  }
  .neighborhood__caption h2::after {
    margin-top: 18px;
  }
}
.neighborhood__caption h2 {
  color: #ffffff;
}
.neighborhood__caption p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .neighborhood__caption--building {
    top: 60px;
  }
}
.neighborhood__pins {
  display: none;
}
@media (min-width: 768px) {
  .neighborhood__pins {
    display: block;
    position: absolute;
    inset: 0;
  }
  .neighborhood__pins li {
    position: absolute;
  }
}

.pin {
  position: relative;
  display: block;
  width: 0;
  height: 0;
}
.pin__badge {
  position: absolute;
  left: 50%;
  bottom: 29px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 8px 15px;
  background: #ffffff;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.pin__badge img {
  max-width: 100px;
  height: auto;
  display: block;
}
.pin__plus {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s;
}
.pin__plus::before, .pin__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #212121;
  transition: background-color 0.3s;
}
.pin__plus::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.pin__plus::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.pin:hover .pin__plus {
  background-color: #212121;
}
.pin:hover .pin__plus::before, .pin:hover .pin__plus::after {
  background: #ffffff;
}

.neighborhood__list {
  width: 90%;
  margin: auto;
  padding-block: 1.5rem;
}
@media (min-width: 768px) {
  .neighborhood__list {
    display: none;
  }
}
.neighborhood__list li {
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}
.neighborhood__list li:last-child {
  border-bottom: 0;
}
.neighborhood__list a {
  display: flex;
  align-items: center;
  padding: 10px 7px;
  text-transform: uppercase;
  color: #666666;
  font-size: 14px;
}
.neighborhood__list a::before {
  content: attr(data-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #05ADB8;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  margin-right: 21px;
}

.contact {
  background: #f5f5f5;
}
.contact__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 2rem;
}
@media (min-width: 1025px) {
  .contact__inner {
    grid-template-columns: 260px 1fr;
  }
}
.contact__portrait {
  display: none;
}
@media (min-width: 1025px) {
  .contact__portrait {
    display: block;
    align-self: end;
  }
  .contact__portrait img {
    max-width: 100%;
    height: auto;
  }
}
.contact__form-wrap {
  padding-block: 4rem;
}
.contact__title h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: #212121;
}
.contact__title span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 641px) {
  .contact-form {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 641px) {
  .contact-form__full {
    grid-column: 1/-1;
  }
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(33, 33, 33, 0.15);
  border-radius: 2px;
  padding: 0.75rem;
  font: inherit;
  color: #212121;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #666666;
}
.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}
@media (min-width: 641px) {
  .contact-form__submit {
    grid-column: 1/-1;
  }
}
.contact-form__submit {
  justify-self: start;
}

.site-footer {
  background: #212121;
  color: #dbdcd9;
  padding-block: 3rem 0;
}
.site-footer__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.site-footer__disclaimer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  color: #dbdcd9;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1025px) {
  .site-footer__disclaimer {
    text-align: left;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
}
@media (min-width: 1025px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr auto;
  }
}
.site-footer__col-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-agency {
  text-align: center;
}
@media (min-width: 1025px) {
  .footer-agency {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
}
.footer-agency__logo {
  display: none;
}
@media (min-width: 1025px) {
  .footer-agency__logo {
    display: block;
    flex-shrink: 0;
  }
}
.footer-agency p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer-agency address, .footer-agency a {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: #dbdcd9;
  margin-bottom: 0.5rem;
}
.footer-agency a:hover {
  color: #05ADB8;
}
.footer-agency a.footer-agency__email {
  color: #05ADB8;
}

.footer-form {
  display: flex;
  gap: 0.75rem;
}
.footer-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 0.75rem;
  color: #ffffff;
  font: inherit;
}
.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.footer-form__submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  padding: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 1025px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #dbdcd9;
}
.footer-social a:hover {
  color: #ffffff;
  background: #05ADB8;
}

.footer-microsites {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}
@media (min-width: 1025px) {
  .footer-microsites {
    justify-content: flex-start;
  }
}
.footer-microsites a:hover {
  color: #05ADB8;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 641px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*# sourceMappingURL=main.css.map */
