@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,400i|Nunito:300,300i");
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
  width: 100vw;
}

body {
  height: 100%;
  width: 100vw;
  color: #6d5d4b;
  background-color: white;
  overflow-x: hidden;
}

body {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  z-index: 777;
}
.btn:link, .btn:visited {
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 1.3rem 2rem 0.8rem 2rem;
  letter-spacing: 0.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s;
  border-radius: 100rem;
}
.btn:hover, .btn:link:hover {
  color: scale(#fff, -10%);
  text-decoration: none;
  background-color: rgba(198, 153, 99, 0.9);
}
.btn--brown {
  color: #fff;
  background-color: #c69963;
}
.btn--popup {
  color: #fff;
  background-color: #c69963;
  font-size: 1.6rem;
  text-transform: none;
  white-space: nowrap;
  padding: 2rem 6rem;
  margin: 4rem 0;
  line-height: 4.4rem;
  text-align: center;
}

.house {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  max-width: 70vw;
  max-height: 75vh;
  margin: 1rem 0 calc(1rem * 2) 0;
  background-color: #f9f7f6;
  cursor: pointer;
}
.house:not(:last-child) {
  margin-bottom: calc(1rem * 3);
}
.house__spacer {
  height: 1px;
  width: 80vw;
  background-color: #101d2c;
  position: relative;
  top: -1rem;
}
.house__image--src {
  width: 485px;
  max-width: 70vw;
  max-height: 50vh;
}
.house__name {
  display: inline-block;
  color: #fff;
  background-color: #101d2c;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding: 1rem;
  white-space: nowrap;
  width: 80%;
  transform: translateY(calc(-1rem * 2));
}
.house__body {
  height: 50%;
  padding: 0 4rem 1rem 4rem;
}
.house__body__copy {
  display: none;
  text-align: left;
  margin-bottom: 1rem;
}
.house__body__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}
.house__body__features__feature {
  padding: 0.6rem;
  text-align: center;
}
.house__cta {
  display: inline-block;
}
.house__cta .btn {
  display: inline-block;
  text-align: center;
}

a,
a:link,
a:visited {
  color: #ececec;
  text-decoration: none;
  letter-spacing: 0.1rem;
  padding: 0.2rem 0.4rem;
  font-weight: 400;
}

