@media (min-width: 700px) {
  .listing-container {
    display: grid;
    grid-template-columns: auto 240px;
    grid-template-areas: "primary secondary";
    grid-column-gap: 2rem;
    min-height: 300px;
  }
}
.listing-container h1 {
  font-size: 28px;
  margin: 0 0 0.5rem;
  padding: 0;
}
@media (min-width: 700px) {
  .listing-container h1 {
    font-size: 32px;
  }
}
.listing-container h3 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}
.listing-container h4 {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.listing-primary {
  grid-area: primary;
  height: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .listing-primary {
    margin-bottom: 0;
  }
}

.listing-secondary {
  grid-area: secondary;
  height: 100%;
}

.team-member {
  position: relative;
  margin-bottom: 2rem;
}

.team-member-image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 225px;
}
@media (min-width: 700px) {
  .team-member-image {
    height: 170px;
  }
}

.team-member-details {
  background-color: #c4122f;
  padding: 1rem;
}

.team-member-name a {
  color: #fff;
}

.team-member-title {
  color: #ffffff;
}

.team-member-phone-ul {
  margin: 0;
  padding: 1.5rem 0 0.5rem;
  list-style: none;
  font-size: 1rem;
}
.team-member-phone-ul li {
  margin-bottom: 1rem;
  margin-left: -5px;
}
.team-member-phone-ul i.icon-mobile {
  font-size: 1rem;
  color: #fff;
}
.team-member-phone-ul i.icon-phone {
  font-size: 1rem;
  color: #fff;
}
.team-member-phone-ul a {
  color: #fff;
}

.team-member-buttons .btn {
  margin-bottom: 1rem;
}
.team-member-buttons .btn:last-child {
  margin-bottom: 0;
}

.listing-functions {
  margin-bottom: 1.5rem;
}
.listing-functions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.listing-functions ul li {
  margin-bottom: 0.5rem;
}

.listing-location {
  position: relative;
  margin-bottom: 1.7rem;
}
.listing-location .listing-location-address {
  grid-area: address;
}
.listing-location .listing-location-address p {
  margin-bottom: 0.4rem;
}
@media (min-width: 700px) {
  .listing-location .listing-location-address p {
    margin: 0;
  }
}
.listing-location .listing-location-address .listing-address {
  font-size: 1.5rem;
  font-weight: 600;
}
.listing-location .listing-location-address .listing-price {
  font-size: 1.2rem;
}
.listing-location .listing-location-reference {
  grid-area: reference;
  font-size: 1rem;
}
@media (min-width: 700px) {
  .listing-location .listing-location-reference {
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
}
@media (min-width: 700px) {
  .listing-location {
    display: grid;
    grid-column-gap: 1rem;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "address reference";
    width: 100%;
  }
}

.listing-features-ul {
  display: flex;
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 0;
}
.listing-features-ul .listing-features-li {
  padding-right: 1.5rem;
  font-size: 1.2rem;
}
.listing-features-ul .listing-features-li:last-child {
  padding-right: 0;
}
.listing-features-ul .listing-features-li span {
  font-size: 0.9rem;
  display: inline-block;
  margin-left: 4px;
}

.listing-description {
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 2rem;
}

.listing input, .open-home-register__content input {
  border: 1px solid #b2b2b2;
}

#info_form_errors, #listing_form_errors {
  border: 1px solid #ececec;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: red;
}
#info_form_errors p, #listing_form_errors p {
  margin: 0;
}

#listing-info-success {
  font-size: 1.4rem;
}

#listing-event-success {
  font-size: 1.4rem;
  padding: 1.5rem 0;
}

#open-home-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  top: 0;
  left: 0;
}

#open-home-overlay {
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 98;
}

#open-home-register {
  position: relative;
  display: grid;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.open-home-register__content {
  background-color: #ffffff;
  width: 350px;
  padding: 20px;
}
.open-home-register__content h3 {
  margin: 0;
  padding: 0;
}
.open-home-register__content p {
  margin: 0;
  padding: 0;
}

.listing-event-group {
  margin-bottom: 2.2rem;
}
.listing-event-group h2 {
  font-weight: normal;
}
.listing-event-group .listing-event-group__events {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
}
.listing-event-group .listing-event {
  font-size: 16px;
}
.listing-event-group .listing-event .listing-event__date {
  margin-bottom: 4px;
}
.listing-event-group .listing-event .listing-event__time {
  margin-bottom: 0.8em;
}

