/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #fff !important;
}

.c-white {
  color: #fff;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

.lc > :last-child {
  margin-bottom: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 15;
}

.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 16px;
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border: 0;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height);
  /**
  * @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
  */
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: rgb(60, 60, 59);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  background-color: rgb(248, 249, 240);
}

.text-center {
  text-align: center;
}

a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter {
  margin: 1em auto;
}

header {
  background-color: rgb(238, 118, 35);
  text-align: center;
  padding: 12px;
}
header .logo {
  max-width: 150px;
  display: inline-block;
}

.hidden_label label {
  display: none;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.gfield_validation_message {
  position: relative;
  top: 2px;
  font-size: 12px;
}

.gform_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: 300;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email] {
  border: 0;
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 0;
  height: 40px;
  padding: 0 0 0 26px;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: rgb(193, 193, 185);
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  padding-right: 15px;
  border: 0;
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/
.map-section {
  padding: 40px 12px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .map-section {
    padding: 40px 60px;
  }
}

.map-subtitle {
  font-size: 18px;
  color: rgb(238, 118, 35);
  font-weight: 900;
}

.map-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .map-title {
    font-size: 48px;
  }
}

@media (min-width: 992px) {
  .map-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.map-svg {
  border: 1px solid rgb(60, 60, 59);
}
.map-svg svg * {
  pointer-events: none;
}
.map-svg path.available {
  fill: rgb(248, 146, 82) !important;
}
.map-svg [data-lot] {
  cursor: pointer;
  pointer-events: all !important;
}
.map-svg [data-lot].active.available {
  fill: rgb(238, 118, 35) !important;
}

.map-plan {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .map-plan {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.map-disclaimer {
  font-size: 12px;
}

.map-lots {
  min-width: 255px;
}
@media (min-width: 992px) {
  .map-lots {
    margin-right: 20px;
  }
}

.map-card {
  background-color: #fff;
  border: 1px solid rgb(60, 60, 59);
  padding: 12px 18px;
  display: none;
}
.map-card.active {
  display: block;
}
.map-card p {
  font-weight: 900;
}
.map-card p a {
  text-decoration: underline;
  color: rgb(60, 60, 59);
}
.map-card p a:hover {
  opacity: 0.7;
}

.card-title {
  font-weight: 700;
  font-size: 28px;
  color: rgb(238, 118, 35);
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .card-title {
    font-size: 40px;
  }
}

.card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.card-meta.uppercase {
  text-transform: uppercase;
}

.card-val {
  margin-right: 16px;
}

.card-svg {
  border: 1px solid rgb(60, 60, 59);
  margin-bottom: 24px;
}
.card-svg svg {
  width: 100%;
}
.card-svg.sold [fill="#F89252"] {
  fill: rgb(193, 193, 185) !important;
}
.card-svg [fill="#F89252"] {
  fill: #f89252 !important;
}

.card-file {
  color: rgb(238, 118, 35);
  font-weight: 900;
  text-decoration: underline;
}
.card-file:hover {
  opacity: 0.7;
}