@charset "UTF-8";
/**
 * 	CSS written by
 * 	@author: wanyi@awd.com.au;
 * 	General
 * 	- 1 Color Scheme
 * 	- 2 Spacers
 * 	- 3 Classes
 */
/*
 * 0: Mixins
 * This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
 * 
 * @package storefront
 */
/* @include box-shadow(1px,1px,1px,0, #fff, true); */
/*** -1 Color Scheme ***/
.t-primary {
  color: #35644f;
}

.t-secondary {
  color: #f7b197;
}

.t-dark {
  color: #1c2b28;
}

.t-white {
  color: #fff;
}

.t-grey {
  color: #f1f3f1;
}

.t-darkgreen {
  color: #132928;
}

.b-primary {
  background-color: #35644f;
}

.b-secondary {
  background-color: #f7b197;
}

.b-dark {
  background-color: #1c2b28;
}

.b-white {
  background-color: #fff;
}

.b-grey {
  background-color: #f1f3f1;
}

.b-darkgreen {
  background-color: #132928;
}

.b-lightgreen {
  background-color: #E4E8E4;
}

/*
 * 0: Classes
 * This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
 * 
 * 
 * @package storefront
 */
h1, h2, h3 {
  font-family: "PT Serif", serif;
  font-weight: 500;
}

.t-serif {
  font-family: "PT Serif", serif;
}

.t-sanserif {
  font-family: "Poppins", sans-serif;
}

.t-reg {
  font-weight: 400;
}

.t-med {
  font-weight: 500;
}

.t-bold {
  font-weight: 700;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "PT Serif", serif;
  line-height: 1.2;
  color: #1c2b28;
}

h1, h2, h3, h4 {
  color: #1c2b28;
}

.title {
  font-family: "PT Serif", serif;
  font-weight: 500;
  font-size: 2em;
}

main {
  overflow: hidden;
}

section, footer {
  position: relative;
  width: 100%;
}

a {
  display: inline-block;
}

a:hover, a:focus {
  color: #1c2b28;
}

a, a:hover, a:focus, input, input:hover, input:focus {
  transition: all 0.5s ease;
  outline: none;
}

button:focus {
  outline: 0;
}

form#search .input-group .form-control, form#search .input-group .btn {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #35644f;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}
form#search .input-group .form-control:focus, form#search .input-group .form-control:hover, form#search .input-group .btn:focus, form#search .input-group .btn:hover {
  box-shadow: none;
}
form#search .input-group .form-control {
  padding-left: 0;
}
form#search .input-group span button {
  padding-right: 0;
}
form#search .input-group span button i {
  color: #35644f;
  transition: all 0.5s ease;
}
form#search .input-group span:hover i, form#search .input-group span:focus i {
  color: #f7b197;
  transition: all 0.5s ease;
}

/*** -3 Classes ***/
.has-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.has-absolute {
  position: relative;
}