a:link:hover {
  color: scale(#fff, -10%);
  text-decoration: underline;
}

.logo__box {
  display: inline-block;
  height: 60vh;
  width: 60vw;
  opacity: 0.1;
  z-index: 1;
  position: absolute;
  left: 50vw;
  top: 50vw;
  transform: translate(-50%, -50%);
}
.logo__svg {
  height: 100%;
  width: 100%;
  fill: rgba(255, 255, 255, 0.8);
}

.more {
  display: none;
  color: #fff;
}
.more:link, .more:visited {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 1rem 0 0.4rem 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s;
  border-bottom: 1px dashed transparent;
}
.more:hover, .more:link:hover {
  color: scale(#fff, -10%);
  border-bottom-color: #c69963;
  text-decoration: none;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(14, 14, 14, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(14, 14, 14, 0.3);
  }
}
.popup__spacer {
  display: block;
  width: 70%;
}
.popup__content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(14, 14, 14, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  color: #0e0e0e;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  color: #333;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 7rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover, .popup__close:link:hover {
  color: #c69963;
  text-decoration: none;
}

.reviews {
  width: 70vw;
}

.review {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid transparent;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  max-width: 70vw;
}
.review:hover {
  border-color: rgba(198, 153, 99, 0.4);
}
.review__pic {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s;
}
.review__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: flex-start;
}
.review__name {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 400;
  padding-bottom: 1rem;
}
.review__copy {
  display: inline-block;
  font-size: 1.2rem;
  max-height: 6rem;
  text-align: left;
  overflow: hidden;
}
.review--natalie {
  background-image: url("assets/img/people/natalie.png");
}
.review--billy {
  background-image: url("assets/img/people/billy.png");
}
.review--heather {
  background-image: url("assets/img/people/heather.png");
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-items: flex-start;
  background-color: #6D5D4B;
  width: 100%;
  margin-top: 2.8rem;
  text-align: center;
}
.about__copy {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8rem;
  text-align: center;
  padding: 4rem 0;
  width: 80%;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-items: flex-start;
  color: #0e0e0e;
  background-color: #c69963;
  text-align: center;
  width: 100%;
}
.contact__cta {
  border-top: 1px solid #c69963;
  border-bottom: 1px solid #c69963;
  display: flex;
  align-items: center;
  justify-items: center;
  width: 100%;
}
.contact__name {
  display: inline-block;
  font-size: 1.6rem;
  padding-top: 2rem;
}
.contact__name:last-child {
  margin-left: 8rem;
}
.contact__name:not(:last-child) {
  margin-bottom: 1.5rem;
}
.contact__name--number {
  font-weight: 600;
  color: #000;
}
.contact__text {
  width: 90%;
  margin-bottom: 2.5rem;
}
.contact__form {
  display: inline-block;
  text-align: left;
  padding: 4rem 0;
  width: 70%;
}
.contact__form__input {
  width: 100%;
  padding: 0.6rem 0.4rem;
  text-align: left;
}
.contact__form__input--label {
  color: #0e0e0e;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}
.contact__form__textarea {
  padding: 0.6rem 0.4rem;
  width: 100%;
}
.contact__form__buttons {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact__form__btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 1rem;
}
.contact__form--spacer {
  display: inline-block;
  width: 50%;
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  text-align: center;
  width: 100%;
}
.features__body {
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  width: 80%;
  justify-items: center;
  align-items: center;
  align-content: center;
  align-content: center;
  text-align: center;
  padding: 1rem;
}
.features__feature {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
  padding: calc(1rem / 2);
  width: 100%;
}

.footer {
  color: #fff;
  background-color: #101d2c;
  padding: 1rem;
  width: 100%;
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  list-style-type: none;
}
.footer__list__item {
  padding: 1rem calc(1rem * 2);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
}
.footer__list__item:hover {
  color: scale(#c69963, 20%);
  transform: translateY(calc(-1rem / 2));
}
.footer__list__item--special {
  display: none;
}
.footer__copy {
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 60vh;
  background-attachment: fixed;
  background-image: linear-gradient(to right, rgba(16, 29, 44, 0.8), rgba(16, 29, 44, 0.8)), url("assets/img/landscape/hills-o-green.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 6rem;
  white-space: nowrap;
}
.header__subtitle {
  color: #c69963;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 6rem;
  text-transform: uppercase;
}
.header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  margin-top: 10vh;
}
.header__cta .filler {
  display: block;
  height: 4.4rem;
}
.header__cta:not(:last-child) {
  display: inline-block;
  margin-bottom: 4rem;
}

.housing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  width: 100%;
  color: #6D5D4B;
  background-color: #fff;
}
.housing__header {
  display: inline-block;
  background-color: #f9f7f6;
  padding: 1rem 2rem 2rem;
  text-align: center;
  width: 100%;
}
.housing__header__subtitle {
  color: #c69963;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  line-height: 3rem;
  padding-top: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
}
.housing__header__title {
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  line-height: 6rem;
}
.housing__header__copy {
  display: none;
  align-self: flex-start;
  text-align: left;
  width: 100%;
}
.housing__header__cta {
  display: inline-block;
  margin-top: 1rem;
}
.housing__houses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  margin-top: calc(1rem * 4);
  row-gap: calc(1rem * 6);
  width: 100%;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  text-align: center;
  width: 100vw;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  width: 100%;
}
.section__header {
  display: inline-block;
  background-color: #f9f7f6;
  padding: 1rem 2rem 2rem;
  text-align: center;
  width: 100%;
}
.section__header__subtitle {
  color: #c69963;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  line-height: 3rem;
  padding-top: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
}
.section__header__title {
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  line-height: 6rem;
}
.section__header__copy {
  display: inline-block;
  font-size: 1.4rem;
  align-self: center;
  text-align: center;
  width: 80%;
}
.section__header__cta {
  display: inline-block;
  background-color: #f9f7f6;
  margin-top: 1rem;
}
.section__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  text-align: center;
  width: 100%;
}

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