.listing-3d img {
  max-width: 200px;
}

.listing-apply-now {
  margin-bottom: 2rem;
  max-width: 300px;
}

@media (max-width: 770px) {
  .hero.hero2 {
    min-height: 75vh;
  }
}

.hero2-inner {
  position: relative;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
}
.hero2-inner .hero2-inner_content {
  text-align: center;
}
.hero2-inner .hero2-inner_content h1.hero2-title {
  color: #fff;
  font-size: 3rem;
  padding: 0 15px;
}
@media (min-width: 700px) {
  .hero2-inner .hero2-inner_content h1.hero2-title {
    font-size: 50px;
    padding: 0;
  }
}

@media (min-width: 700px) {
  .hero2-content_cta-group a.btn:first-child {
    margin-right: 1rem;
  }
}
.hero2-content_cta-group.hero2-content_cta-group--center {
  text-align: center;
}

a.btn.btn--hero {
  font-size: 16px;
  padding: 1.2em 2em;
  transition: all 0.2s linear;
  margin-bottom: 1rem;
  min-width: 300px;
}
@media (min-width: 700px) {
  a.btn.btn--hero {
    min-width: auto;
  }
}
a.btn.btn--secondary {
  background-color: #ececec;
  color: #c4122f;
}
a.btn.btn--secondary:hover {
  background-color: #f3cccc;
}

.v2-section .v2-section-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.v2-section .v2-section-container--narrow {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.v2-section.v2-section--image .v2-section--image_img {
  min-height: 33vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 700px) {
  .v2-section.v2-section--image .v2-section--image_img {
    min-height: auto;
    height: 400px;
    background-size: cover;
  }
}
.v2-section.v2-section--top-med {
  padding-top: 3rem;
}
.v2-section.v2-section--bottom-med {
  padding-bottom: 3rem;
}
.v2-section.v2-section--med {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.v2-section.v2-section--top-lg {
  padding-top: 6rem;
}
.v2-section.v2-section--bottom-lg {
  padding-bottom: 6rem;
}
.v2-section.v2-section--lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.v2-section.v2-section--red {
  background-color: #c4122f;
}
.v2-section.v2-section--red .testimonial {
  background-color: #c4122f;
  color: #fff;
}
.v2-section.v2-section--red .testimonial .slick-next::before {
  color: #fff;
}
.v2-section.v2-section--red .testimonial .slick-prev::before {
  color: #fff;
}
.v2-section.v2-section--red .testimonial blockquote::before {
  color: #fff;
}

.v2-section--gray {
  background-color: #ececec;
}

.v2-section--red {
  background-color: #c4122f;
  color: #fff;
}

.v2-content {
  padding: 0 1rem;
}
.v2-content h2 {
  font-size: 2rem;
  margin: 0 0 1.75rem;
}
.v2-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}
.v2-content p {
  margin: 0 0 1rem;
  padding: 0;
}
.v2-content p:last-child {
  margin: 0;
}

.info-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-row-gap: 2rem;
}
.info-group .info-item {
  text-align: center;
}
.info-group .info-item .info-item-graphic {
  max-width: 115px;
  margin: 0 auto;
}
.info-group .info-item .info-item-value {
  padding: 1.5rem 0;
  font-size: 1.2rem;
}
.info-group .info-item .info-item-value strong {
  display: block;
  font-size: 2.5rem;
}