.absolute-xy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.absolute-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.absolute-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.table-div {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.has-image {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.has-image.contain {
  background-size: contain;
}

.square {
  position: relative;
  width: 100%;
}
.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/*
 * 0: Spacers
 * This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
 * 
 * It will generate several classes such as:
 * .m-r-10 which gives margin-right 10 pixels.
 * .m-r-15 gives MARGIN to the RIGHT 15 pixels.
 * .p-b-5 gives PADDING to the BOTTOM of 5 pixels
 * .p-b-5 gives PADDING to the BOTTOM of 5 pixels
 * The first letter is "m" or "p" for MARGIN or PADDING
 * Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
 * Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
 * 
 * @package storefront
 */
.m0t {
  margin-top: 0px;
}

.p0t {
  padding-top: 0px;
}

.m0b {
  margin-bottom: 0px;
}

.p0b {
  padding-bottom: 0px;
}

.m0l {
  margin-left: 0px;
}

.p0l {
  padding-left: 0px;
}

.m0r {
  margin-right: 0px;
}

.p0r {
  padding-right: 0px;
}

.m5t {
  margin-top: 5px;
}

.p5t {
  padding-top: 5px;
}

.m5b {
  margin-bottom: 5px;
}

.p5b {
  padding-bottom: 5px;
}

.m5l {
  margin-left: 5px;
}

.p5l {
  padding-left: 5px;
}

.m5r {
  margin-right: 5px;
}

.p5r {
  padding-right: 5px;
}

.m10t {
  margin-top: 10px;
}

.p10t {
  padding-top: 10px;
}

.m10b {
  margin-bottom: 10px;
}

.p10b {
  padding-bottom: 10px;
}

.m10l {
  margin-left: 10px;
}

.p10l {
  padding-left: 10px;
}

.m10r {
  margin-right: 10px;
}

.p10r {
  padding-right: 10px;
}

.m15t {
  margin-top: 15px;
}

.p15t {
  padding-top: 15px;
}

.m15b {
  margin-bottom: 15px;
}

.p15b {
  padding-bottom: 15px;
}

.m15l {
  margin-left: 15px;
}

.p15l {
  padding-left: 15px;
}

.m15r {
  margin-right: 15px;
}

.p15r {
  padding-right: 15px;
}

.m20t {
  margin-top: 20px;
}

.p20t {
  padding-top: 20px;
}

.m20b {
  margin-bottom: 20px;
}

.p20b {
  padding-bottom: 20px;
}

.m20l {
  margin-left: 20px;
}

.p20l {
  padding-left: 20px;
}

.m20r {
  margin-right: 20px;
}

.p20r {
  padding-right: 20px;
}

.m25t {
  margin-top: 25px;
}

.p25t {
  padding-top: 25px;
}

.m25b {
  margin-bottom: 25px;
}

.p25b {
  padding-bottom: 25px;
}

.m25l {
  margin-left: 25px;
}

.p25l {
  padding-left: 25px;
}

.m25r {
  margin-right: 25px;
}

.p25r {
  padding-right: 25px;
}

.m30t {
  margin-top: 30px;
}

.p30t {
  padding-top: 30px;
}

.m30b {
  margin-bottom: 30px;
}

.p30b {
  padding-bottom: 30px;
}

.m30l {
  margin-left: 30px;
}

.p30l {
  padding-left: 30px;
}

.m30r {
  margin-right: 30px;
}

.p30r {
  padding-right: 30px;
}

.m35t {
  margin-top: 35px;
}

.p35t {
  padding-top: 35px;
}

.m35b {
  margin-bottom: 35px;
}

.p35b {
  padding-bottom: 35px;
}

.m35l {
  margin-left: 35px;
}

.p35l {
  padding-left: 35px;
}

.m35r {
  margin-right: 35px;
}

.p35r {
  padding-right: 35px;
}

.m40t {
  margin-top: 40px;
}

.p40t {
  padding-top: 40px;
}

.m40b {
  margin-bottom: 40px;
}

.p40b {
  padding-bottom: 40px;
}

.m40l {
  margin-left: 40px;
}

.p40l {
  padding-left: 40px;
}

.m40r {
  margin-right: 40px;
}

.p40r {
  padding-right: 40px;
}

.m45t {
  margin-top: 45px;
}

.p45t {
  padding-top: 45px;
}

.m45b {
  margin-bottom: 45px;
}

.p45b {
  padding-bottom: 45px;
}

.m45l {
  margin-left: 45px;
}

.p45l {
  padding-left: 45px;
}

.m45r {
  margin-right: 45px;
}

.p45r {
  padding-right: 45px;
}

.m50t {
  margin-top: 50px;
}

.p50t {
  padding-top: 50px;
}

.m50b {
  margin-bottom: 50px;
}

.p50b {
  padding-bottom: 50px;
}

.m50l {
  margin-left: 50px;
}

.p50l {
  padding-left: 50px;
}

.m50r {
  margin-right: 50px;
}

.p50r {
  padding-right: 50px;
}

.m80t {
  margin-top: 80px;
}

.p80t {
  padding-top: 80px;
}

.m80b {
  margin-bottom: 80px;
}

.p80b {
  padding-bottom: 80px;
}

.m80l {
  margin-left: 80px;
}

.p80l {
  padding-left: 80px;
}

.m80r {
  margin-right: 80px;
}

.p80r {
  padding-right: 80px;
}

.m100t {
  margin-top: 100px;
}

.p100t {
  padding-top: 100px;
}

.m100b {
  margin-bottom: 100px;
}

.p100b {
  padding-bottom: 100px;
}

.m100l {
  margin-left: 100px;
}

.p100l {
  padding-left: 100px;
}

.m100r {
  margin-right: 100px;
}

.p100r {
  padding-right: 100px;
}

.m150t {
  margin-top: 150px;
}

.p150t {
  padding-top: 150px;
}

.m150b {
  margin-bottom: 150px;
}

.p150b {
  padding-bottom: 150px;
}

.m150l {
  margin-left: 150px;
}

.p150l {
  padding-left: 150px;
}

.m150r {
  margin-right: 150px;
}

.p150r {
  padding-right: 150px;
}

.m200t {
  margin-top: 200px;
}

.p200t {
  padding-top: 200px;
}

.m200b {
  margin-bottom: 200px;
}

.p200b {
  padding-bottom: 200px;
}

.m200l {
  margin-left: 200px;
}

.p200l {
  padding-left: 200px;
}

.m200r {
  margin-right: 200px;
}

.p200r {
  padding-right: 200px;
}

.m250t {
  margin-top: 250px;
}

.p250t {
  padding-top: 250px;
}

.m250b {
  margin-bottom: 250px;
}

.p250b {
  padding-bottom: 250px;
}

.m250l {
  margin-left: 250px;
}

.p250l {
  padding-left: 250px;
}

.m250r {
  margin-right: 250px;
}

.p250r {
  padding-right: 250px;
}

/*
 * 0: Buttons
 * This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
 * 
 * It will generate several classes such as:
 * .m-r-10 which gives margin-right 10 pixels.
 * .m-r-15 gives MARGIN to the RIGHT 15 pixels.
 * .p-b-5 gives PADDING to the BOTTOM of 5 pixels
 * .p-b-5 gives PADDING to the BOTTOM of 5 pixels
 * The first letter is "m" or "p" for MARGIN or PADDING
 * Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
 * Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
 * 
 * @package storefront
 */
.ahref {
  position: relative;
  border-radius: 0;
  border: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 20px;
  max-width: 100%;
  font-weight: 400;
  font-size: 15px;
}
.ahref.solid {
  background-color: #35644f;
  color: #fff;
}
.ahref.solid:hover {
  background-color: #fff;
  color: #35644f;
  text-decoration: none;
}
.ahref.solid.white {
  background-color: #fff;
  color: #1c2b28;
}
.ahref.solid.white:hover {
  background-color: #35644f;
  color: #fff;
  text-decoration: none;
}
.ahref.solid.grey {
  background-color: #35644f;
  color: #f1f3f1;
}
.ahref.solid.grey:hover {
  background-color: #f1f3f1;
  color: #35644f;
  text-decoration: none;
}
.ahref.solid.dark {
  border-color: #35644f;
  background-color: #35644f;
  color: #35644f;
}
.ahref.bordered {
  border-color: #f7b197;
  background-color: transparent;
  color: #f7b197;
}
.ahref.bordered:hover {
  background-color: #f7b197;
  color: #fff;
}
.ahref.line {
  color: #f7b197;
}
.ahref.line:hover {
  text-decoration: none;
}
.ahref.line:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f7b197;
  color: #f7b197;
}

.townhome-button {
  background-color: #35644f;
  color: #ffffff;
  transition: background-color 500ms;
  text-decoration: none !important;
  text-align: center;
  padding: 16px 0;
  box-sizing: border-box;
  width: 100%;
  flex: 0 1 32%;
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
}
.townhome-button:hover {
  background-color: #1c2b28;
  color: #ffffff;
  text-decoration: none !important;
}

header #header-top img {
  max-width: 100%;
  width: 250px;
  margin-top: 30px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  header #header-top img {
    width: 230px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
header #header-top .t-sanserif {
  margin-bottom: 20px;
}
header #header-top #register-trigger {
  padding: 8px 35px;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  header #header-top .header-logo {
    position: absolute;
    z-index: 2;
    top: 0;
  }
}
@media (max-width: 767px) {
  header #header-bottom {
    top: 0;
    min-height: 116px;
    background-color: transparent;
    z-index: 1;
    /* > .container{
    	height: 116px;
    	> .row{ height: 100%; }
    } */
  }
  header #header-bottom .navbar {
    justify-content: flex-end !important;
  }
  header #header-bottom .navbar ul#bb4-primary-menu {
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 50px;
  }
  header #header-bottom .navbar ul#bb4-primary-menu li a {
    color: #35644f;
    text-align: left;
    padding-left: 0;
  }
  header #header-bottom .navbar ul#bb4-primary-menu li.active a {
    color: #f7b197;
  }
  header #header-bottom .left button {
    margin-top: 32px;
  }
  header #header-bottom .left button .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(53,100,79, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}
header .main-navigation .left .navbar {
  padding-left: 0;
  padding-right: 0;
}
header .main-navigation .left ul#bb4-primary-menu {
  width: 100%;
  /* @include bp-medium {
  	padding-top: 25px;
  		li{
  			a{text-align: left;}
  		}
  	}
  } */
}
header .main-navigation .left ul#bb4-primary-menu li a {
  position: relative;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  padding-left: 17.5px;
  padding-right: 17.5px;
}
header .main-navigation .left ul#bb4-primary-menu li a.current-menu-item {
  color: #f7b197;
}
header .main-navigation .left ul#bb4-primary-menu li.current-menu-ancestor > a {
  position: relative;
  color: #f7b197;
}
header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu {
  border-radius: 0;
  border: 0;
  background-color: #35644f;
}
header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu .has-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7b197;
  width: 100%;
  height: 100%;
}
header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a {
  padding-left: 0;
  padding-right: 0;
}
header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a.dropdown-item {
  padding: 0.25rem 1.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a.dropdown-item.active {
    background-color: transparent;
    color: #f7b197;
  }
}
header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a.dropdown-item:hover, header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a.dropdown-item:focus {
  background-color: transparent;
  color: #f7b197;
}
@media (max-width: 767px) {
  header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu {
    background-color: #fff;
  }
  header .main-navigation .left ul#bb4-primary-menu li .dropdown-menu a.dropdown-item {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  header .main-navigation .left .navbar {
    padding: 0.5rem 0rem;
  }
}
header .main-navigation .right a {
  padding: 8px 30px;
  font-weight: 500;
}
header .main-navigation .right a:last-child {
  margin-left: 20px;
}
header .main-navigation .right a:hover, header .main-navigation .right a:focus {
  background-color: #f7b197 !important;
  color: #35644f !important;
}
@media (max-width: 767px) {
  header .main-navigation .right {
    position: absolute;
    top: 8px;
    right: 0;
  }
  header .main-navigation .right a:last-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  header {
    position: fixed;
    width: 100%;
    z-index: 1;
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  header #header-bottom-register #register-trigger {
    width: 100%;
    text-align: center;
    border: 1px solid #35644f;
  }
}

