.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/wp-content/themes/novus-miami/assets/img/home-buyers/hero.png);
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
@media (max-width: 430px) {
  .hero {
    min-height: 100svh;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 10.8rem;
  padding-bottom: 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;
}
.hero-content .title span {
  display: block;
  margin-top: 1rem;
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.015rem;
  text-transform: none;
}
@media (max-width: 430px) {
  .hero-content .title span {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    letter-spacing: -0.01125rem;
  }
}

.calculator {
  background: white;
}
.calculator-content {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .calculator-content {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}
.calculator-content .title {
  color: var(--Black, #000);
  text-align: center;
}
.calculator-content .calculator-intro,
.calculator-content .calculator-disclaimer {
  max-width: 59.75rem;
  margin: 0 auto;
  color: var(--Gray-02, #767676);
  text-align: center;
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.00875rem;
}
@media (max-width: 430px) {
  .calculator-content .calculator-intro,
  .calculator-content .calculator-disclaimer {
    font-size: 0.8125rem;
  }
}
.calculator-content .calculator-disclaimer {
  margin-top: 1rem;
}
.calculator-wrapper {
  display: flex;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .calculator-wrapper {
    flex-direction: column;
    gap: 4.25rem;
  }
}
.calculator-form {
  width: 100%;
  max-width: 24.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .calculator-form {
    margin: 0 auto;
    gap: 4rem;
  }
}
.calculator-form .fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calculator-form .fields-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
}
.calculator-form .fields-row .field:first-child {
  padding-top: 1rem;
}
.calculator-form .field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.calculator-form .field:first-child {
  padding-top: 0;
}
.calculator-form .field-label {
  color: var(--Gray-02, #767676);
  /* Caption */
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 0.9rem */
}
.calculator-form .field-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.calculator-form .field-prefix, .calculator-form .field-suffix {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calculator-form .field-suffix {
  color: #000000;
}
.calculator-form .field-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
}
.calculator-form .field-input::placeholder {
  color: #999;
}
.calculator-form .field-input-center {
  text-align: center;
  width: auto;
  max-width: 3rem;
}
.calculator-form .field-small {
  flex: 0 0 auto;
  width: 5rem;
}
.calculator-form .field-small .field-input-wrapper {
  justify-content: flex-end;
}
.calculator-form .btn {
  width: 100%;
  margin-top: 1.5rem;
}
.calculator-results {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  gap: 3rem;
  border-radius: 0.3125rem;
  background: var(--Gray-05, #F8F8F8);
}
@media (max-width: 1024px) {
  .calculator-results {
    padding: 2rem;
    gap: 3rem;
  }
}
@media (max-width: 430px) {
  .calculator-results {
    padding: 1.25rem;
  }
}
.calculator-results .results-title {
  color: var(--Black, #000);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.calculator-results .results-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.calculator-results .results-rows .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid #CFCFCF;
}
.calculator-results .results-rows .row:last-child {
  padding-bottom: 0;
  border: 0;
}
.calculator-results .results-rows .row-total {
  align-items: flex-start;
}
.calculator-results .results-rows .row-total .label {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 430px) {
  .calculator-results .results-rows .row-total .label {
    font-size: 1.625rem;
  }
}
.calculator-results .results-rows .row-total .value {
  font-size: 2rem;
}
@media (max-width: 430px) {
  .calculator-results .results-rows .row-total .value {
    font-size: 1.625rem;
  }
}
.calculator-results .results-rows .row .label {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
  letter-spacing: -0.045rem;
}
@media (max-width: 430px) {
  .calculator-results .results-rows .row .label {
    font-size: 1.25rem;
    letter-spacing: -0.01375rem;
  }
}
.calculator-results .results-rows .row .value {
  color: var(--Black, #000);
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.015rem;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .calculator-results .results-rows .row .value {
    font-size: 1.375rem;
    letter-spacing: -0.01375rem;
  }
}

.form-footer-content .title-container .title {
  max-width: 31.6875rem;
}
.form-footer-content .title-container .subtitle {
  max-width: 28.375rem;
}
@media (max-width: 1024px) {
  .form-footer-content .title-container .subtitle {
    max-width: 27rem;
  }
}
@media (max-width: 430px) {
  .form-footer-content .title-container .subtitle {
    max-width: 23.0625rem;
  }
}

.block-bg.roi {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/*# sourceMappingURL=homeBuyers.css.map */