.navblock-group {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.navblock-group a.navblock-item {
  height: 240px;
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.navblock-group a.navblock-item:hover {
  text-decoration: none;
}
.navblock-group a.navblock-item:hover .navblock-cover {
  height: 100%;
}
.navblock-group a.navblock-item .navblock-cover {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.2s linear;
}
.navblock-group a.navblock-item .navblock-text {
  text-transform: uppercase;
  width: 191px;
  text-align: center;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
}
.navblock-group a.navblock-item .navblock-text.navblock-text--shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.navblock-group.navblock-group--alt a.navblock-item .navblock-text {
  text-transform: uppercase;
  width: 227px;
  text-align: center;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}
.navblock-group.navblock-group--alt a.navblock-item .navblock-text small {
  font-size: 1rem;
  font-weight: normal;
  display: block;
}

.navblock-link {
  z-index: 2;
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 auto;
  text-align: center;
}

.testimonial.testimonial-unset-height {
  height: auto;
  padding: 0;
}
.testimonial.testimonial-unset-height blockquote.testimonialQuote {
  padding: 0 2rem;
}
.testimonial.testimonial-unset-height blockquote.testimonialQuote img {
  display: block;
  margin: 0 auto;
  width: 30%;
  border-radius: 50%;
  border: 3px solid #ffffff;
}
@media (min-width: 700px) {
  .testimonial.testimonial-unset-height blockquote.testimonialQuote {
    padding: 0 10%;
  }
  .testimonial.testimonial-unset-height blockquote.testimonialQuote img {
    width: 15%;
  }
}

.v2-split-block {
  display: grid;
  grid-template-areas: "splitImage" "splitText";
  grid-row-gap: 1rem;
}
@media (min-width: 700px) {
  .v2-split-block {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }
  .v2-split-block.v2-split-block--text-left {
    grid-template-areas: "splitText splitImage";
  }
  .v2-split-block.v2-split-block--text-right {
    grid-template-areas: "splitImage splitText";
  }
}
.v2-split-block .v2-split-block-text {
  grid-area: splitText;
}
.v2-split-block .v2-split-block-img {
  grid-area: splitImage;
}

.v2-latest-news {
  padding-top: 2rem;
  display: grid;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media (min-width: 700px) {
  .v2-latest-news {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.v2-latest-news .v2-latest-news-item {
  height: 100%;
  position: relative;
}
.v2-latest-news .v2-latest-news-item .v2-latest-news-image {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 0.7rem;
}
.v2-latest-news .v2-latest-news-item p {
  margin: 0;
  padding: 0;
}
.v2-latest-news .v2-latest-news-item p.v2-latest-news-date {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.v2-latest-news .v2-latest-news-item p.v2-latest-news-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3rem;
  margin-bottom: 100px;
}
.v2-latest-news .v2-latest-news-item .v2-latest-news-action {
  position: absolute;
  bottom: 0;
}

.pm-request-form input {
  border: 1px solid #b2b2b2;
}
.pm-request-form .field--email {
  opacity: 0;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.faq-group {
  margin-bottom: 2rem;
}
.faq-group details:first-child > summary {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.pm-faqs {
  margin: 2rem 0;
}

.faq__content {
  padding: 1rem 1rem 1.5rem;
}

details {
  background-color: #fefefe;
}

summary {
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #efefef;
  color: #333;
  padding: 1rem;
  outline: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}

details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
}

details[open] > summary::after {
  position: absolute;
  content: "-";
  right: 20px;
}

details > summary::-webkit-details-marker {
  display: none;
}

.pm-staff-image {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 700px) {
  .pm-staff-image {
    min-height: 150px;
  }
}

.pm-office {
  background-color: #fff;
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  .pm-office .pm-office-head {
    display: grid;
    grid-template-areas: "office-image office-details";
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }
}
.pm-office .pm-office-head .pm-office-image {
  grid-area: office-image;
  height: 100%;
}
.pm-office .pm-office-head .pm-office-details {
  grid-area: office-details;
  height: 100%;
  padding: 2rem 1rem 2rem 1em;
}
@media (min-width: 700px) {
  .pm-office .pm-office-head .pm-office-details {
    padding: 2rem 1rem 2rem 0;
  }
}
.pm-office .pm-office-head .pm-office-details .pm-office-details__title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.pm-office .pm-office-head .pm-office-details p.pm-office-details__p {
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
  font-size: 1.1rem;
}
.pm-office .pm-office-head .pm-office-details p.pm-office-details__p.pm-office-details__p__suburb {
  margin-bottom: 2rem;
}
.pm-office .pm-office-head .pm-office-details a.btn.btn--gray {
  width: 200px;
  font-size: 1rem;
  font-weight: normal;
}

.pm-office-staff {
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 450px));
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.pm-office-staff .pm-staff {
  background-color: #dedede;
}
@media (min-width: 700px) {
  .pm-office-staff .pm-staff {
    display: grid;
    grid-template-areas: "staff-image staff-details";
    grid-template-columns: 55% 45%;
  }
}
.pm-office-staff .pm-staff-image {
  grid-area: staff-image;
  background-position: center;
  background-size: cover;
}
.pm-office-staff .pm-staff-details {
  position: relative;
  padding: 1rem 1rem 5rem;
  grid-area: staff-details;
}
@media (min-width: 700px) {
  .pm-office-staff .pm-staff-details {
    padding: 1rem;
    min-height: 200px;
  }
}
.pm-office-staff .pm-staff-details .pm-staff-details__title {
  margin-bottom: 0.6rem;
}
.pm-office-staff .pm-staff-details .pm-staff-details__name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.pm-office-staff .pm-staff-details .pm-staff-details__title--p {
  margin: 0 0;
  line-height: 1rem;
}
.pm-office-staff .pm-staff-details .pm-staff-details__actions {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.pm-office-staff .pm-staff-details .pm-staff-details__actions .btn.btn--gray {
  background-color: #fff;
}
.pm-office-staff .pm-staff-details .pm-staff-details__phone__a {
  color: #222;
  margin-left: -5px;
}

#haven-container {
  height: 100vh;
  width: 100%;
  background-image: url("https://summit-property-management.s3-ap-southeast-2.amazonaws.com/summit-saxton-island-haven-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-areas: "havenNav" "havenBody";
  grid-template-rows: 90px auto;
}

.haven-nav {
  grid-area: havenNav;
  border-bottom: 1px solid #cecece;
}
.haven-nav .haven-logo {
  max-height: 90px;
  padding: 1rem 0;
  margin-left: 30px;
}
@media (min-width: 700px) {
  .haven-nav .haven-logo {
    margin-left: 15%;
  }
}

.haven-body {
  grid-area: havenBody;
  display: grid;
  justify-content: center;
  align-items: center;
}
.haven-body .haven-body__box {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
}
@media (min-width: 700px) {
  .haven-body .haven-body__box {
    min-width: 400px;
  }
}
.haven-body .haven-body__box .haven-box__head {
  background-color: #fff;
  text-align: center;
}
.haven-body .haven-body__box .haven-box__head img {
  height: 80px;
  padding: 1rem 0 0.5rem;
}
@media (min-width: 700px) {
  .haven-body .haven-body__box .haven-box__head img {
    height: auto;
  }
}
.haven-body .haven-body__box .haven-box__body {
  padding: 1.5rem 2rem;
  text-align: center;
}
.haven-body .haven-body__box .haven-box__body h1 {
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 2rem;
  color: #333;
}
@media (min-width: 700px) {
  .haven-body .haven-body__box .haven-box__body h1 {
    font-size: 3rem;
  }
}
@media (min-width: 700px) {
  .haven-body .haven-body__box .haven-box__body p {
    font-size: 18px;
    max-width: 650px;
  }
}
.haven-body .haven-body__box .haven-box__body .haven-box__ctas {
  padding: 1rem 0;
}
.haven-body .haven-body__box .haven-box__body .haven-box__ctas a {
  width: 250px;
}
@media (min-width: 700px) {
  .haven-body .haven-body__box .haven-box__body .haven-box__ctas a:first-child {
    margin-right: 1.5rem;
  }
}

button.btn, a.btn {
  font-size: 1rem;
  font-weight: normal;
  text-transform: unset;
}
button.btn.btn--blue, a.btn.btn--blue {
  color: #ffffff;
  background-color: #5B89B4;
  padding: 10px 38px 10px 20px;
  text-align: left;
}
button.btn.btn--gray, a.btn.btn--gray {
  background-color: #ececec;
  color: #000;
  padding: 10px 38px 10px 20px;
  text-align: left;
  transition: background-color 0.2s linear;
}
button.btn.btn--gray:hover, a.btn.btn--gray:hover {
  background-color: #f3cccc;
}
button.btn.btn--fullwidth, a.btn.btn--fullwidth {
  width: 100%;
}
button.btn [class^=icon-], a.btn [class^=icon-] {
  position: absolute;
  top: 11px;
  right: 15px;
}
button.btn.btn--normalcase, a.btn.btn--normalcase {
  text-transform: unset;
}
button.btn.btn--nobold, a.btn.btn--nobold {
  font-weight: normal;
}

.social-tile {
  display: inline-block;
  padding: 0.5rem;
  background-color: #b2b2b2;
  font-size: 1.3rem;
  color: #fff;
}

.red-text {
  color: #c4122f;
}

/*# sourceMappingURL=app-extended.css.map */