@media (max-width: 767px) {
  #content {
    padding-top: 152px;
  }
}
#register #footer-form-r .form-body input, #register #footer-form-r .form-body .dropdown {
  font-weight: 400;
  color: #1c2b28;
}
#register #footer-form-r .form-body input::placeholder, #register #footer-form-r .form-body .dropdown::placeholder {
  color: #1c2b28;
}
#register #footer-form-r .form-body .extra {
  margin-top: 40px;
  font-family: "PT Serif", serif;
}
#register #footer-form-r #salesforce-apply-response {
  margin: 0;
}

footer#top {
  /*a { color: $dark; }*/
}
footer#top h6 {
  color: #132928;
}
footer#top .container > .row .upperline {
  width: 100%;
  border-top: 2px solid #1c2b28;
}
footer#top .container > .row .left p {
  width: 100%;
  color: #132928;
}
footer#top .container > .row .left p:first-child {
  font-family: "Poppins", sans-serif;
}
footer#top .container > .row .right a img {
  width: 30px;
  margin-left: 5px;
}
footer#bottom #footer-logo {
  max-width: 150px;
}
footer#bottom a {
  color: #132928;
  text-decoration: none;
}
footer#bottom a:hover {
  color: #f7b197;
}
footer .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  margin: 0 auto 50px;
}
footer .logos a {
  color: inherit;
  font-size: 0.75rem;
  padding: 0 1.25rem;
}
footer .logos span {
  display: block;
  margin-bottom: 0.5rem;
}
footer .logos img {
  height: 75px;
}

.fancybox-container .fancy-modal {
  color: #fff;
  background-color: #1c2b28;
  font-family: "Poppins", sans-serif;
  min-width: 80%;
}
.fancybox-container .fancy-modal h1, .fancybox-container .fancy-modal h2, .fancybox-container .fancy-modal h3, .fancybox-container .fancy-modal p {
  color: inherit;
}
@media (min-width: 960px) {
  .fancybox-container .fancy-modal {
    min-width: 660px;
  }
}
.fancybox-container .fancy-modal .fancybox-close-small {
  width: 70px;
  height: 70px;
  color: #fff;
  opacity: 1;
  left: unset;
  right: 0;
  top: 0;
}
.fancybox-container .fancy-modal .fancybox-close-small svg path {
  fill: #fff;
}
.fancybox-container .fancy-modal .circle-right,
.fancybox-container .fancy-modal .circle-left {
  position: absolute;
}
.fancybox-container .fancy-modal .circle-right img,
.fancybox-container .fancy-modal .circle-left img {
  width: 50px;
}
.fancybox-container .fancy-modal .circle-left {
  left: 8%;
  top: 0;
}
.fancybox-container .fancy-modal .circle-right {
  right: 7.5%;
  top: 45px;
}

::-webkit-input-placeholder {
  color: #35644f;
}

::-moz-placeholder {
  color: #35644f;
}

:-ms-input-placeholder {
  color: #35644f;
}

#select-3 .forminator-field .select2:last-of-type, #select-1 .forminator-field .select2:last-of-type, #select-4 .forminator-field .select2:last-of-type {
  display: none;
}

#register .forminator-custom-form,
#register-pop .forminator-custom-form,
#enquiry-pop .forminator-custom-form {
  font-family: "Poppins", sans-serif;
}
#register .forminator-select,
#register-pop .forminator-select,
#enquiry-pop .forminator-select {
  width: 100%;
  background-color: #ededed;
  border: none;
  padding-top: 4px;
  padding-bottom: 4px;
}
#register .forminator-custom-form .forminator-row,
#register-pop .forminator-custom-form .forminator-row,
#enquiry-pop .forminator-custom-form .forminator-row {
  padding-bottom: 5px;
}
#register .forminator-custom-form .forminator-label,
#register-pop .forminator-custom-form .forminator-label,
#enquiry-pop .forminator-custom-form .forminator-label {
  display: none;
}
#register .forminator-custom-form .forminator-input, #register .forminator-custom-form .forminator-textarea, #register .forminator-custom-form .forminator-select-list .forminator-value,
#register-pop .forminator-custom-form .forminator-input,
#register-pop .forminator-custom-form .forminator-textarea,
#register-pop .forminator-custom-form .forminator-select-list .forminator-value,
#enquiry-pop .forminator-custom-form .forminator-input,
#enquiry-pop .forminator-custom-form .forminator-textarea,
#enquiry-pop .forminator-custom-form .forminator-select-list .forminator-value {
  background-color: #fff;
  font-weight: 400;
  color: #132928;
  text-transform: uppercase;
  border-color: currentColor;
}
#register .forminator-custom-form .forminator-value,
#register-pop .forminator-custom-form .forminator-value,
#enquiry-pop .forminator-custom-form .forminator-value {
  color: inherit;
}
#register .forminator-custom-form .forminator-checkbox,
#register-pop .forminator-custom-form .forminator-checkbox,
#enquiry-pop .forminator-custom-form .forminator-checkbox {
  font-size: 0.8rem;
}
#register .forminator-custom-form .forminator-checkbox, #register .forminator-custom-form .forminator-textarea--wrap,
#register-pop .forminator-custom-form .forminator-checkbox,
#register-pop .forminator-custom-form .forminator-textarea--wrap,
#enquiry-pop .forminator-custom-form .forminator-checkbox,
#enquiry-pop .forminator-custom-form .forminator-textarea--wrap {
  margin-top: 40px;
}
#register .forminator-custom-form .forminator-button-submit,
#register-pop .forminator-custom-form .forminator-button-submit,
#enquiry-pop .forminator-custom-form .forminator-button-submit {
  font-size: 18px;
  padding: 8px 30px;
  margin-top: 40px;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 400;
  float: right;
}
#register .forminator-custom-form .forminator-button-submit:hover, #register .forminator-custom-form .forminator-button-submit:focus,
#register-pop .forminator-custom-form .forminator-button-submit:hover,
#register-pop .forminator-custom-form .forminator-button-submit:focus,
#enquiry-pop .forminator-custom-form .forminator-button-submit:hover,
#enquiry-pop .forminator-custom-form .forminator-button-submit:focus {
  box-shadow: none;
}
#register .forminator-custom-form .forminator-select-list .forminator-dropdown-handle [class*=forminator-icon-],
#register-pop .forminator-custom-form .forminator-select-list .forminator-dropdown-handle [class*=forminator-icon-],
#enquiry-pop .forminator-custom-form .forminator-select-list .forminator-dropdown-handle [class*=forminator-icon-] {
  color: #1c2b28;
}
#register .forminator-custom-form .forminator-select-list .forminator-dropdown-list li.current,
#register-pop .forminator-custom-form .forminator-select-list .forminator-dropdown-list li.current,
#enquiry-pop .forminator-custom-form .forminator-select-list .forminator-dropdown-list li.current {
  background-color: #132928;
}
#register .forminator-custom-form .forminator-checkbox span[aria-hidden],
#register-pop .forminator-custom-form .forminator-checkbox span[aria-hidden],
#enquiry-pop .forminator-custom-form .forminator-checkbox span[aria-hidden] {
  color: #1c2b28;
  background-color: #fff;
}
#register .forminator-custom-form .forminator-response-message,
#register-pop .forminator-custom-form .forminator-response-message,
#enquiry-pop .forminator-custom-form .forminator-response-message {
  box-shadow: none;
  text-align: center;
  background-color: transparent;
}
#register .forminator-custom-form .forminator-response-message:hover, #register .forminator-custom-form .forminator-response-message:active, #register .forminator-custom-form .forminator-response-message:focus,
#register-pop .forminator-custom-form .forminator-response-message:hover,
#register-pop .forminator-custom-form .forminator-response-message:active,
#register-pop .forminator-custom-form .forminator-response-message:focus,
#enquiry-pop .forminator-custom-form .forminator-response-message:hover,
#enquiry-pop .forminator-custom-form .forminator-response-message:active,
#enquiry-pop .forminator-custom-form .forminator-response-message:focus {
  box-shadow: none;
}
#register .forminator-custom-form .forminator-response-message p,
#register-pop .forminator-custom-form .forminator-response-message p,
#enquiry-pop .forminator-custom-form .forminator-response-message p {
  color: inherit;
  font-size: 1.75rem;
}

