main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

section#hero {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
}

section#hero .hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

section#hero .hero-text h1 {
  color: var(--bs-primary);
  --font-size: clamp(32px, 7vw, 48px);
  font-size: var(--font-size);
}

section#hero .hero-text__container a {
  width: fit-content;
}

@media screen and (max-width: 767px) {
  section#hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  section#hero .hero-text {
    align-items: center;
  }

  section#hero .hero-text h1,
  section#hero .hero-text p {
    text-align: center !important;
  }

  section#hero .hero-text__container a {
    margin-inline: auto;
  }
}


/* Whats leasing */

section#whats-leasing {
  background-color: var(--bs-secondary-light);
  padding: 46px 0;
}

section#whats-leasing>.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

section#whats-leasing h2 {
  --font-size: clamp(32px, 7vw, 48px);
  font-size: var(--font-size);
  font-weight: bold;
}

section#whats-leasing h2,
section#whats-leasing p {
  text-align: center;
}

section#whats-leasing .leasing-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

section#whats-leasing .leasing-benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  background-color: var(--bs-white);
  padding: 32px 20px;
  border-radius: 12px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

section#whats-leasing .leasing-benefit img {
  width: 110px;
  aspect-ratio: 1;
  object-fit: contain;

}

section#whats-leasing>.container>a {
  width: 200px;
}

@media screen and (max-width: 1023px) {
  section#whats-leasing .leasing-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  section#whats-leasing .leasing-benefits {
    grid-template-columns: 1fr;
  }
}

/* Whats leasing END */