#register .forminator-field, #register .forminator-input, #register .forminator-label, #register .forminator-checkbox, #register .forminator-value {
  color: #1c2b28;
}
#register .forminator-input {
  border-color: #1c2b28;
}
#register .forminator-value::before, #register .forminator-input--wrap::after {
  background-color: #1c2b28;
}
#register .forminator-textarea--wrap::after {
  border-color: #1c2b28;
}
#register .forminator-button-submit {
  color: #fff;
  background-color: #1c2b28;
}
#register .forminator-button-submit:hover, #register .forminator-button-submit:focus {
  background-color: #35644f;
}
#register .forminator-response-message {
  color: #1c2b28;
}

#register-pop .forminator-field, #register-pop .forminator-input, #register-pop .forminator-label, #register-pop .forminator-checkbox, #register-pop .forminator-value,
#enquiry-pop .forminator-field,
#enquiry-pop .forminator-input,
#enquiry-pop .forminator-label,
#enquiry-pop .forminator-checkbox,
#enquiry-pop .forminator-value {
  color: #fff;
}
#register-pop .forminator-input,
#enquiry-pop .forminator-input {
  border-color: #fff;
}
#register-pop .forminator-value::before, #register-pop .forminator-input--wrap::after,
#enquiry-pop .forminator-value::before,
#enquiry-pop .forminator-input--wrap::after {
  background-color: #fff;
}
#register-pop .forminator-textarea--wrap::after,
#enquiry-pop .forminator-textarea--wrap::after {
  border-color: #fff;
}
#register-pop .forminator-button-submit,
#enquiry-pop .forminator-button-submit {
  color: #1c2b28;
  background-color: #f1f3f1;
}
#register-pop .forminator-button-submit:hover, #register-pop .forminator-button-submit:focus,
#enquiry-pop .forminator-button-submit:hover,
#enquiry-pop .forminator-button-submit:focus {
  background-color: #fff;
}
#register-pop .forminator-response-message,
#enquiry-pop .forminator-response-message {
  color: #fff;
}

.grecaptcha-badge {
  visibility: hidden;
  height: 0 !important;
}

/*
 * SASS for botania.com.au
 * front-page.php
 */
.home h1 {
  color: #35644f;
}
.home#hero {
  overflow: hidden;
}
.home#hero .banners {
  margin-bottom: 0;
}
.home#hero .banners .has-image {
  position: relative;
}
.home#hero .banners .has-image .overlay {
  background-color: rgba(53, 100, 79, 0.4);
}
.home#hero .banners .has-image .row {
  width: 100%;
  padding-bottom: 44%;
}
.home#hero .banners .has-image .row .col {
  position: relative;
  top: -150px;
}
.home#hero .banners .has-image .row .col h1 {
  margin-bottom: 25px;
  font-size: 50px;
}
.home#nowselling .col .image {
  position: relative;
  height: 200px;
}
.home#nowselling .col .content {
  text-align: left;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .home#extras {
    padding-bottom: 80px;
  }
  .home#extras .image:after {
    padding-bottom: 70%;
  }
}
.home-copy p {
  color: #fff;
}
.home-copy h3 {
  color: #fff;
}
.home-url {
  color: #fff;
}

.image-grid {
  margin: 80px auto;
  text-align: center;
}
@media (max-width: 767px) {
  .image-grid {
    margin: 50px auto 44px;
  }
}
.image-grid-intro {
  max-width: 520px;
  margin: 0 auto;
}
.image-grid-intro p {
  margin: 8px auto 32px;
}
.image-grid-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px 16px;
  grid-auto-flow: row;
  grid-template-areas: "block-0 block-0 block-0" "block-0 block-0 block-0" "block-1 block-2 block-3" "block-4 block-4 block-3" "block-4 block-4 block-5";
}
@media (max-width: 767px) {
  .image-grid-images {
    display: block;
  }
}
.image-grid .block-0 {
  grid-area: block-0;
}
.image-grid .block-1 {
  grid-area: block-1;
}
.image-grid .block-2 {
  grid-area: block-2;
}
.image-grid .block-3 {
  grid-area: block-3;
}
.image-grid .block-4 {
  grid-area: block-4;
}
.image-grid .block-5 {
  grid-area: block-5;
}
.image-grid-block {
  position: relative;
  object-fit: cover;
}
@media (max-width: 767px) {
  .image-grid-block {
    height: 260px;
    margin-bottom: 16px;
  }
}
.image-grid-block:hover .overlay {
  opacity: 0.8;
}
.image-grid-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-grid-block .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #000;
}
.image-grid-block .overlay p {
  color: white;
  opacity: 1;
  width: 300px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#main-column .post {
  border: 0;
  padding: 0;
  margin-bottom: 50px;
}
#main-column .post .entry-header {
  padding: 25px 0;
  transition: all 0.5s ease;
}
#main-column .post .entry-header .entry-meta {
  font-size: 12px;
}
#main-column .post .entry-header .entry-title {
  font-size: 24px;
}

#sidebar-right .widget .widget-title {
  color: #f7b197;
}
#sidebar-right .widget ul {
  padding-left: 0;
}
#sidebar-right .widget ul li {
  list-style-type: none;
  font-size: 14px;
  padding-top: 10px;
}
#sidebar-right .widget ul li:hover a {
  color: #f7b197;
}

body.single main .blocker, body.blog main .blocker {
  display: block;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  body.single main .header .right > div, body.blog main .header .right > div {
    justify-content: flex-start !important;
  }
}
body.single article.box h3, body.blog article.box h3 {
  min-height: 66px;
}
body.single article.box a, body.blog article.box a {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  body.single article.box a, body.blog article.box a {
    margin-bottom: 15px;
  }
  body.single article.box a p.m50b, body.blog article.box a p.m50b {
    margin-bottom: 25px;
  }
  body.single article.box a .image:after, body.blog article.box a .image:after {
    padding-bottom: 80% !important;
  }
}
body.single article.box > a, body.blog article.box > a {
  margin-bottom: 0px;
  width: 100%;
}
body.single .post:hover .entry-title a, body.blog .post:hover .entry-title a {
  color: #f7b197;
}
body.single .post:hover .entry-header, body.blog .post:hover .entry-header {
  border-color: #f7b197;
  transition: all 0.5s ease;
}
body.single .post .entry-content, body.blog .post .entry-content {
  font-size: 14px;
}

footer.entry-meta {
  display: none;
}

/*
 * SASS for botania.com.au
 * page.php - content-page.php
 */
.square.pb-five:after {
  padding-bottom: 50%;
}
.square.pb-seven:after {
  padding-bottom: 70%;
}
.square.pb-eight:after {
  padding-bottom: 80%;
}

.townhomes-collection-button {
  width: calc(100% - 32px);
  display: inline-block;
  max-width: 305px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: initial;
}

.toggle .toggle-title {
  position: relative;
}
.toggle .toggle-title:before {
  content: "×";
  position: absolute;
  right: 0;
  top: -15px;
  width: auto;
  height: auto;
  color: #1c2b28;
  font: 55px Helvetica Neue, Helvetica, sans-serif;
  font-weight: lighter;
  background-color: transparent;
  transform-origin: center;
  outline: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.toggle .toggle-title .tohide {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.toggle .toggle-title.active:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.toggle .toggle-title.active .tohide {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .toggle .toggle-title:before {
    right: 25px;
  }
  .toggle .toggle-title .tohide {
    display: block;
  }
  .toggle .toggle-title .has-image {
    height: 200px !important;
  }
  .toggle .toggle-title.active .tohide {
    display: none;
  }
}
.toggle .toggle-inner .col:first-child {
  padding-right: 80px;
}
@media (max-width: 991px) {
  .toggle .toggle-inner {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .toggle .row:last-child .col-12:first-child {
    padding-top: 30px;
  }
}

.grid .box a {
  color: #1c2b28;
}
.grid .box a:hover, .grid .box a:focus {
  color: #1c2b28;
  text-decoration: none;
}
.grid .box a .image {
  margin-bottom: 30px;
}
.grid .box a .image:after {
  padding-bottom: 80%;
}
@media (max-width: 991px) {
  .grid .box a {
    margin-bottom: 50px;
  }
  .grid .box a .image {
    margin-bottom: 15px;
  }
  .grid .box a .image:after {
    padding-bottom: 50%;
  }
}

.layout.header a {
  color: #1c2b28;
}
@media (max-width: 991px) {
  .layout.header .left {
    margin-bottom: 30px;
  }
  .layout.header .left h1 {
    font-size: 2rem;
  }
  .layout.header .left h3 {
    font-size: 1.5rem;
  }
}
.layout.header .right table tr td {
  padding: 10px 5px;
}
@media (max-width: 991px) {
  .layout.header .right .d-flex {
    justify-content: flex-start !important;
  }
}
@media (min-width: 1200px) {
  #page-37 .layout.header .right {
    padding-right: 100px;
  }
}
.layout.visitus #map {
  height: 60vh;
}
.layout.visit-us img {
  width: 36px;
}
.layout.mediaonly .video .has-image {
  width: 100%;
  height: 600px;
  position: relative;
}
.layout.mediaonly .video .has-image img {
  width: 100px;
  height: auto;
}
.layout.mediaonly .video .fancybox-vimeo {
  position: absolute;
  width: 100%;
  height: 100%;
}
.layout.mediaonly .has-slider {
  margin-bottom: 100px;
}
.layout.icontext p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #35644f;
}
.layout.icontext .icon {
  width: auto;
  height: 45px;
  background-size: contain;
  background-position: left center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .layout.icontext .row > div {
    margin-bottom: 30px;
  }
  .layout.icontext .row > div .icon {
    margin-bottom: 10px;
  }
}
.layout.gallerytitletext .row .has-content #logo-growland {
  width: 100%;
  max-width: 100px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .layout.gallerytitletext .row .has-content h3 {
    margin-bottom: 25px;
  }
}
.layout.aerial .has-image {
  background-size: contain;
}
.layout#location-map .nav.nav-tabs {
  border-bottom: none;
}
.layout#location-map .nav.nav-tabs .nav-item {
  font-size: 32px;
  color: #aaa;
  font-family: "PT Serif", serif;
  border: none;
  padding: 0 25px;
  border-radius: 0;
}
.layout#location-map .nav.nav-tabs .nav-item:first-child {
  border-right: 2px solid #35644f;
}
.layout#location-map .nav.nav-tabs .nav-item.active {
  color: #132928;
  background-color: #f1f3f1;
}
@media (max-width: 565px) {
  .layout#location-map .nav.nav-tabs .nav-item {
    font-size: 24px;
    padding: 0 15px;
  }
}
@media (max-width: 350px) {
  .layout#location-map .nav.nav-tabs .nav-item {
    font-size: 20px;
  }
}
.layout#location-map .tab-content {
  width: 100%;
}
.layout#location-map .interactive {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .layout#location-map .interactive {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.layout#location-map .interactive .top .row {
  flex-direction: row;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .top .row {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .layout#location-map .interactive .top .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .top .row .box {
  width: 130px;
  margin-right: 2%;
  padding: 15px 10px;
  background-color: transparent;
  border: 2px solid #1c2b28;
  border-radius: 0;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.layout#location-map .interactive .top .row .box:hover, .layout#location-map .interactive .top .row .box.active {
  color: #fff !important;
  transition: all 0.5s ease;
}
.layout#location-map .interactive .top .row .box.interactive-1 {
  color: #92c292;
  border-color: #92c292;
}
.layout#location-map .interactive .top .row .box.interactive-1:focus, .layout#location-map .interactive .top .row .box.interactive-1:hover, .layout#location-map .interactive .top .row .box.interactive-1.active {
  background-color: #92c292;
}
.layout#location-map .interactive .top .row .box.interactive-2 {
  color: #f6b6c6;
  border-color: #f6b6c6;
}
.layout#location-map .interactive .top .row .box.interactive-2:focus, .layout#location-map .interactive .top .row .box.interactive-2:hover, .layout#location-map .interactive .top .row .box.interactive-2.active {
  background-color: #f6b6c6;
}
.layout#location-map .interactive .top .row .box.interactive-3 {
  color: #ffd44a;
  border-color: #ffd44a;
}
.layout#location-map .interactive .top .row .box.interactive-3:focus, .layout#location-map .interactive .top .row .box.interactive-3:hover, .layout#location-map .interactive .top .row .box.interactive-3.active {
  background-color: #ffd44a;
}
.layout#location-map .interactive .top .row .box.interactive-4 {
  color: #70b1b1;
  border-color: #70b1b1;
}
.layout#location-map .interactive .top .row .box.interactive-4:focus, .layout#location-map .interactive .top .row .box.interactive-4:hover, .layout#location-map .interactive .top .row .box.interactive-4.active {
  background-color: #70b1b1;
}
.layout#location-map .interactive .top .row .box.interactive-5 {
  color: #0093d1;
  border-color: #0093d1;
}
.layout#location-map .interactive .top .row .box.interactive-5:focus, .layout#location-map .interactive .top .row .box.interactive-5:hover, .layout#location-map .interactive .top .row .box.interactive-5.active {
  background-color: #0093d1;
}
.layout#location-map .interactive .top .row .box.interactive-6 {
  color: #255f9c;
  border-color: #255f9c;
}
.layout#location-map .interactive .top .row .box.interactive-6:focus, .layout#location-map .interactive .top .row .box.interactive-6:hover, .layout#location-map .interactive .top .row .box.interactive-6.active {
  background-color: #255f9c;
}
.layout#location-map .interactive .top .row .box.interactive-7 {
  color: #f7b197;
  border-color: #f7b197;
}
.layout#location-map .interactive .top .row .box.interactive-7:focus, .layout#location-map .interactive .top .row .box.interactive-7:hover, .layout#location-map .interactive .top .row .box.interactive-7.active {
  background-color: #f7b197;
}
.layout#location-map .interactive .top .row .box:last-child {
  margin-right: 0;
  /*background: repeating-linear-gradient(
    	135deg, $colour7, $colour7 1px, #ffffff 1px, #ffffff 8px
  );
  &:focus, &:hover, &.active {
  	background-color: $white; color: $colour7 !important;
  }*/
}
@media (max-width: 991px) {
  .layout#location-map .interactive .top .row .box {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 25px;
  }
  .layout#location-map .interactive .top .row .box:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .layout#location-map .interactive .top .row .box {
    width: 49%;
    margin-right: 2%;
  }
  .layout#location-map .interactive .top .row .box:nth-child(3n) {
    margin-right: 2%;
  }
  .layout#location-map .interactive .top .row .box:nth-child(2n) {
    margin-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .active {
  display: flex;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-1 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-1 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div h5 {
  width: 100%;
  background-color: #92c292;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #92c292;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-1 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-2 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-2 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div h5 {
  width: 100%;
  background-color: #f6b6c6;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #f6b6c6;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-2 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-3 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-3 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div h5 {
  width: 100%;
  background-color: #ffd44a;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #ffd44a;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-3 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-4 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-4 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div h5 {
  width: 100%;
  background-color: #70b1b1;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #70b1b1;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-4 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-5 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-5 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div h5 {
  width: 100%;
  background-color: #0093d1;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #0093d1;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-5 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-6 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-6 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div h5 {
  width: 100%;
  background-color: #255f9c;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #255f9c;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-6 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .left {
  transition: all 0.5s ease;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .left a {
  width: 100%;
}
@media (max-width: 991px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-7 .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .layout#location-map .interactive .bottom .tab-content .interactive-7 .right {
    padding-left: 0;
  }
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div {
  width: 100%;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div h5 {
  width: 100%;
  background-color: #f7b197;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div ul {
  padding: 0 0 50px;
  background-color: #fff;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div ul li {
  border-bottom: 2px solid #eee;
  list-style-type: none;
  padding: 15px;
  font-size: 12px;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div ul li table tr td .circle {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #f7b197;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div ul li table tr td:last-child {
  padding-left: 10px;
  color: #35644f;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex > div ul li:last-child {
  border-bottom: 0;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .d-flex a {
  width: 100%;
  text-align: center;
}
.layout#location-map .interactive .bottom .tab-content .interactive-7 .right .map-button {
  padding: 15px 40px !important;
  color: #35644f;
}

#aeruak-map-img {
  padding-bottom: 67%;
}

.has-slider .slick-dots {
  bottom: -25px;
}
.has-slider .slick-dots li {
  margin: 0 3px;
  width: 10px;
  height: 10px;
}
.has-slider .slick-dots li button {
  width: 10px;
  height: 10px;
}
.has-slider .slick-dots li button:before {
  font-size: 8px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #1c2b28;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.has-slider .slick-dots li.slick-active button:before {
  background-color: #1c2b28;
}
@media (max-width: 1199px) {
  .has-slider .slick-dots {
    left: 0px;
    transform: none;
  }
}
.has-slider .slick-arrow {
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 50%;
}
.has-slider .slick-arrow:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 40px;
  font-weight: 300;
}
.has-slider .slick-arrow.slick-prev {
  left: -40px;
}
.has-slider .slick-arrow.slick-prev:before {
  content: "";
  color: #132928;
  width: 40px;
  height: 40px;
  background-image: url("../img/left-arrow.png");
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.has-slider .slick-arrow.slick-next {
  right: -40px;
}
.has-slider .slick-arrow.slick-next:before {
  content: "";
  color: #132928;
  width: 40px;
  height: 40px;
  background-image: url("../img/right-arrow.png");
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .has-slider .slick-arrow {
    display: none;
  }
  .has-slider .slick-arrow.slick-prev {
    left: 25px;
  }
  .has-slider .slick-arrow.slick-prev:before {
    content: "\f053";
  }
  .has-slider .slick-arrow.slick-next {
    right: 25px;
  }
  .has-slider .slick-arrow.slick-next:before {
    content: "\f054";
  }
}
.has-slider#projects-slider .slick-prev, .mediaonly .has-slider.has-slider-warrows .slick-prev {
  left: -60px;
}
.has-slider#projects-slider .slick-next, .mediaonly .has-slider.has-slider-warrows .slick-next {
  right: -60px;
}
@media (max-width: 767px) {
  .has-slider#projects-slider .slick-arrow, .mediaonly .has-slider.has-slider-warrows .slick-arrow {
    display: none !important;
  }
  .has-slider#projects-slider .has-image, .mediaonly .has-slider.has-slider-warrows .has-image {
    min-height: 50vh;
  }
}

.townhome-image img {
  max-width: 100%;
  height: auto;
}
.townhome-image .wp-post-image {
  border-bottom: none;
}
.townhome-title {
  text-align: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
}
.townhome-subhead {
  text-align: center;
  color: #35644f;
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.townhome-text {
  color: white;
  margin: 0 auto;
  font-size: 1.1rem;
  max-width: 450px;
}
.townhome-info-container {
  background: #E4E8E4;
  padding: 20px;
}
.townhome-info-container hr {
  border: 1px solid #35644F;
}
.townhome-info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.townhome-lot-number {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #35644F;
  font-size: 16px;
  line-height: 26px;
}
.townhome-small-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
.townhome-price {
  color: #35644f;
  font-size: 1.8rem;
}
.townhome-builder {
  height: 46px;
  width: 50%;
  background-size: contain;
  background-position: top right;
}
.townhome-logo {
  width: 266px;
  height: 213px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  background-position: center;
  background-size: contain;
}
.townhome-banner img {
  width: 100%;
  margin: 0 auto;
}
.townhome_inclusions {
  display: flex;
  margin: 20px 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
}
.townhome_inclusions div {
  display: flex;
  margin-right: 16px;
}
.townhome_inclusions div p {
  margin: 0 8px 0 0;
  color: #35644F;
}
.townhome-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .townhome-content {
    display: block;
  }
}
.townhome-content-title {
  font-size: 1.3rem;
  font-weight: 500;
}
.townhome-content-subtitle {
  font-weight: 500;
}
.townhome-content-lhs {
  max-width: 310px;
  flex: 0 0 310px;
  padding-right: 40px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
  .townhome-content-lhs {
    width: 100%;
    padding: 0;
    display: block;
    max-width: 100%;
  }
}
.townhome-content-rhs {
  flex: 0 1 auto;
}
.townhome-content-rhs img {
  max-width: 100%;
}
.townhome-content-priceinc {
  display: flex;
  justify-content: space-between;
}
.townhome-content-price-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: -5px;
}
.townhome-content-amenities {
  display: flex;
  justify-content: space-evenly;
  height: 38px;
  margin-top: -18px;
}
.townhome-content-amenities div {
  margin-right: 5px;
}
.townhome-content-amenities div img {
  margin-right: 2px;
}
.townhome-content-amenities div:last-child {
  margin-right: 0;
}
.townhome-content-bed {
  width: 40px;
}
.townhome-content-bath {
  width: 40px;
}
.townhome-content-car {
  width: 40px;
}
.townhome-content-commence, .townhome-content-complete {
  font-size: 0.9rem;
  font-weight: 700;
}
.townhome-content-inclusions {
  color: #35644f;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.townhome-content-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .townhome-content-buttons {
    flex-direction: column;
  }
}
.townhome-content-enquire {
  padding: 5px;
  background-color: #f7b197;
  text-transform: capitalize;
  color: #ffffff;
  transition: background-color 500ms;
  text-transform: uppercase;
}
.townhome-content-enquire:hover {
  text-decoration: none !important;
  background-color: #1c2b28;
}
.townhome-content-floorplan, .townhome-content-brochure {
  padding: 5px 5px;
  border: none;
}
.townhome-content-inclusions-copy {
  line-height: 18px;
}
.townhome-image img {
  height: 200px;
  object-fit: cover;
}
.townhome-collection-banner {
  width: 100%;
  max-height: 360px;
}
.townhome-collection-banner img {
  width: 100%;
}
.townhome-collection-description {
  max-width: 532px;
  text-align: center;
  margin: 60px auto 0;
}
.townhome-collection-description p {
  margin-bottom: 10px;
}

.th_collection {
  background: #E4E8E4;
  color: #35644F;
  padding: 20px;
  margin: 0 15px 40px;
  width: 100%;
}
@media (min-width: 500px) {
  .th_collection {
    margin: 0 0 40px;
  }
}
.th_collection p {
  margin: 0;
}
.th_collection a {
  color: #35644F;
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  .th_collection a {
    margin-bottom: 0;
  }
}
.th_collection_banner {
  width: 100%;
}
.th_collection_banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 15px;
  max-inline-size: -webkit-fill-available;
  max-inline-size: -moz-available;
}
@media (min-width: 500px) {
  .th_collection_banner img {
    margin: 0;
    height: 360px;
  }
}
.th_collection_header {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
@media (min-width: 500px) {
  .th_collection_header {
    flex-direction: unset;
    justify-content: space-between;
  }
}
.th_collection_header img {
  width: auto;
  height: 48px;
}
.th_collection_header h2 {
  color: #35644F;
}
.th_collection_inclusions {
  display: flex;
  margin: 18px 0 27px;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
}
.th_collection_inclusions div {
  display: flex;
  margin-right: 16px;
}
.th_collection_inclusions div p {
  margin: 0 8px 0 0;
}
.th_collection_link {
  margin-top: 20px !important;
}

#carousel {
  overflow: hidden;
}
#carousel .banners {
  margin-bottom: 0;
}
#carousel .banners .has-image {
  position: relative;
  padding-bottom: 15%;
}
#carousel .banners .has-image .overlay {
  background-color: rgba(53, 100, 79, 0.4);
}
#carousel .banners .has-image .row {
  width: 100%;
  height: 100%;
}
#carousel .banners .has-image .row .col {
  position: relative;
  top: -150px;
}
#carousel .banners .has-image .row .col h1 {
  margin-bottom: 25px;
  font-size: 50px;
}

@media (max-width: 580px) {
  .carousel-townhome .slick-arrow {
    display: none;
  }
}
.carousel-townhome .banners .has-image {
  padding-bottom: 0 !important;
  height: 250px;
}
@media (min-width: 820px) {
  .carousel-townhome .banners .has-image {
    height: 350px;
  }
}
@media (min-width: 700px) {
  .carousel-townhome .banners .has-image {
    height: 450px;
  }
}
@media (min-width: 900px) {
  .carousel-townhome .banners .has-image {
    height: 550px;
  }
}
@media (min-width: 1100px) {
  .carousel-townhome .banners .has-image {
    height: 650px;
  }
}

.contact-table {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .contact-table {
    margin-left: 10%;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.contact-alt-colour {
  color: #3f5f50;
}

.page-about-botania .d-flex {
  display: block !important;
}
.page-about-botania .wp-block-button__link {
  background-color: white;
  color: #35644F !important;
  border-radius: 0;
  padding: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-top: 8px;
}
.page-about-botania .wp-block-button__link:hover {
  background-color: #35644F;
  color: white !important;
}
.page-about-botania section.mediaonly {
  padding-bottom: 0;
}
.page-about-botania section.mediaonly .square {
  height: 112px;
}
@media (min-width: 1024px) {
  .page-about-botania section.mediaonly .square {
    height: 360px;
  }
}
.page-about-botania section.mediaonly ~ section.mediaonly {
  padding-bottom: 80px;
}

.img_icontext_slider {
  margin-top: 60px;
}
.img_icontext_slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.img_icontext_slider .slide {
  display: block;
}
@media (min-width: 500px) {
  .img_icontext_slider .slide {
    display: flex;
  }
}
.img_icontext_slider .slide .slide-lhs {
  width: 100%;
  height: 320px;
  display: flex;
}
@media (min-width: 1024px) {
  .img_icontext_slider .slide .slide-lhs {
    height: 520px;
  }
}
.img_icontext_slider .slide .slide-rhs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px 88px;
}
@media (min-width: 1024px) {
  .img_icontext_slider .slide .slide-rhs {
    padding: 0 116px;
  }
}
.img_icontext_slider .slide .slide-rhs img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.img_icontext_slider .slide .slide-rhs p {
  max-width: 323px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: #35644F;
}
.img_icontext_slider .slick-dots {
  bottom: 46px;
  margin-left: -90px;
}
@media (min-width: 500px) {
  .img_icontext_slider .slick-dots {
    margin-left: 177px;
  }
}
.img_icontext_slider .slick-dots li {
  margin: 0 1px;
}
.img_icontext_slider .slick-dots li button:before,
.img_icontext_slider .slick-dots li button:focus,
.img_icontext_slider .slick-dots li button {
  font-size: 16px;
  color: #F1F3F1;
  opacity: 1;
}
.img_icontext_slider .slick-dots li.slick-active button:before {
  color: #35644F;
}

.slick-slide img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 500px) {
  .slick-slide img {
    width: auto;
  }
}

.difference {
  background-color: #f1f3f1;
}
.difference-banner {
  background-size: cover;
  background-position: center center;
}
.difference-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.difference-banner-button {
  color: black;
  background-color: white;
  margin: 25px 0 0;
  padding: 0.5rem 2rem;
}
@media (max-width: 767px) {
  .difference-banner-button {
    margin: 25px auto 0;
  }
}
.difference-banner-button:hover, .difference-banner-button:focus {
  text-decoration: none;
  background-color: #35644f;
  color: white;
}
.difference-banner-image {
  margin-top: 0;
  text-align: right;
}
@media (max-width: 767px) {
  .difference-banner-image {
    margin-top: 5rem;
    text-align: center;
  }
}
.difference-banner-image img {
  max-width: 425px;
}
.difference-builders {
  margin-bottom: 0;
  margin-top: 2.75rem;
}
.difference-builders-item {
  display: inline-block;
  width: 200px;
}
.difference-builders-item img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .difference-builders-item img {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@supports (display: grid) {
  .difference-builders {
    display: grid;
    grid-gap: 20px;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .difference-builders .difference-builders-item {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .difference-builders .difference-builders-item a {
    color: black;
    padding: 0.5rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  @media (max-width: 767px) {
    .difference-builders {
      display: block;
    }
  }
}
.difference-builders-logowrap {
  text-align: center;
  flex: 1 0 auto;
  padding: 15px;
  display: flex;
}
.difference-builders-logo {
  max-width: 70%;
  max-height: 100px;
}
.difference-features {
  background-color: #35644f;
}
.difference-features .row {
  justify-content: center;
}
.difference-features-item {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 228px;
}
@media (max-width: 767px) {
  .difference-features-item {
    max-width: 168px;
  }
}
.difference-features-heading {
  padding: 0 1rem;
  line-height: 1.1;
  color: white;
  font-size: 1.5rem;
}
.difference-features-icon {
  width: 200px;
  height: 150px;
  display: block;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .difference-features-icon {
    width: 150px;
    height: 75px;
  }
}
.difference-features-copy {
  text-align: center;
  font-family: "GTWalsheim";
}
.difference-features-copy small {
  max-width: 780px;
  line-height: 1.25;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.difference-content h2 {
  text-align: center;
  font-size: 2rem;
  color: black;
  margin-bottom: 30px;
}
.difference-content p {
  font-family: "GTWalsheim";
  line-height: 25px;
  font-size: 1.1rem;
}
.difference-testimonials-heading {
  text-align: center;
}
.difference-testimonials-image {
  position: relative;
}
.difference-testimonials-image img {
  height: auto;
  max-width: 100%;
}
.difference-testimonials-circle {
  width: 3rem;
  position: absolute;
  left: 50%;
  transform: translate(-1.5rem, -1.25rem);
}
.difference-testimonials-quote {
  margin-top: 2.75rem;
}
.difference-inclusions {
  text-align: center;
  font-family: "GTWalsheim", sans-serif;
}
.difference-inclusions .row {
  justify-content: center;
}
.difference-inclusions-headline {
  max-width: 600px;
  margin: 0 auto;
  color: white;
}
.difference-inclusions-item {
  margin-bottom: 1.5rem;
  max-width: 228px;
}
@media (max-width: 767px) {
  .difference-inclusions-item {
    max-width: 168px;
  }
}
.difference-inclusions-heading {
  line-height: 1.1;
  padding: 0 0.5rem;
  font-size: 1.5rem;
}
.difference-inclusions-icon {
  width: 200px;
  height: 150px;
  display: block;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .difference-inclusions-icon {
    width: 150px;
    height: 75px;
  }
}
.difference-inclusions-button {
  color: black;
  border: 1px solid currentColor;
  padding: 0.5rem 2rem;
  background-color: #fff;
}

.page-template-template-difference #discover > .arc.twos {
  display: none;
}

.ll-banner {
  padding-bottom: 0;
}
.ll-banner > div > img {
  width: calc(100% - 30px);
  max-width: 1110px;
  margin: 0 auto;
  display: block;
}
.ll-lot-wrapper {
  background-color: #f5f5f5;
  font-family: "PT Serif", serif;
  padding-bottom: 20px;
}
.ll-lot-wrapper hr {
  margin-left: 20px;
  margin-right: 20px;
  border-top: 1px solid #35644F;
}
.ll-lot-link {
  width: 100%;
}
.ll-lot-link:hover {
  text-decoration-color: #e56b69;
}
.ll-lot-image {
  background-size: cover;
  background-position: center center;
  padding-bottom: 58%;
}
.ll-lot-area {
  padding-left: 0;
}
.ll-lot-frontage {
  padding-right: 0;
}
.ll-lot-copy {
  padding-left: 20px;
  /*   	  padding-top: 5px;
    	  padding-bottom: 5px; */
  padding-right: 20px;
  font-family: "Poppins", sans-serif;
}
.ll-lot-sizes {
  display: flex;
  justify-content: space-between;
  color: #35644F;
  font-size: 18px;
  line-height: 26px;
}
.ll-lot-stage {
  font-size: 18px;
  line-height: 26px;
  color: #35644F;
  margin-top: 20px;
}
.ll-lot-name {
  color: #35644F;
  font-size: 28px;
  line-height: 34px;
  margin-top: 20px;
}
.ll-lot-button {
  margin-left: 20px;
  margin-right: 20px;
  background-color: #35644F;
}
.ll-lot-button-flyer {
  width: calc(100% - 40px);
}
.ll-lot-button-enquire {
  background-color: #35644F;
  cursor: pointer;
  width: calc(100% - 40px);
  margin-top: 20px;
}
.ll-lot-count {
  color: black;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.ll-lots-container {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
@media (min-width: 640px) {
  .ll-lots-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1180px) {
  .ll-lots-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ll-lots-wrapper {
  background-color: white;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: "GTWalsheim", sans-serif;
}
@media (min-width: 1140px) {
  .ll-lots-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.ll-nolots {
  text-align: center;
  font-size: 30px;
  padding: 20px;
  margin-top: 16px;
  color: #162c80;
}

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