@charset "UTF-8";
/* =============================================================================

Imports

================================================================================ */
/* Base imports */
.developer-area .floating-icon a {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  padding: 20px;
  background: black;
  border-radius: 100%;
  color: #FFF;
}

.developer-area .tabs ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.developer-area .tabs ul li a {
  color: #000;
  display: inline-block;
  background: #dbdbdb;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
}

.developer-area .tabs ul li a.active {
  background: #000;
  color: #FFF;
}

.developer-area .solidbutton {
  cursor: pointer;
}

.developer-area .solidbutton.selected {
  background-color: darkgreen !important;
  color: white;
}

/* =============================================================================

Site settings

================================================================================ */
:root {
  --columns: 12;
  --contentWidth: 1265px;
  --contentWidthExtended: 1460px;
  --contentPadding: 12px;
  --columnPadding: 12px;
  --darkgrey: #646363;
  --mediumgrey: #646363;
  --lightgrey: #f8f8f8;
  --yellow: #B88E00;
  --yellowHover: #856700;
  --red: #8D2D43;
  --darkred: #7a273a;
  --green: #7EA799;
  --greenHover: #629080;
  --darkgreen: #2b4571;
  --darkGreenHover: #1d2e4c;
  --alternateGreen: #8D2D43;
  --alternateGreenHover: #662131;
  --lightblue: #f7f7f7;
  --blue: #7EA799;
  --blueHover: #629080;
  --purple: #E3BABA;
  --purpleHover: #d49696;
  --amethyst: #5D576B;
}

/* =============================================================================

Mixins

================================================================================ */
/* =============================================================================

Layout

================================================================================ */
.content {
  padding: 0 12px;
  width: 1265px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1301px) {
  .content {
    width: 100%;
    padding: 0 24px;
  }
}
.content div[class^=col-] {
  float: left;
  padding: 12px;
}
@media (max-width: 600px) {
  .content div[class^=col-] {
    padding: 12px;
  }
}
.content .row {
  clear: both;
  overflow: hidden;
  margin-left: -get(columnPadding);
  margin-right: -get(columnPadding);
}

.col-1 {
  width: 8.3333333333%;
  float: left;
}
@media (max-width: 768px) {
  .col-1 {
    width: 100%;
  }
}

.col-2 {
  width: 16.6666666667%;
  float: left;
}
@media (max-width: 768px) {
  .col-2 {
    width: 100%;
  }
}

.col-3 {
  width: 25%;
  float: left;
}
@media (max-width: 768px) {
  .col-3 {
    width: 100%;
  }
}

.col-4 {
  width: 33.3333333333%;
  float: left;
}
@media (max-width: 768px) {
  .col-4 {
    width: 100%;
  }
}

.col-5 {
  width: 41.6666666667%;
  float: left;
}
@media (max-width: 768px) {
  .col-5 {
    width: 100%;
  }
}

.col-6 {
  width: 50%;
  float: left;
}
@media (max-width: 768px) {
  .col-6 {
    width: 100%;
  }
}

.col-7 {
  width: 58.3333333333%;
  float: left;
}
@media (max-width: 768px) {
  .col-7 {
    width: 100%;
  }
}

.col-8 {
  width: 66.6666666667%;
  float: left;
}
@media (max-width: 768px) {
  .col-8 {
    width: 100%;
  }
}

.col-9 {
  width: 75%;
  float: left;
}
@media (max-width: 768px) {
  .col-9 {
    width: 100%;
  }
}

.col-10 {
  width: 83.3333333333%;
  float: left;
}
@media (max-width: 768px) {
  .col-10 {
    width: 100%;
  }
}

.col-11 {
  width: 91.6666666667%;
  float: left;
}
@media (max-width: 768px) {
  .col-11 {
    width: 100%;
  }
}

.col-12 {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .col-12 {
    width: 100%;
  }
}

.content--extended {
  width: 1460px;
  margin: 0 auto;
  padding: 12px;
  padding-bottom: 0;
}
@media (max-width: 1460px) {
  .content--extended {
    width: 100%;
  }
}

.js-t-bg picture img {
  width: 100%;
  transform: none !important;
}

/* =============================================================================

Forms and inputs

================================================================================ */
.hero_search__distance, input {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  border: 0;
  font-size: 19px;
  outline: none;
}

.inputWrapper--bedrooms::before, .inputWrapper--price::before, .inputWrapper--range::before, .inputWrapper--gps::before {
  display: block;
  position: absolute;
  left: 40px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  z-index: 2;
}

.inputWrapper {
  position: relative;
}
.inputWrapper--gps::before {
  background: url(../../img/icons/gps.svg);
}
.inputWrapper--range::before {
  background: url(../../img/icons/radar.svg);
}
.inputWrapper--price::before {
  background: url(../../img/icons/price.svg);
}
.inputWrapper--bedrooms::before {
  background: url(../../img/icons/bed.svg);
}
.inputWrapper input {
  text-indent: 40px;
}

input {
  width: 100%;
}
input[type=search] {
  background: #f8f8f8;
  background: var(-- lightgrey);
  color: #646363;
  color: var(-- darkgrey);
}
input[type=submit] {
  background: #8D2D43;
  background: var(-- red);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
}
input[type=submit]:hover {
  background: #7a273a;
  background: var(-- darkred);
}

.wpcf7-form-control-wrap.enquiry,
.wpcf7-form-control-wrap.menu-979 {
  position: relative;
}
.wpcf7-form-control-wrap.enquiry:after,
.wpcf7-form-control-wrap.menu-979:after {
  display: block;
  content: url("data:image/svg+xml; utf8, <svg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 212.64 386.26'><polygon points='0 20.08 172.49 193.13 0 366.18 20.14 386.26 212.64 193.13 20.14 0 0 20.08'></polygon></svg>");
  position: absolute;
  right: 29px;
  top: 10px;
  width: 12px;
  height: 10px;
  pointer-events: none;
  transform: rotate(90deg);
}

.wpcf7-form-control-wrap.menu-979:after {
  top: 6px;
}

.modal {
  z-index: 998;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
}

.modal#exit-modal {
  position: fixed;
}

.modal .modalOverlay {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(179, 179, 179, 0.7);
  margin: 0 auto;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  cursor: pointer;
}

.modal .booking_form,
.modal .modalInner {
  position: absolute;
  top: 30px;
  transform: none;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  width: 670px;
  margin: auto;
  padding: 30px 30px 12px 30px;
}
@media (max-width: 728px) {
  .modal .booking_form,
  .modal .modalInner {
    width: calc(100% - 40px);
    overflow: auto;
    padding: 30px 30px 12px 30px;
  }
}
.modal .booking_form label,
.modal .modalInner label {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  display: block;
}
@media (max-width: 728px) {
  .modal .booking_form label,
  .modal .modalInner label {
    margin-top: 20px;
    font-size: 15px;
    margin-bottom: 0px;
  }
}
.modal .booking_form label span,
.modal .modalInner label span {
  color: #808080;
}
.modal .booking_form label.hs-error-msg,
.modal .modalInner label.hs-error-msg {
  color: red;
}
.modal .booking_form .col-6:nth-of-type(odd),
.modal .modalInner .col-6:nth-of-type(odd) {
  padding-right: 10px;
}
.modal .booking_form .col-6:nth-of-type(even),
.modal .modalInner .col-6:nth-of-type(even) {
  padding-left: 10px;
}
@media (max-width: 728px) {
  .modal .booking_form .col-6,
  .modal .modalInner .col-6 {
    padding: 0 !important;
  }
}
.modal .booking_form h2,
.modal .modalInner h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 0px;
  margin-top: 0;
}
@media (max-width: 728px) {
  .modal .booking_form h2,
  .modal .modalInner h2 {
    font-size: 24px;
  }
}
.modal .booking_form .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors,
.modal .modalInner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  display: none !important;
}
.modal .booking_form .js-modalClose,
.modal .modalInner .js-modalClose {
  position: absolute;
  right: 34px;
  top: 37px;
  opacity: 0.2;
  transition: all 0.3s;
  cursor: pointer;
}
.modal .booking_form .js-modalClose img,
.modal .modalInner .js-modalClose img {
  width: 20px;
}
.modal .booking_form .js-modalClose:hover,
.modal .modalInner .js-modalClose:hover {
  opacity: 1;
}
.modal .booking_form input,
.modal .modalInner input {
  width: 100%;
  padding: 26px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
  transition: all 0.2s;
  box-shadow: 0 0 0 !important;
  border-radius: 0;
}
@media (max-width: 728px) {
  .modal .booking_form input,
  .modal .modalInner input {
    padding: 12px;
    font-size: 18px;
  }
}
.modal .booking_form input[type=text]:focus, .modal .booking_form input[type=email]:focus, .modal .booking_form input[type=number]:focus,
.modal .modalInner input[type=text]:focus,
.modal .modalInner input[type=email]:focus,
.modal .modalInner input[type=number]:focus {
  border: 2px solid #000;
  border-color: #B88E00;
  border-color: var(--yellow);
}
.modal .booking_form p,
.modal .modalInner p {
  color: grey;
  margin-top: 9px;
}
.modal .booking_form .row,
.modal .modalInner .row {
  clear: both;
}
.modal .booking_form span.wpcf7-not-valid-tip,
.modal .modalInner span.wpcf7-not-valid-tip {
  color: #e63434;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  background-color: #fff;
}
.modal .booking_form hr,
.modal .modalInner hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: -5px 0 5px 0;
}
.modal .booking_form select,
.modal .modalInner select {
  color: #343f49;
  color: var(--darkgrey);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  width: 100%;
  padding: 26px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
  transition: all 0.2s;
  font-size: 19px;
  outline: 0;
  cursor: pointer;
  border: 2px solid #f8f8f8;
}
@media (max-width: 728px) {
  .modal .booking_form select,
  .modal .modalInner select {
    padding: 12px;
    font-size: 16px;
  }
}
@media (max-width: 728px) {
  .modal .booking_form select,
  .modal .modalInner select {
    padding: 12px;
    font-size: 18px;
  }
}
.modal .booking_form select:focus,
.modal .modalInner select:focus {
  border: 2px solid #000;
  border-color: #B88E00;
  border-color: var(--yellow);
}

#label-lp_larkfleet_life_pboro_station_i_am_interested_in-022fc5f4-3afd-4f33-844c-9f292e24e739 {
  margin-bottom: 20px;
}

.hs-form-checkbox-display {
  margin-top: 0px !important;
  margin: 5px 0;
}

.hs-form-checkbox {
  width: 50%;
  float: left;
  list-style: none;
}

.hs-form-booleancheckbox {
  list-style: none;
}

.modal .aw_book_it.booking_form {
  padding: 30px;
}
.modal .aw_book_it.booking_form p {
  margin-top: 0;
  margin-bottom: 0;
}
.modal .aw_book_it.booking_form a {
  color: #B88E00;
  color: var(--yellow);
}

#help-to-buy .modalInner {
  background: #2c6167;
}
#help-to-buy .modalInner p {
  margin: 0;
  color: #FFF;
}
#help-to-buy .modalInner h3 {
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
  font-size: 20px;
}
#help-to-buy .modalInner .date-block {
  text-align: center;
  margin-right: 10px;
}
#help-to-buy .modalInner .date-block .year {
  background: #459191;
  color: white;
}
#help-to-buy .modalInner .date-block .date-month {
  background: white;
}
#help-to-buy .modalInner .date-block .date-month p {
  color: #459191;
}
#help-to-buy .modalInner .date-block .date-month .date {
  font-size: 34px;
  padding-top: 10px;
}
#help-to-buy .modalInner .js-modalClose {
  opacity: 0.5;
}
#help-to-buy .modalInner .js-modalClose:hover {
  opacity: 1;
}
#help-to-buy .modalInner .btn-enquire {
  background: white;
  color: #2e626d;
  padding: 8px 24px;
  display: inline-block;
  margin: 20px 0;
}
#help-to-buy .modalInner img {
  max-width: 80%;
}
@media (max-width: 768px) {
  #help-to-buy .modalInner {
    position: relative;
  }
  #help-to-buy .modalInner > div {
    text-align: center;
  }
  #help-to-buy .modalInner .col-2,
  #help-to-buy .modalInner .col-8 {
    float: none;
  }
  #help-to-buy .modalInner .date-block {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  #help-to-buy .modalInner .date-block .month {
    padding: 0 10px;
  }
  #help-to-buy .modalInner img {
    max-width: 100px;
    margin-bottom: 20px;
  }
}
@media (max-width: 370px) {
  #help-to-buy .modalInner .date-block {
    position: inherit;
    margin: 0;
  }
}

.modalInner .js-modalClose img {
  position: relative;
  top: -20px;
  right: -20px;
}
.modalInner p {
  margin-bottom: 10px;
  font-weight: 300;
}
.modalInner .inner {
  margin-right: 5px;
}
.modalInner .inner label {
  color: grey;
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  display: inline-block;
}
.modalInner .inner input, .modalInner .inner select {
  padding: 10px;
  font-weight: 300;
  border: none;
  font-size: 14px;
  border-bottom: 3px solid #b88e00;
}
.modalInner .inner input[type=checkbox] {
  width: auto;
}
.modalInner .inner select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  padding: 9px;
}
.modalInner .title {
  color: grey;
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  display: inline-block;
}
.modalInner .developments .development input {
  width: auto;
}
.modalInner .developments .development label.title {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.modalInner .marketing p {
  padding: 20px 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: initial;
  text-align: center;
}
.modalInner .marketing input[type=checkbox] {
  width: auto;
}
.modalInner .marketing label {
  color: grey;
  width: auto;
  display: inline-block;
  font-weight: 300;
  margin: 0;
  font-size: 13px;
}
.modalInner input[type=submit] {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: none;
  background: #7a273a;
}
.modalInner .additional-info {
  padding-top: 8px;
}
.modalInner .additional-info .model-sub-title {
  font-size: 16px;
  color: white;
  background: #5D576B;
  padding: 8px;
  position: relative;
}
.modalInner .additional-info p {
  margin-bottom: 0;
  font-size: 14px;
}

#exit-modal .modalInner {
  width: 500px;
}
#exit-modal .modalInner .modal-content {
  display: flex;
  flex-direction: column;
}
#exit-modal .modalInner .modal-content .exit-message {
  line-height: 1.4;
  color: black;
  font-weight: 300;
  padding-bottom: 10px;
}
#exit-modal .modalInner .modal-content .exit-message.title {
  font-size: 40px;
  padding: 0;
  margin: 0;
}
#exit-modal .modalInner .modal-content button {
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  #exit-modal .modalInner {
    width: 90%;
  }
}

/* =============================================================================

Buttons

================================================================================ */
.solidbutton, .outlinebutton {
  padding: 30px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .solidbutton, .outlinebutton {
    width: 100%;
    font-size: 13px;
  }
}

.underlinebutton {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
@media (max-width: 768px) {
  .underlinebutton {
    font-size: 18px;
  }
}
.underlinebutton .underline {
  width: 100%;
  position: absolute;
  bottom: -3px;
  height: 3px;
  background: black;
}

.outlinebutton {
  position: relative;
  background: 0 0;
  border: 3px solid;
  border-radius: 2px;
  line-height: 26px;
  padding: 30px 80px 30px 30px;
  transition: all 0.3s;
}
.outlinebutton:hover {
  background: rgba(0, 0, 0, 0.0784313725);
}
.outlinebutton:hover svg {
  right: 20px;
}

.solidbutton--green {
  background: #7EA799;
  background: var(-- green);
}
.solidbutton--green:hover {
  background: #629080;
  background: var(-- greenHover);
}
.solidbutton--darkGreen {
  background: #8D2D43;
  background: var(-- alternateGreen);
}
.solidbutton--darkGreen:hover {
  background: #662131;
  background: var(-- alternateGreenHover);
}
.solidbutton--purple {
  background: #E3BABA;
  background: var(-- purple);
}
.solidbutton--purple:hover {
  background: #d49696;
  background: var(-- purpleHover);
}
.solidbutton--yellow {
  background: #B88E00;
  background: var(-- yellow);
}
.solidbutton--yellow:hover {
  background: #856700;
  background: var(-- yellowHover);
}
.solidbutton--blue {
  background: #7EA799;
  background: var(-- blue);
}
.solidbutton--blue:hover {
  background: #629080;
  background: var(-- blueHover);
}

.outlinebutton svg {
  fill: #fff;
  width: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  right: 24px;
}
.outlinebutton--img img {
  width: 24px;
  float: left;
  margin-right: 20px;
}

/* =============================================================================

Global Styles

================================================================================ */
* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

strong a {
  font-weight: 400;
}

body,
ul,
li,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a {
  color: #8D2D43;
}

p {
  font-size: 16px;
  line-height: 25px;
}

#no-js {
  position: fixed;
  bottom: 0;
  z-index: 99999;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: #c13838;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.lazy-load {
  background-image: none !important;
}

.entry {
  display: none;
}

.cc-revoke {
  display: none !important;
}

#content {
  padding-top: 100px;
}
@media (max-width: 600px) {
  #content {
    padding-top: 110px;
  }
}

.greybg {
  background: #f8f8f8;
  background: var(-- lightgrey);
}

.yellowbg {
  background: #B88E00;
  background: var(-- yellow);
}

.bluebg {
  background: #f7f7f7;
  background: var(-- lightblue);
}

.tab {
  display: inline-block;
  padding: 24px 80px 24px 30px;
  cursor: pointer;
  font-weight: 300;
  font-size: 22px;
  transition: all 0.2s;
  margin-right: 4px;
  color: #969a9e;
  position: relative;
}
@media (max-width: 600px) {
  .tab {
    font-size: 13px;
    padding: 11px 12px 14px 12px;
  }
  .tab img {
    display: none;
  }
}
.tab.active, .tab:hover {
  color: #646363;
  color: var(-- darkgrey);
  background: white;
  box-shadow: 0 10px #fff, 2px -2px #f4f4f5, -2px -2px #f4f4f5;
}
.tab.active img, .tab:hover img {
  opacity: 1;
  right: 26px;
}
.tab img {
  position: absolute;
  width: 12px;
  transition: all 0.2s;
  right: 33px;
  top: 50%;
  transform: translateY(calc(-50% + 2px));
  opacity: 0.3;
}
@media (max-width: 600px) {
  .tab img {
    width: 6px;
    right: 18px !important;
  }
}

input[type=submit],
input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

.error-404 {
  text-align: center;
  padding: 150px 40px;
}

#booking-form {
  padding: 30px !important;
}
@media (max-width: 600px) {
  #booking-form {
    width: 100%;
  }
}
#booking-form .js_modal_close img {
  float: right !important;
  width: 20px !important;
  cursor: pointer !important;
  position: relative;
  z-index: 1;
}
#booking-form label {
  font-weight: 300 !important;
}
#booking-form img {
  width: 10px;
}
#booking-form input,
#booking-form select,
#booking-form textarea {
  border: 2px solid #B88E00 !important;
  padding: 16px !important;
  color: #343f49 !important;
  color: var(--darkgrey) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
}
#booking-form input[type=submit] {
  border: none !important;
  background: #7a273a !important;
  color: white !important;
}
#booking-form select {
  padding: 14px !important;
  height: 57px !important;
}

.form-columns-2, .form-columns-1, .form-columns-0 {
  max-width: unset !important;
}

.trustpilot .content {
  padding-bottom: 75px;
  padding-top: 75px;
}

#notifications {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

#notifications .notification {
  padding: 10px;
  color: #FFF;
  text-align: center;
  margin: 0;
}

#notifications .notification.success {
  background: #B88E00;
}

#notifications .notification.error {
  background: #8D2D43;
}

#notifications .notification p {
  margin: 0;
  font-size: 20px;
}

.promo-img {
  max-width: 1240px;
  width: 90%;
  position: relative;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.page-id-81 .contentPage_inner p,
.page-id-83 .contentPage_inner p {
  font-size: 16px;
  line-height: 19px;
  color: #000;
}
.page-id-81 .contentPage_inner strong,
.page-id-83 .contentPage_inner strong {
  font-weight: bold;
}
.page-id-81 table,
.page-id-83 table {
  height: unset !important;
  width: 100%;
  color: black;
  border-collapse: collapse;
}
.page-id-81 table tr td,
.page-id-83 table tr td {
  padding: 10px 20px;
  border: 1px solid black;
  margin: 0;
}

.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .why-buy-new.allison_standard_template .hero-block {
    min-height: 50vh;
  }
  .why-buy-new.allison_standard_template .hero-block .page-title-block .page-title {
    font-size: 22px !important;
    font-weight: 400 !important;
  }
  .why-buy-new.allison_standard_template .mobile_image {
    display: block !important;
    height: 60vh;
    width: 100%;
    background-size: cover !important;
  }
  .why-buy-new.allison_standard_template .desktop {
    background: none !important;
  }
}

.logged-in.admin-bar .grecaptcha-badge {
  display: none !important;
}

/* Modules */
/* =============================================================================

Nav

================================================================================ */
/* =============================================================================

Header

================================================================================ */
html, body {
  font-family: "Lato", sans-serif;
}

.announcement {
  background: #646363;
  color: white;
  width: 100%;
  position: absolute;
  left: 0;
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
}

.cky-switch input[type=checkbox] {
  padding: 0;
}

@media only screen and (max-width: 600px) {
  .announcement {
    font-size: 12px;
  }
}
.colorheader {
  padding: 60px 0 310px 0;
  max-height: 440px;
}
@media (max-width: 1301px) {
  .colorheader {
    padding: 60px 0 300px 0;
  }
}
@media (max-width: 600px) {
  .colorheader {
    padding: 60px 0 380px 0;
  }
}
.colorheader--yellow {
  background: #B88E00;
  background: var(-- yellow);
}
.colorheader--blue {
  background: #7EA799;
  background: var(-- blue);
}
.colorheader--green {
  background: #8D2D43;
  background: var(-- alternateGreen);
}
.colorheader.noMaxHeight {
  max-height: none;
}
.colorheader.image {
  padding: 60px 0 0px 0;
  height: 250px;
}
@media (max-width: 768px) {
  .colorheader.image {
    height: 200px;
  }
}
.colorheader h1 {
  color: white;
  font-size: 50px;
  margin: 0;
}
@media (max-width: 600px) {
  .colorheader h1 {
    font-size: 34px;
  }
}
.colorheader p {
  color: white;
  font-size: 19px;
  margin: 10px 0 0;
}
.colorheader_inner__image {
  background-size: cover;
  margin: 0 auto;
  padding-top: 30%;
}

@media (max-width: 768px) {
  #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
  .admin-bar .header {
    top: 0;
  }
}
.header {
  position: fixed;
  width: 100%;
  z-index: 4;
  background: #fff;
  box-shadow: 0 0 14px rgba(52, 62, 73, 0.06);
}
.header .btn-top {
  color: #1d1d1b;
  padding: 10px;
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.header .btn-top:hover {
  color: #b88e00;
}
.header .contact-us {
  font-weight: 300;
  padding: 10px;
  background: #b88e00;
  color: white;
  transition: all 0.4s ease-in-out;
}
.header .contact-us:hover {
  background: #b88e00;
  color: white;
}
.header.sticky {
  box-shadow: 0 0 14px rgba(52, 62, 73, 0.06);
}
.header_top {
  padding: 13px 0;
  text-align: right;
  font-size: 15px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .header_top {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .header_top {
    display: none;
  }
}
.header_top ul {
  display: inline-block;
}
.header_top ul li {
  display: inline-block;
  margin-right: 6px;
  padding-right: 10px;
  line-height: 14px;
  border-right: 1px solid #fff;
}
.header_top ul li:last-child {
  border: none;
}
.header_top ul li a {
  color: white;
}
.header_top ul li a:hover {
  text-decoration: underline;
}
.header_top span {
  display: inline-block;
  margin-left: 7px;
}
.header_main {
  font-family: "Lato", sans-serif;
  padding: 45px 20px 18px 20px;
  position: relative;
  overflow: visible;
  height: 100px;
  z-index: 2;
  background: white;
}
@media (max-width: 600px) {
  .header_main {
    height: 108px;
  }
}
.header_main__left {
  position: relative;
}
@media (max-width: 768px) {
  .header_main__left {
    text-align: center;
  }
}
.header_main__left img.logo {
  width: 180px;
  position: relative;
  z-index: 3;
  top: -22px;
}
@media (max-width: 768px) {
  .header_main__left img.logo {
    width: 150px;
    top: -5px;
  }
}
.header_main__left .menuIcon {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 23px;
  width: 40px;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 768px) {
  .header_main__left .menuIcon {
    display: block;
  }
}
.header_main__left .menuIcon.open .menuIcon_part {
  background: white;
}
.header_main__left .menuIcon.open .menuIcon_part:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
}
.header_main__left .menuIcon.open .menuIcon_part:nth-of-type(2) {
  opacity: 0;
}
.header_main__left .menuIcon.open .menuIcon_part:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.header_main__left .menuIcon_part {
  background: #646363;
  background: var(-- darkgrey);
  position: absolute;
  left: 0;
  width: 39px;
  height: 3px;
  transition: all 0.3s;
}
.header_main__left .menuIcon_part:nth-of-type(1) {
  top: 0px;
}
.header_main__left .menuIcon_part:nth-of-type(2) {
  top: 10px;
}
.header_main__left .menuIcon_part:nth-of-type(3) {
  top: 20px;
}
.header_main__left .mobileSearch {
  display: none;
  position: absolute;
  right: 0;
  width: 33px;
  height: 33px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header_main__left .mobileSearch {
    display: block;
  }
}
.header_main__left .mobileSearch img {
  width: 33px;
}
.header_main__right {
  text-align: right;
}
.header_main__right .menu-item-has-children:after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 5px;
  transform: rotate(135deg);
  vertical-align: top;
  width: 0.45em;
  color: #bba420;
}
.header_main__right .sub-menu {
  position: absolute;
  display: none;
  padding-top: 10px;
}
.header_main__right .sub-menu li {
  text-align: left;
  display: block;
  width: 100%;
  padding: 15px 10px;
  background: white;
  margin-left: 0px;
}
.header_main__right .menu-item:hover .sub-menu {
  display: block;
}
.header_main__right .mobileMenu {
  background: #646363;
  background: var(-- darkgrey);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: left;
  z-index: 2;
  padding: 30px;
  padding-top: 130px;
  left: -100%;
  transition: all 0.3s;
  overflow: auto;
}
@media (max-width: 330px) {
  .header_main__right .mobileMenu {
    padding-top: 100px;
  }
}
.header_main__right .mobileMenu.open {
  left: 0%;
}
.header_main__right .mobileMenu ul {
  display: block !important;
}
.header_main__right .mobileMenu span {
  font-size: 30px;
  color: #B88E00;
}
@media (max-width: 500px) {
  .header_main__right .mobileMenu span {
    font-size: 26px;
  }
}
@media (max-width: 320px) {
  .header_main__right .mobileMenu span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .header_main__right ul {
    display: none;
  }
}
.header_main__right ul li {
  display: inline-block;
  margin: 0 22px;
  transition: all 0.2s;
}
@media (max-width: 1100px) {
  .header_main__right ul li {
    margin: 0 14px;
  }
}
@media (max-width: 768px) {
  .header_main__right ul li {
    display: block;
    margin: 0 0 16px 0;
  }
}
.header_main__right ul li.current_page_item a {
  color: #B88E00;
  color: var(-- yellow);
  color: #B88E00;
}
.header_main__right ul li.current_page_item a:after {
  width: 100%;
}
.header_main__right ul li a {
  color: #646363;
  color: var(-- darkgrey);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  transition: all 0.2s;
  position: relative;
}
@media (max-width: 768px) {
  .header_main__right ul li a {
    font-size: 30px;
    color: white;
  }
}
@media (max-width: 500px) {
  .header_main__right ul li a {
    font-size: 26px;
  }
}
@media (max-width: 320px) {
  .header_main__right ul li a {
    font-size: 22px;
  }
}
.header_main__right ul li a:after {
  background: #B88E00;
  background: var(-- yellow);
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -6px;
  content: "";
  transition: all 0.3s;
}
.header_main__right ul li a:hover {
  color: #B88E00;
  color: var(-- yellow);
}
.header_main__right ul li a:hover:after {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .header .tablet_mobile_only {
    display: none;
  }
}
.header .mobileSearchInput {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(0%);
  bottom: 0;
  display: none;
  transition: all 0.2s;
  z-index: 1;
}
.header .mobileSearchInput .inputWrapper--gps:before {
  left: 10px;
}
.header .mobileSearchInput.open {
  transform: translateY(95%);
  z-index: 2;
}
.header .mobileSearchInput input {
  padding: 20px;
  font-size: 10px;
}
@media (max-width: 768px) {
  .header .mobileSearchInput {
    display: block;
  }
}

/* =============================================================================

Footer

================================================================================ */
.larkfleet-tv .larkfleet-tv-img {
  width: 80%;
  margin-top: 20px;
}

.tile {
  background: white;
  padding: 40px 40px 70px 40px;
  margin-bottom: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 253px;
  transition: all 0.3s;
  position: relative;
}
.tile h2 {
  margin-top: 0;
}
.tile h2 a {
  color: #646363;
  color: var(-- darkgrey);
}
.tile a.blocklink {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tile:hover {
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.095);
}
.tile:hover .tile_chevron {
  right: 34px;
}
.tile .tile_icon {
  width: 20%;
  float: left;
  max-width: 90px;
}
.tile .tile_icon img {
  width: 100%;
  max-width: 60px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .tile .tile_icon img {
    width: 70%;
  }
}
.tile .tile_text {
  width: 80%;
  float: left;
  padding-right: 70px;
}
@media (max-width: 998px) {
  .tile .tile_text {
    padding-right: 30px;
  }
}
.tile .tile_text h4,
.tile .tile_text h2 {
  margin: 0;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 300;
}
@media (max-width: 1301px) {
  .tile .tile_text h4,
  .tile .tile_text h2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .tile .tile_text h4,
  .tile .tile_text h2 {
    font-size: 22px;
  }
}
.tile .tile_text p {
  font-size: 19px;
  line-height: 30px;
  margin-top: 8px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .tile .tile_text p {
    font-size: 16px;
  }
}
.tile .tile_text a.underlinebutton {
  position: absolute;
  bottom: 40px;
}
.tile .tile_chevron {
  position: absolute;
  transition: all 0.3s;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.tile .tile_chevron svg {
  width: 16px;
}
@media (max-width: 768px) {
  .tile .tile_chevron svg {
    width: 12px;
  }
}
@media (max-width: 768px) {
  .tile .tile_chevron {
    right: 28px;
  }
}

.prefooter {
  padding-top: 30px;
}
.prefooter_inner h2 {
  margin-bottom: 80px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .prefooter_inner h2 {
    margin-bottom: 49px;
    margin-top: 20px;
  }
}
.prefooter_inner__smalltiles {
  border-top: 1px solid #e8e8e8;
  margin-top: 75px;
  padding-top: 70px;
  margin-bottom: 75px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .prefooter_inner__smalltiles {
    margin-top: 12px;
    padding-top: 12px;
    margin-bottom: 12px;
  }
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(1) .smalltile_inner {
  background: #E3BABA;
  transition: all 0.2s;
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(1) .smalltile_inner:hover {
  background: #d49696;
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(2) .smalltile_inner {
  background: #7EA799;
  transition: all 0.2s;
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(2) .smalltile_inner:hover {
  background: #629080;
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(3) .smalltile_inner {
  background: #8d2d43;
  transition: all 0.2s;
}
.prefooter_inner__smalltiles .smalltile:nth-of-type(3) .smalltile_inner:hover {
  background: #662131;
}
.prefooter_inner__smalltiles .smalltile_inner {
  padding: 40px 40px;
  background: red;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
}
.prefooter_inner__smalltiles .smalltile_inner a {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
}
.prefooter_inner__smalltiles .smalltile_inner p {
  margin: 0;
  position: relative;
  top: 8px;
}
.prefooter_inner__smalltiles .smalltile_inner img {
  height: 40px;
  float: left;
  margin-right: 14px;
}
.prefooter_inner__smalltiles .smalltile_inner svg {
  fill: white;
  width: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

@media (max-width: 600px) {
  .footer_inner img.logo {
    display: block;
    margin: 0 auto;
  }
}

.footer {
  background: #646363;
  background: var(-- darkgrey);
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 5px solid #b88e00;
}
@media (max-width: 768px) {
  .footer {
    padding: 12px 0;
  }
}
.footer_inner {
  color: white;
  width: 100%;
  display: block;
  text-align: center;
}
.footer_inner .menu-footer-2022-container {
  display: flex;
  justify-content: center;
}
.footer_inner a {
  color: white;
}
.footer_inner a.yellow {
  color: #B88E00;
  color: var(-- yellow);
  text-decoration: underline;
}
.footer_inner a:hover {
  text-decoration: underline;
}
.footer_inner h5 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 0px;
}
.footer_inner .company-add-foot p {
  padding-top: 0;
  line-height: 25px;
}
.footer_inner .company-add-foot a {
  line-height: 25px;
}
@media (max-width: 768px) {
  .footer_inner ul {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 440px) {
  .footer_inner ul {
    -moz-columns: 1;
         columns: 1;
  }
}
.footer_inner ul li {
  margin-bottom: 8px;
  list-style-type: none;
}
.footer_inner .email {
  margin: 10px 0 52px 0;
  clear: both;
}
.footer_inner img.logo {
  width: 120px;
}
.footer_inner .trustpilot-widget {
  width: 125px;
  overflow: hidden;
  height: 50px;
  margin: 10px;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .footer_inner .trustpilot-widget {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .footer_inner .social {
    justify-content: center;
  }
}
.footer_inner .social a:hover {
  color: #b88e00;
}
.footer_inner .social a:hover svg {
  fill: #b88e00;
}
.footer_inner .social img {
  height: 24px;
  float: left;
  margin-right: 18px;
  transition: all 0.2s;
  color: #fff;
}
.footer_inner .copyright p {
  margin-top: 0px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 600px) {
  .footer_inner .copyright p {
    font-weight: 300;
    font-size: 12px;
  }
}
.footer_inner .small {
  font-size: 14px;
  font-weight: 300;
}
.footer_inner .small a {
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

.footerend {
  background: #14171b;
  color: white;
  font-size: 14px;
  padding: 24px 0;
}
.footerend p {
  margin: 0 0 6px 0;
}
.footerend .col-6:nth-of-type(2) {
  text-align: right;
}
@media (max-width: 768px) {
  .footerend .col-6:nth-of-type(2) {
    text-align: left;
  }
}
.footerend ul li {
  display: inline-block;
  border-right: 1px solid #fff;
  padding-right: 7px;
  margin-right: 3px;
  line-height: 10px;
  margin-top: 17px;
}
.footerend ul li:last-child {
  border: 0;
}
.footerend ul li a {
  color: white;
}
.footerend ul li a:hover {
  color: #B88E00;
  color: var(-- yellow);
}

@media (max-width: 600px) {
  .footer_inner .image-strip {
    display: flex;
  }
}
@media (max-width: 768px) {
  .footer_inner .image-strip {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer_inner .image-strip a img {
    padding: 10px !important;
  }
}

@media (max-width: 768px) {
  .footer_inner .mob-hide {
    display: none;
  }
}

/* =============================================================================

Home

================================================================================ */
.covid_top {
  font-family: "Lato", sans-serif;
  background: #8D2D43;
  padding: 8px;
  font-weight: 300;
  text-align: center;
  position: relative;
  top: 10px;
  z-index: 2;
  width: 100%;
}
.covid_top a {
  font-size: 15px;
  color: #fff;
}
@media (max-width: 600px) {
  .covid_top {
    right: 0;
    width: 100%;
  }
}

.hero_slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
@media (max-width: 1301px) {
  .hero_slider {
    height: 82vw;
    max-height: 80vh;
    background: #050606;
  }
}
.hero_slider .slider_wrapper {
  transition: all 2s cubic-bezier(0.51, -0.01, 0.04, 1);
}
.hero_slider__slide {
  height: 80vh;
  background-size: cover !important;
  background-position: 0 0;
  position: relative;
  float: left;
  width: 100vw;
}
.hero_slider__slide .mobile_image {
  display: none;
}
@media (max-width: 768px) {
  .hero_slider__slide .mobile_image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
}
@media (max-width: 1301px) {
  .hero_slider__slide {
    height: 82vw;
    max-height: 80vh;
  }
}
@media (max-width: 768px) {
  .hero_slider__slide {
    background-repeat: no-repeat !important;
    background-position: 0 120px !important;
    background-size: contain !important;
  }
}
.hero_slider__slide:after {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 220px;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
  content: "";
}
.hero_slider__slide .s_text {
  color: #fff;
  position: absolute;
  bottom: 113px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 25px;
  padding-left: 130px;
  padding-right: 80px;
  z-index: 1;
  pointer-events: none;
}
.hero_slider__slide .s_text h1 {
  margin: 0;
}
@media (max-width: 998px) {
  .hero_slider__slide .s_text {
    font-size: 14px;
    padding-left: 80px;
    bottom: 123px;
  }
}
@media (max-width: 768px) {
  .hero_slider__slide .s_text {
    font-size: 9px;
    padding: 0 70px;
    text-align: center;
    bottom: 50px;
    left: -15px;
  }
}
.hero_slider__controls {
  position: absolute;
  bottom: 114px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .hero_slider__controls {
    bottom: 40px;
  }
}
.hero_slider__controls .control img {
  width: 24px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
}
.hero_slider__controls .control img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero_slider__controls .control img {
    width: 18px;
  }
}
.hero_slider__controls .control--left {
  float: left;
}
.hero_slider__controls .control--right {
  float: right;
}
.hero_slider__controls .control--right img {
  transform: rotate(180deg);
}
.hero_search {
  transform: translateY(-65%);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
  padding: 0;
  overflow: visible;
  width: 1240px;
  height: 105px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .hero_search {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07);
    transform: translateY(0%);
    height: 273px;
  }
}
@media (max-width: 1301px) {
  .hero_search {
    width: calc(100% - 48px);
  }
}
@media (max-width: 768px) {
  .hero_search {
    background: #f8f8f7;
    padding: 24px;
    width: 100%;
  }
}
.hero_search__advanced {
  display: none;
  position: absolute;
  right: 0;
  bottom: -40px;
  font-weight: 300;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .hero_search__advanced {
    left: 0;
    right: 0;
    text-align: center;
    margin: 50px 0 0px 0;
    position: static;
    clear: both;
    float: left;
    width: 100%;
  }
}
.hero_search input[type=search] {
  background: white;
  border-right: 1px solid black;
  font-size: 16px;
  font-weight: 300;
  border-color: #f8f8f8;
  border-color: var(-- lightgrey);
}
.hero_search input[type=search]::-webkit-input-placeholder {
  color: #a6abaf;
}
.hero_search input[type=search]:-moz-placeholder {
  color: #a6abaf;
}
.hero_search input[type=search]::-moz-placeholder {
  color: #a6abaf;
}
.hero_search input[type=search]:-ms-input-placeholder {
  color: #a6abaf;
}
@media (max-width: 768px) {
  .hero_search input[type=search] {
    font-size: 16px;
    border: 0;
  }
}
.hero_search input[type=submit] {
  font-size: 16px;
  padding: 42px 10px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero_search input[type=submit] {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .hero_search input[type=submit] {
    font-size: 16px;
  }
}
.hero_search__location {
  width: 46%;
}
@media (max-width: 998px) {
  .hero_search__location {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .hero_search__location {
    width: 100%;
  }
}
.hero_search__location input {
  padding: 42px;
}
.hero_search__submit {
  width: 24%;
}
@media (max-width: 998px) {
  .hero_search__submit {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .hero_search__submit {
    width: 100%;
  }
}
.hero_search__distance {
  padding: 0;
  width: 30%;
  font-size: 16px;
  font-weight: 300;
  background: white;
  color: #a6abaf;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.hero_search__distance .form_row {
  padding: 42px;
}
.hero_search__distance svg {
  fill: #B88E00;
  transform: rotate(90deg);
  width: 15px;
  position: absolute;
  right: 47px;
  top: 41px;
  transition: all 0.1s;
}
.hero_search__distance svg.active {
  transform: rotate(-90deg);
}
.hero_search__distance .distance_dropdown {
  position: absolute;
  top: 105px;
  width: 100%;
  background: white;
  z-index: 1;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
  display: none;
}
.hero_search__distance .distance_dropdown__select {
  padding: 40px 40px;
  color: #646363;
  color: var(-- darkgrey);
}
.hero_search__distance .distance_dropdown__select:hover {
  background: #f8f8f8;
  background: var(-- lightgrey);
}
@media (max-width: 998px) {
  .hero_search__distance {
    display: none;
  }
}
.hero_search__distance:hover {
  background: #f8f8f8;
  background: var(-- lightgrey);
}
.hero_search__distance label {
  cursor: pointer;
}
.hero_search__distance span {
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
  color: #646363;
  color: var(-- darkgrey);
}

@media (max-width: 768px) {
  .homepage .homepage-intro.ptop {
    padding-top: 250px;
  }
}
.homepage .homepage-intro .content-block {
  padding: 140px 0;
}
.homepage .homepage-intro .content-block .title {
  font-size: 60px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .homepage .homepage-intro .content-block .title {
    font-size: 40px;
  }
}
.homepage .homepage-intro .content-block .content {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 768px) {
  .homepage .homepage-intro .content-block .content {
    font-size: 19px;
  }
}
.homepage .homepage-intro .bg-img {
  position: relative;
}
.homepage .homepage-intro .bg-img::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
}

.advancedSearch {
  display: none;
  clear: both;
  transform: translateY(-106px);
  display: none;
  margin-bottom: -1px;
}
.advancedSearch img {
  display: block;
}
.advancedSearch h2 {
  font-size: 34px;
  margin: 150px 0 60px 0;
  float: left;
}
@media (max-width: 768px) {
  .advancedSearch h2 {
    margin-bottom: 0;
  }
}

.featuredDevelopment_inner {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1301px) {
  .featuredDevelopment_inner {
    padding-bottom: 24px;
  }
}
.featuredDevelopment_inner h2 {
  font-weight: 300;
}
.featuredDevelopment_inner .col-6:nth-of-type(2) {
  background: #646363;
  background: var(-- darkgrey);
  padding: 40px;
}
@media (max-width: 768px) {
  .featuredDevelopment_inner .col-6:nth-of-type(2) {
    padding: 24px;
  }
}
.featuredDevelopment_inner .col-6:nth-of-type(2) p.yellow {
  font-size: 20px;
}
.featuredDevelopment_inner .col-6:nth-of-type(2) p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
.featuredDevelopment_inner .col-6:nth-of-type(2) p img {
  width: 20px;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 2px;
  margin-bottom: 20px;
}
.featuredDevelopment_inner .col-6:nth-of-type(2) .solidbutton {
  margin-top: 30px;
  padding: 30px 60px;
}
.featuredDevelopment_inner .col-6:nth-of-type(1) {
  position: absolute;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
@media (max-width: 768px) {
  .featuredDevelopment_inner .col-6:nth-of-type(1) {
    position: static;
    padding-top: 70%;
  }
}
.featuredDevelopment_inner__development {
  overflow: hidden;
  color: #fff;
  position: relative;
}
.featuredDevelopment_inner__development h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 300;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .featuredDevelopment_inner__development h3 {
    padding-bottom: 40px;
  }
}

/* =============================================================================

Search Results

================================================================================ */
.load-more-btn {
  width: 100%;
  text-align: center;
  padding: 30px;
  display: block;
  background: #f8f8f8;
  border: 2px solid #f1f1f1;
  font-weight: 300;
  color: #343f49;
  margin: 80px 0;
  clear: both;
}
@media (max-width: 768px) {
  .load-more-btn {
    margin: 20px 0;
  }
}

.calendar-env .calendar-body .fc-header {
  border-bottom: 0px solid #ebebeb !important;
}

.calendar-env .calendar-body .fc-content .fc-view table tbody tr td.fc-day,
.calendar-env .calendar-body .fc-content .fc-view table thead tr th {
  border-bottom: 3px solid #ffffff !important;
  border-right: 3px solid white !important;
}

.calendar-env .calendar-body .fc-content .fc-view table tbody tr td.fc-day.fc-today .fc-day-number {
  color: #fff;
  background-color: #B88E00 !important;
}

.calendar-env .calendar-body .fc-header .fc-header-left,
.calendar-env .calendar-body .fc-header .fc-header-right {
  padding: 20px 0px !important;
}

.searchResults .searchResults_tabs {
  padding-top: 100px;
  margin-top: 0;
}
.searchResults.notSearched .searchResults_map {
  background: #B88E00;
  background: var(-- yellow);
  padding: 60px 0 115px 0;
}
@media (max-width: 1301px) {
  .searchResults.notSearched .searchResults_map {
    padding: 120px 0 115px 0;
  }
}
@media (max-width: 600px) {
  .searchResults.notSearched .searchResults_map {
    padding: 60px 0 64px 0;
  }
}
.searchResults.notSearched .searchResults_map h1 {
  color: #fff;
  font-size: 50px;
  margin: 0;
}
@media (max-width: 600px) {
  .searchResults.notSearched .searchResults_map h1 {
    color: #fff;
    font-size: 34px;
    margin: 0;
    margin-top: 9px;
  }
}
.searchResults_map img {
  width: 100%;
  display: block;
}
.searchResults_tabs {
  transform: translateY(-105px);
  padding-top: 100px;
}
.searchResults_tabs__inner {
  overflow: visible;
}
.searchResults_header {
  margin-top: -40px;
}
@media (max-width: 768px) {
  .searchResults_header {
    margin-top: -60px;
  }
}
.searchResults_header h3 {
  font-size: 40px;
  margin: 0;
  padding-top: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .searchResults_header h3 {
    font-size: 23px;
  }
}
.searchResults_header p {
  margin: 4px 0 0 0;
  font-size: 21px;
  color: #a6abaf;
}
@media (max-width: 768px) {
  .searchResults_header p {
    font-size: 16px;
  }
}
.searchResults_results {
  display: none;
}
.searchResults_results.active {
  display: block;
  margin-bottom: 50px;
}
.searchResults_results p a {
  color: #B88E00;
  color: var(-- yellow);
}
.searchResults_results p strong {
  color: #171717;
}
.searchResults .development {
  clear: both;
  overflow: hidden;
  margin: 60px 0;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 44px;
}
@media (max-width: 600px) {
  .searchResults .development {
    margin: 24px 0;
    padding-bottom: 13px;
  }
}
.searchResults .development:last-child {
  border: 0;
}
.searchResults .development--property:last-child {
  border: 0;
}
.searchResults .development--property .development_right .col-7 {
  padding: 0;
}
.searchResults .development--property .development_right .col-5 {
  border-left: 1px solid #f8f8f7;
  padding-left: 40px;
  padding-top: 20px;
  margin-bottom: 32px;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .searchResults .development--property .development_right .col-5 {
    border-left: 0px solid #fff;
    border-top: 1px solid #f8f8f7;
    padding: 30px 0;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.searchResults .development--property .development_right .col-5 img {
  width: 24px;
  float: left;
  position: relative;
  top: 2px;
  margin-right: 8px;
}
.searchResults .development--property .development_right .col-5 p {
  margin: 0;
}
.searchResults .development--property .development_right .col-5 .plotNumber {
  color: #969a9e;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.searchResults .development--property .development_right .col-5 .price {
  color: #8D2D43;
  color: var(-- alternateGreen);
  font-weight: 500;
  font-size: 21px;
}
.searchResults .development--property .development_right .col-5 .price .price-from {
  font-size: 16px;
}
.searchResults .development--property .development_right__actions .col-6 {
  padding: 12px !important;
}
.searchResults .development_right {
  padding-left: 50px;
}
@media (max-width: 768px) {
  .searchResults .development_right {
    padding: 23px 0 0;
  }
}
.searchResults .development_right h2 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
}
.searchResults .development_right__distance {
  color: #969a9e;
}
.searchResults .development_right__distance img {
  float: left;
  margin-right: 8px;
  position: relative;
  top: 2px;
  width: 14px;
}
.searchResults .development_right__location {
  padding-top: 6px;
}
.searchResults .development_right__location img {
  width: 12px;
  margin-right: 8px;
  float: left;
  position: relative;
  top: 1px;
}
@media (max-width: 600px) {
  .searchResults .development_right__location img {
    margin-bottom: 4px;
  }
}
.searchResults .development_right__location p {
  margin: 0;
  font-size: 17px;
}
.searchResults .development_right hr {
  background: 0 0;
  border: 0;
  clear: both;
  border-top: 1px solid #000;
  border-color: #f3f3f2;
  margin: 20px 0 20px 0;
}
@media (max-width: 600px) {
  .searchResults .development_right hr {
    margin: 22px 0 14px 0;
  }
}
.searchResults .development_right hr + p {
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 500;
  margin-bottom: 30px;
}
.searchResults .development_right__icons {
  font-weight: 500;
  padding: 16px 30px;
  margin-bottom: 20px;
  clear: both;
}
.searchResults .development_right__icons + p {
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .searchResults .development_right__icons {
    padding: 0;
    background: transparent;
  }
}
.searchResults .development_right__icons p {
  margin: 0;
  font-size: 20px;
}
.searchResults .development_right__icons img {
  float: left;
}
.searchResults .development_right__icons .col-2 p {
  color: #646363;
  color: var(-- darkgrey);
}
@media (max-width: 768px) {
  .searchResults .development_right__icons .col-2 {
    width: 33.33% !important;
  }
}
@media (max-width: 1179px) {
  .searchResults .development_right__icons .col-6,
  .searchResults .development_right__icons .col-2 {
    width: 100%;
  }
}
.searchResults .development_right__icons .col-6 img,
.searchResults .development_right__icons .col-2 img {
  float: left;
  width: 24px;
  margin-right: 14px;
}
.searchResults .development_right__icons .col-6:nth-of-type(2),
.searchResults .development_right__icons .col-2:nth-of-type(2) {
  color: #8D2D43;
  color: var(-- alternateGreen);
}
.searchResults .development_right__actions .col-6:nth-of-type(2) {
  text-align: left;
  padding: 25px 60px;
  font-size: 26px;
  line-height: inherit;
}
@media (max-width: 768px) {
  .searchResults .development_right__actions .col-6:nth-of-type(2) {
    display: none;
  }
}
.searchResults .development_right__actions .solidbutton {
  width: 100%;
}
.searchResults .development_right__actions .number {
  color: #646363;
  color: var(-- darkgrey);
  text-align: center;
  font-weight: 300;
  font-size: 20px;
}
.searchResults .development_right__actions .number img {
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.searchResults .development_left {
  overflow: hidden;
  position: relative;
  padding-top: 33%;
  min-height: 360px;
}
@media (max-width: 768px) {
  .searchResults .development_left {
    padding-top: 63%;
    min-height: 300px;
    max-height: 400px;
  }
}
.searchResults .development_left .image {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.searchResults .development_left .image a {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.searchResults .development_left .developmentOffer, .searchResults .development_left .plotCount {
  background: #B88E00;
  background: var(-- yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  padding: 10px;
}
.searchResults .development_left .developmentOffer.summer {
  color: #5D576B;
}
.searchResults .development_left .developmentOffer.october_one {
  color: #e5cfb4;
}
.searchResults .development_left .developmentOffer.october_two {
  color: #8D2D43;
}
.searchResults .development_left .developmentOffer.own-new-rate-reducer {
  background: #34444f;
}
.searchResults .development_left .developmentOffer.own-new-rate-reducer p {
  margin: 0;
}
.searchResults .development_left .developmentOffer.own-new-rate-reducer strong {
  color: white;
}
.searchResults .development_left .plotCount {
  background: #f8f8f8;
  bottom: 0;
  top: auto;
  color: #000;
  text-align: left;
  padding: 18px;
  font-size: 16px;
  font-weight: 300;
}

.no-developments {
  margin-bottom: 76px !important;
}

.advancedSearchForm.form {
  clear: both;
  padding: 14px;
}
.advancedSearchForm.form div[class*=col-] {
  padding: 0;
}
.advancedSearchForm.form .submit {
  margin-top: 84px;
}
@media (max-width: 600px) {
  .advancedSearchForm.form .submit {
    margin-top: 24px;
  }
}
.advancedSearchForm.form .submit input {
  color: white;
}
.advancedSearchForm.form label {
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 18px;
  display: block;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .advancedSearchForm.form label {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
  }
}
.advancedSearchForm.form input {
  color: #343e49;
}
.advancedSearchForm.form input.border {
  border-right: 1px solid #f7f7f7;
}

@media (max-width: 768px) {
  .search .searchResults_tabs {
    padding-top: 210px;
  }
}

.pac-container a.link {
  cursor: default;
  padding: 0 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 11px;
  color: #515151;
  display: block;
  font-weight: bold;
}
.pac-container a.link:nth-child(1) {
  border-top: none;
}
.pac-container a.link svg {
  width: 15px;
  margin-right: 5px;
  padding-top: 8px;
}
.pac-container a.link svg path {
  fill: #b3b3b3;
}

.pac-container a.link:hover {
  background-color: #fafafa;
}

/* =============================================================================

Home

================================================================================ */
.overlap {
  margin-top: -221px;
  padding-bottom: 80px;
}

.news.overlap {
  margin-top: -160px;
  padding-bottom: 0px;
}
.news_filters {
  margin-top: 30px;
}
.news_filters .filter-1 {
  display: none;
}
.news_filters ul li {
  display: inline-block;
}
@media (max-width: 768px) {
  .news_filters ul li {
    margin-bottom: 13px;
  }
}
.news_filters ul li a {
  font-weight: 300;
  color: #fff;
  margin: 0 30px 0 0;
  font-size: 18px;
  opacity: 0.5;
  transition: all 0.2s;
  height: 30px;
  display: block;
  position: relative;
}
.news_filters ul li a:hover {
  opacity: 1;
}
.news_filters ul li a:hover::after {
  width: 100%;
}
.news_filters ul li a::after {
  background: white;
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: 2px;
  content: "";
  transition: all 0.3s;
}
.news_item {
  padding-bottom: 0px !important;
  margin-bottom: 40px;
  position: relative;
  min-height: 652px;
}
@media (max-width: 768px) {
  .news_item {
    margin-bottom: 30px;
  }
}
.news_item p {
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 300;
  margin-bottom: 30px;
}
.news_item__image {
  padding-top: 80%;
  background-position: center center;
  background-size: cover;
  transition: all 0.5s;
  position: relative;
}
.news_item__image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news_item a {
  color: #646363;
  color: var(-- darkgrey);
  font-weight: 300;
}
.news_item .date {
  color: #B88E00;
  color: var(-- yellow);
  font-weight: 300;
  font-size: 15px;
}
.news_item .date img {
  float: left;
  width: 16px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.news_item a.underlinebutton {
  color: #B88E00;
  color: var(-- yellow);
  position: absolute;
  bottom: 10px;
}
.news_item a.underlinebutton .underline {
  background: #B88E00;
  background: var(-- yellow);
}

.post {
  transform: translateY(-150px);
  margin-bottom: -150px;
}
.post h2 {
  font-size: 50px;
  width: 80%;
  font-weight: 300;
}
@media (max-width: 768px) {
  .post h2 {
    font-size: 30px;
  }
}
.post p {
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 300;
  margin-bottom: 30px;
}
.post strong,
.post b {
  font-weight: 300;
  color: #545151;
}
.post a {
  color: #B88E00;
  color: var(-- yellow);
  text-decoration: underline;
}
.post_inner {
  padding: 20px 140px 100px 140px;
}
.post_inner ul {
  padding-left: 20px;
  background: #f9fdff;
  background: var(--lightblue);
  padding: 60px 90px;
}
@media (max-width: 768px) {
  .post_inner ul {
    padding: 20px 48px;
  }
}
.post_inner ul li {
  font-size: 16px;
  line-height: 26px;
  margin-top: 4px;
  color: #343e49;
  margin-bottom: 12px;
  list-style-type: disc;
}
@media (max-width: 1301px) {
  .post_inner {
    padding: 24px 0 0 0;
  }
}
.post_inner h2 {
  font-size: 24px;
  font-weight: 300;
}
.post_inner h1 {
  font-weight: 300;
}

/* =============================================================================

Buying Options

================================================================================ */
@media (max-width: 998px) {
  .buyingOptions_item {
    width: 100%;
  }
}

/* =============================================================================

Development page

================================================================================ */
.mobile_tabs {
  position: fixed;
  bottom: 0;
  color: white;
  width: 100%;
  z-index: 4;
  display: none;
}
@media (max-width: 768px) {
  .mobile_tabs {
    display: block;
  }
}
.mobile_tabs .tabM {
  background: #646363;
  background: var(-- darkgrey);
  cursor: pointer;
  padding: 20px 0px 20px 0px;
  text-align: center;
  width: 33.333% !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-right: 0px;
  color: white;
  box-shadow: -1px 0 rgba(255, 255, 255, 0.06) inset;
}
.mobile_tabs .tabM:nth-of-type(4) {
  background: #8D2D43;
  background: var(-- red);
}
.mobile_tabs .contact_block {
  background: white;
  padding: 24px;
  position: absolute;
  transition: all 0.3s;
  bottom: -250px;
  z-index: -1;
  width: 100% !important;
  text-align: left;
}
.mobile_tabs .contact_block.open {
  bottom: 55px;
  box-shadow: 0px -4px 3px rgba(0, 0, 0, 0.2);
}
.mobile_tabs .contact_block .link {
  color: white;
  padding: 20px;
  background: #B88E00;
  text-align: center;
}
.mobile_tabs .contact_block div {
  display: block;
  color: #fff;
  font-weight: 300;
  padding: 0px;
  margin-bottom: 10px;
  word-break: break-all;
  margin-bottom: 10px;
  line-height: 18px;
}
.mobile_tabs .contact_block div a {
  color: white;
}
.mobile_tabs .contact_block div .solidbutton {
  padding: 20px;
}
.mobile_tabs .contact_block div img {
  margin-right: 12px;
  position: relative;
  width: 21px;
  float: left;
  top: -1px;
  left: 45px;
  margin-bottom: 10px;
}
.mobile_tabs .contact_block div.info-txt {
  color: #000;
  text-align: center;
  word-break: break-word;
}
.mobile_tabs .contact_block img {
  height: 20px;
}

.development_specification {
  width: 100%;
}

.development_homes .development_sitemap {
  margin-top: 50px;
}
.development_homes .development_sitemap h2 {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
  border: none;
}

.searchResults_tabs {
  padding: 0;
}
.searchResults_tabs h1 {
  padding: 30px 0;
}

.development.coming-soon .mobile_tabs .col-4 {
  display: none;
}
.development.coming-soon .mobile_tabs .col-4:last-child {
  display: block;
  width: 100% !important;
}

.development .development_header .readmore-txt {
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
}
.development .development_header__image {
  min-height: 400px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .development .development_header__image {
    min-height: unset;
  }
}
.development .development_header__image iframe,
.development .development_header__image .video-embed {
  width: 100%;
  min-height: 400px;
  position: relative;
  z-index: 1;
}
.development .development_header .plot_header__slider {
  display: block;
}
@media (max-width: 600px) {
  .development .development_header .share {
    text-align: center;
    border: 2px solid var(--yellow);
    padding: 10px;
  }
}

.development_homes h2,
.plot_homes h2 {
  font-size: 36px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .development_homes h2,
  .plot_homes h2 {
    font-size: 26px;
    margin: 12px 0;
    padding-top: 26px;
  }
}
.development_homes .no-results,
.plot_homes .no-results {
  padding-bottom: 50px;
}
.development .gallery-slider .slides,
.plot .gallery-slider .slides {
  display: none;
}
.development .gallery-slider .slides.slick-initialized,
.plot .gallery-slider .slides.slick-initialized {
  display: block;
}
.development .gallery-slider iframe,
.plot .gallery-slider iframe {
  width: 100%;
  height: 250px;
}
.development .gallery-slider .video img,
.plot .gallery-slider .video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  -o-object-fit: fill;
     object-fit: fill;
}
.development .gallery-slider .video:before,
.plot .gallery-slider .video:before {
  content: "▶";
  opacity: 0.5;
  z-index: 100;
  font-size: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #b88e00;
  border-radius: 50px;
  border: 5px solid #b88e00;
  padding: 5px 20px;
  z-index: 1;
}
.development .gallery-slider .video.active:before,
.plot .gallery-slider .video.active:before {
  display: none;
}
.development .gallery-slider .slide,
.plot .gallery-slider .slide {
  position: relative;
}
.development .gallery-placeholder img,
.development .gallery-slider img,
.plot .gallery-placeholder img,
.plot .gallery-slider img {
  width: 100%;
  height: 250px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.development .gallery-slider .slick-next::before,
.development .gallery-slider .slick-prev::before,
.plot .gallery-slider .slick-next::before,
.plot .gallery-slider .slick-prev::before {
  font-size: 35px;
}
.development .gallery-slider .slick-next,
.plot .gallery-slider .slick-next {
  right: 20px;
  font-size: 0px;
}
.development .gallery-slider .slick-prev,
.plot .gallery-slider .slick-prev {
  left: 5px;
  font-size: 0px;
  z-index: 1;
}
.development .gallery-slider .slick-dots,
.plot .gallery-slider .slick-dots {
  bottom: -10px;
}
.development .gallery-slider .slick-dots li,
.plot .gallery-slider .slick-dots li {
  width: 10px;
  height: 10px;
}
.development .gallery-slider .slick-dots li.slick-active button:before,
.plot .gallery-slider .slick-dots li.slick-active button:before {
  color: #8d2d43;
}
@media (max-width: 768px) {
  .development_sitemap .drag,
  .plot_sitemap .drag {
    display: none;
  }
}
.development_sitemap .mobile,
.plot_sitemap .mobile {
  display: none;
}
@media (max-width: 768px) {
  .development_sitemap .mobile,
  .plot_sitemap .mobile {
    display: block;
  }
}
.development_sitemap h2,
.plot_sitemap h2 {
  font-size: 36px;
  margin-bottom: 60px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .development_sitemap h2,
  .plot_sitemap h2 {
    font-size: 26px;
    margin: 12px 0;
  }
}
.development_sitemap img,
.plot_sitemap img {
  width: 100%;
}
.development_sitemap .sitemapWrapper,
.plot_sitemap .sitemapWrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #ded1d1;
}
.development_sitemap .sitemapWrapper .zoomIcons,
.plot_sitemap .sitemapWrapper .zoomIcons {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
}
.development_sitemap .sitemapWrapper .zoomIcons img,
.plot_sitemap .sitemapWrapper .zoomIcons img {
  width: 30px;
  float: left;
  clear: both;
  cursor: pointer;
}
.development_sitemap .sitemapWrapper_inner,
.plot_sitemap .sitemapWrapper_inner {
  position: relative;
  cursor: hand;
  cursor: grab;
  cursor: -webkit-grab;
  top: 0;
  background-position: 50% 50% !important;
  background-size: 100% !important;
}
.development_banner,
.plot_banner {
  padding: 20px 0;
  margin-bottom: 0px;
  color: white;
}
.development_banner .content,
.plot_banner .content {
  position: relative;
}
@media (max-width: 768px) {
  .development_banner,
  .plot_banner {
    padding: 14px 0 20px 0;
  }
}
@media (max-width: 600px) {
  .development_banner,
  .plot_banner {
    margin-bottom: -6px;
  }
}
.development_banner__text,
.plot_banner__text {
  padding-right: 60px;
}
@media (max-width: 768px) {
  .development_banner__text,
  .plot_banner__text {
    padding-right: 0px;
  }
}
.development_banner__text h3,
.plot_banner__text h3 {
  font-size: 34px;
  margin: 10px 0 0 0;
  font-weight: 500;
}
@media (max-width: 600px) {
  .development_banner__text h3,
  .plot_banner__text h3 {
    line-height: 32px;
    font-size: 24px;
  }
}
.development_banner__text p,
.plot_banner__text p {
  font-size: 16px;
  margin: 2px 0 28px 0;
  margin-bottom: 6px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .development_banner__text p,
  .plot_banner__text p {
    margin: 2px 0 8px 0;
  }
}
.development_banner__cta,
.plot_banner__cta {
  text-align: right;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 1301px) {
  .development_banner__cta,
  .plot_banner__cta {
    right: 24px;
  }
}
@media (max-width: 768px) {
  .development_banner__cta,
  .plot_banner__cta {
    position: static;
    margin-top: 50px;
    margin-bottom: -12px;
  }
}
.development_banner__cta a,
.plot_banner__cta a {
  color: #B88E00;
  background: white;
  width: 100%;
  padding: 30px 0;
  text-transform: capitalize;
}
.development_header,
.plot_header {
  margin-top: 20px;
}
.development_header .buttons a,
.plot_header .buttons a {
  width: 100%;
}
.development_header .buttons a img,
.plot_header .buttons a img {
  width: 16px;
  position: relative;
  left: -6px;
}
@media (max-width: 768px) {
  .development_header,
  .plot_header {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
.development_header__image,
.plot_header__image {
  background-size: cover !important;
  background-position: center center !important;
  margin-top: 21px;
}
.development_header__image img,
.plot_header__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .development_header__image,
  .plot_header__image {
    padding-top: 66% !important;
  }
}
.development_header__details,
.plot_header__details {
  margin: 10px 0 0;
}
.development_header__details p,
.plot_header__details p {
  margin: 4px 0;
  font-weight: 400;
}
.development_header__details a,
.plot_header__details a {
  color: #343f49;
  color: var(--darkgrey);
  text-align: center;
  font-weight: 300;
  line-height: 25px;
}
.development_header__details img,
.plot_header__details img {
  float: left;
  width: 16px;
  margin-right: 6px;
  position: relative;
  top: 5px;
}
.development_header__details .bedroom_count,
.development_header__details .price_range,
.plot_header__details .bedroom_count,
.plot_header__details .price_range {
  font-size: 15px;
  line-height: 25px;
}
.development_header__details .price_range p,
.plot_header__details .price_range p {
  font-weight: bold;
}
.development_header__details + a,
.plot_header__details + a {
  padding: 30px 50px;
}
.development_header .my-10,
.plot_header .my-10 {
  margin: 10px 0;
}
.development_header .contact-area h3,
.plot_header .contact-area h3 {
  margin: 0;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 600px) {
  .development_header .contact-area h3,
  .plot_header .contact-area h3 {
    font-size: 18px;
  }
}
.development_header .contact-area .opening_times,
.plot_header .contact-area .opening_times {
  margin-top: 10px;
}
.development_header .contact-area .number a,
.plot_header .contact-area .number a {
  font-weight: 400;
}
@media (max-width: 600px) {
  .development_header .contact-area .number,
  .plot_header .contact-area .number {
    text-align: center;
    border: 2px solid var(--yellow);
    padding: 10px;
  }
  .development_header .contact-area .number img,
  .plot_header .contact-area .number img {
    float: none;
    top: 3px;
  }
}
@media (max-width: 600px) {
  .development_header .contact-area .col-6,
  .plot_header .contact-area .col-6 {
    padding: 0;
  }
}
.development_header .contact-area .my-10,
.plot_header .contact-area .my-10 {
  margin: 10px 0;
}
.development_header__info,
.plot_header__info {
  padding-left: 40px !important;
}
.development_header__info p,
.plot_header__info p {
  margin: 0;
  margin-bottom: 4px;
}
.development_header__info .price_range p,
.plot_header__info .price_range p {
  color: var(--alternateGreen);
}
@media (max-width: 768px) {
  .development_header__info,
  .plot_header__info {
    padding: 0 !important;
  }
}
.development_header__info h2,
.plot_header__info h2 {
  font-size: 30px;
  margin: 0 0 6px 0;
  font-weight: 500;
}
@media (max-width: 600px) {
  .development_header__info h2,
  .plot_header__info h2 {
    font-size: 30px;
    margin-top: 14px;
    margin-bottom: 20px;
  }
}
.development_header__info .solidbutton,
.plot_header__info .solidbutton {
  padding: 15px 30px;
  color: white;
  width: 100%;
}
.development_header__info .divider,
.plot_header__info .divider {
  background: #e8e8e8;
  height: 1px;
}
.development_header__info .development_right__location p,
.plot_header__info .development_right__location p {
  margin: 0;
  font-size: 17px;
}
.development_header__info .development_right__location img,
.plot_header__info .development_right__location img {
  width: 12px;
  margin-right: 7px;
  float: left;
  position: relative;
  top: 1px;
}
@media (max-width: 600px) {
  .development_header__info .development_right__location img,
  .plot_header__info .development_right__location img {
    margin-bottom: 4px;
  }
}
.development_header__info .development_right__location + p,
.plot_header__info .development_right__location + p {
  font-size: 15px;
  line-height: 23px;
  color: #968e8e;
  font-weight: 300;
  margin-bottom: 25px;
  margin-top: 25px;
}
.development .searchResults_tabs,
.plot .searchResults_tabs {
  transform: none;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .development .searchResults_tabs,
  .plot .searchResults_tabs {
    padding-top: 20px;
  }
}
.development .searchResults_tabs h2,
.plot .searchResults_tabs h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  border: none;
  padding: 0;
  font-weight: 300;
}
@media (max-width: 768px) {
  .development .searchResults_tabs h2,
  .plot .searchResults_tabs h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.development .searchResults_results,
.plot .searchResults_results {
  padding: 20px 12px 70px 12px;
}
.development .searchResults_results h3,
.plot .searchResults_results h3 {
  font-weight: 300;
}
.development .searchResults_results h2,
.plot .searchResults_results h2 {
  font-weight: 300;
}
@media (max-width: 768px) {
  .development .searchResults_results,
  .plot .searchResults_results {
    padding: 24px 24px;
  }
}
.development .searchResults_results p,
.plot .searchResults_results p {
  font-size: 16px;
  line-height: 28px;
  margin-top: 8px;
  color: #797979;
  margin-bottom: 20px;
}
.development .searchResults_results p:last-child,
.plot .searchResults_results p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .development .searchResults_results .map,
  .plot .searchResults_results .map {
    padding: 0;
    margin-bottom: 24px;
  }
}
.development .searchResults_results .map + div,
.plot .searchResults_results .map + div {
  padding-top: 0;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .development .searchResults_results .map + div,
  .plot .searchResults_results .map + div {
    padding-left: 0;
  }
}
.development .searchResults_results a.solidbutton,
.plot .searchResults_results a.solidbutton {
  padding: 30px 50px;
}
.development_nearby, .development_sitemap,
.plot_nearby,
.plot_sitemap {
  padding: 50px 0 24px 0;
}
.development_nearby h2, .development_sitemap h2,
.plot_nearby h2,
.plot_sitemap h2 {
  font-weight: 300;
}
@media (max-width: 768px) {
  .development_nearby, .development_sitemap,
  .plot_nearby,
  .plot_sitemap {
    padding: 24px 0px;
  }
}
.development_nearby h2,
.plot_nearby h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 768px) {
  .development_nearby h2,
  .plot_nearby h2 {
    font-size: 26px;
    margin: 12px 0;
  }
}
.development_nearby__section,
.plot_nearby__section {
  clear: both;
  overflow: hidden;
  border-bottom: 2px solid #f3f3ff;
}
.development_nearby__section:last-child,
.plot_nearby__section:last-child {
  border: 0;
}
.development_nearby__section h3,
.plot_nearby__section h3 {
  font-size: 20px;
  margin: 48px 0 50px 0;
}
.development_nearby__section .amenity,
.plot_nearby__section .amenity {
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 998px) {
  .development_nearby__section .amenity,
  .plot_nearby__section .amenity {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .development_nearby__section .amenity,
  .plot_nearby__section .amenity {
    width: 100%;
  }
}
.development_nearby__section .amenity div,
.plot_nearby__section .amenity div {
  float: left;
}
.development_nearby__section .amenity_left,
.plot_nearby__section .amenity_left {
  width: 10%;
}
.development_nearby__section .amenity_left img,
.plot_nearby__section .amenity_left img {
  width: 100%;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.development_nearby__section .amenity_right,
.plot_nearby__section .amenity_right {
  width: 90%;
  padding-left: 14px;
  padding-right: 20px;
}
.development_nearby__section .amenity_right h4,
.development_nearby__section .amenity_right p,
.plot_nearby__section .amenity_right h4,
.plot_nearby__section .amenity_right p {
  margin: 0;
}
.development_nearby__section .amenity_right h4,
.plot_nearby__section .amenity_right h4 {
  text-transform: capitalize;
  font-size: 20px;
}
.development_nearby__section .amenity_right p,
.plot_nearby__section .amenity_right p {
  font-size: 15px;
  color: #6d757c;
  margin-top: 3px;
}

.development_banner.summer_campaign,
.plot_banner.summer_campaign {
  color: #5D576B;
}

.development_banner.october_campaign_one,
.plot_banner.october_campaign_one {
  color: #e5cfb4;
}

.development_banner.october_campaign_two,
.plot_banner.october_campaign_two {
  color: #8D2D43;
}

.own-new-rate-reducer {
  background: #34444f;
}
.own-new-rate-reducer .development_banner__text p {
  font-size: 28px;
  line-height: 1.4;
}
.own-new-rate-reducer strong {
  font-weight: bold;
}
.own-new-rate-reducer img {
  max-width: 180px;
}

body.logged-in .dev_buttons {
  top: 90px;
}

body.logged-in .dev_buttons.pinned {
  top: 132px;
}

@media (max-width: 768px) {
  body.logged-in .dev_buttons.pinned {
    top: 100px;
  }
}
.dev_buttons {
  position: sticky;
  transition: top 0.5s;
  z-index: 3;
  top: 100px;
  visibility: hidden;
  height: 1px;
}
@media (max-width: 768px) {
  .dev_buttons {
    top: 100px;
  }
}
.dev_buttons a {
  width: 100%;
  padding: 30px 30px;
  position: relative;
}
.dev_buttons a img {
  width: 16px;
  position: relative;
  left: -6px;
}
.dev_buttons a svg {
  fill: white;
  position: absolute;
  right: 30px;
  top: 50%;
  height: 18px;
  transform: translateY(-50%);
}

.dev_buttons.pinned {
  width: 100%;
  padding: 0;
  margin: 0;
  visibility: visible;
  height: auto;
}
.dev_buttons.pinned .solidbutton {
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 12px;
  transition: none;
}
@media (max-width: 600px) {
  .dev_buttons.pinned .solidbutton {
    min-height: 54px;
  }
}
@media (max-width: 600px) {
  .dev_buttons.pinned a {
    font-size: 12px;
    top: 5px;
  }
}

.buttons.dev_buttons.content.pinned div[class^=col-] {
  padding: 0;
}
@media (max-width: 768px) {
  .buttons.dev_buttons.content.pinned div[class^=col-6] {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .buttons.dev_buttons.content.pinned div[class^=col-4] {
    width: 33.333333%;
  }
}

.sitemapKey {
  padding-left: 40px !important;
}
@media (max-width: 768px) {
  .sitemapKey {
    padding-left: 0px !important;
  }
}
.sitemapKey ul {
  margin-top: -12px;
}
@media (max-width: 768px) {
  .sitemapKey ul {
    margin-top: 24px;
  }
}
.sitemapKey li {
  font-weight: 300;
  display: block;
  clear: both;
  margin: 30px 0;
  font-size: 20px;
  line-height: 21px;
}
.sitemapKey li:first-child {
  margin-top: 0;
}
.sitemapKey li span {
  width: 20px;
  display: block;
  height: 20px;
  float: left;
  margin-right: 12px;
}

.plots .offer {
  position: relative;
}
.plots .offer .plotOffer {
  background: #B88E00;
  background: var(-- yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 6px 0px;
}
@media (max-width: 768px) {
  .plots .offer .plotOffer {
    font-size: 12px;
  }
}
.plots .offer .plotOffer.summer {
  color: #5D576B;
  font-weight: 400;
}
.plots .offer .plotOffer.october_one {
  color: #e5cfb4;
  font-weight: 400;
}
.plots .offer .plotOffer.october_two {
  color: #8D2D43;
  font-weight: 400;
}
.plots .offer .summer-campaign {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px;
}
.plots .offer .summer-campaign.blue h3 {
  background: #325083;
}
.plots .offer .summer-campaign.blue .center-summer-text span {
  color: #e3baba;
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign.blue .center-summer-text span {
    font-size: 25px;
    font-weight: 400;
  }
}
.plots .offer .summer-campaign.blue h3.span {
  color: #e3baba;
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign.blue h3.span {
    font-size: 25px;
    font-weight: 400;
  }
}
.plots .offer .summer-campaign.teal h3 {
  background: #629080;
}
.plots .offer .summer-campaign.teal .center-summer-text span {
  color: #FFEDA8;
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign.teal .center-summer-text span {
    font-size: 25px;
    font-weight: 400;
  }
}
.plots .offer .summer-campaign.teal h3.span {
  color: #FFEDA8;
}
.plots .offer .summer-campaign .development_banner__text {
  padding: 0;
  margin: 0;
  width: 100%;
}
.plots .offer .summer-campaign .development_banner_center_text {
  position: absolute;
}
.plots .offer .summer-campaign .development_banner_center_text .center-summer-text {
  padding-top: 35%;
}
.plots .offer .summer-campaign h3 {
  font-size: 18px;
  padding: 10px 0;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 768px) {
  .plots .offer .summer-campaign h3 {
    font-size: 26px;
    font-weight: 400;
  }
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign h3 {
    font-size: 12px;
    font-weight: 400;
    padding: 0;
  }
}
.plots .offer .summer-campaign h3.span {
  color: #FFEDA8;
  font-weight: 400;
}
@media (max-width: 768px) {
  .plots .offer .summer-campaign h3.span {
    font-size: 26px;
    font-weight: 400;
  }
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign h3.span {
    font-size: 26px;
    font-weight: 400;
  }
}
.plots .offer .summer-campaign .center-summer-text {
  position: absolute;
  left: 50%;
  top: 300%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 1px 2px 2px black;
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign .center-summer-text {
    font-size: 26px;
    font-weight: 400;
  }
}
.plots .offer .summer-campaign .center-summer-text span {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .plots .offer .summer-campaign .center-summer-text span {
    font-size: 26px;
    font-weight: 400;
  }
}
.plots:hover .plots_image {
  background-size: auto 105% !important;
}
.plots_image {
  padding-top: 80%;
  background-position: center center !important;
  background-size: auto 100% !important;
  transition: all 0.5s;
  position: relative;
}
.plots_image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.plots_information__top {
  overflow: hidden;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
  padding-bottom: 2px;
}
.plots_information__top .col-9 {
  width: 75% !important;
}
.plots_information__top .p_number {
  font-size: 18px;
  color: #bfbfbf;
  position: relative;
  top: 4px;
}
.plots_information__top .p_number span {
  border-right: 1px solid #e8e8e8;
  display: inline-block;
  padding-right: 17px;
}
.plots_information__top .p_number img {
  width: 27px;
  padding-right: 4px;
}
@media (max-width: 768px) {
  .plots_information__top .p_number .col-3 {
    width: unset;
  }
  .plots_information__top .p_number .col-6 {
    width: unset;
  }
}
.plots_information__top .p_icons {
  color: #343f49;
  font-size: 18px;
  font-weight: 300;
  line-height: 42px;
}
@media (max-width: 600px) {
  .plots_information__top .p_icons {
    width: 66.6666666667% !important;
  }
}
.plots_information__top .p_icons img {
  float: left;
  height: 24px;
  position: relative;
  top: 10px;
  margin-right: 14px;
}
.plots_information__top .p_icons .col-4 {
  width: 90px;
  float: right;
}
.plots_information__bottom h3 {
  font-size: 26px;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 600px) {
  .plots_information__bottom h3 {
    font-size: 24px;
  }
}
.plots_information__bottom .p_price img {
  float: left;
  width: 45px;
  margin-right: 4px;
  position: relative;
  top: 9px;
}
@media (max-width: 600px) {
  .plots_information__bottom .p_price {
    margin: 18px 0px;
  }
}
.plots_information__bottom p {
  margin: 0;
  font-size: 20px;
  margin-top: 2px;
  color: #bfbfbf;
}
.plots_information__bottom h4 {
  font-size: 30px;
  margin: 10px 0;
  font-weight: 400;
  color: #8D2D43;
  color: var(-- alternateGreen);
}
.plots_information__bottom a {
  color: #7EA799;
  color: var(-- green);
  font-weight: 300;
  margin-bottom: 40px;
  font-size: 18px;
  position: relative;
  display: block;
  padding-bottom: 10px;
  padding-top: 5px;
  float: left;
}
@media (max-width: 600px) {
  .plots_information__bottom a {
    margin-bottom: 0px;
  }
}
.plots_information__bottom a:after {
  background: #7EA799;
  background: var(-- green);
  display: block;
  position: absolute;
  bottom: 5px;
  width: 100%;
  content: "";
  height: 3px;
}

.amenities {
  padding-top: 12px !important;
}

.development_nearby__section {
  border: 1px solid #ded1d1 !important;
  overflow-y: auto;
  height: 500px;
  padding: 15px;
}
.development_nearby__section h2 {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.development_nearby__section p {
  font-size: 14px !important;
  line-height: unset !important;
  margin: 0;
  padding: 0;
  margin-bottom: 8px !important;
}
.development_nearby__section .amenity {
  padding: 0 12px;
  padding-bottom: 5px !important;
  margin-bottom: 0px !important;
}
.development_nearby__section .amenity_right {
  font-size: 14px;
}
.development_nearby__section .amenity_right h4 {
  font-size: 14px !important;
  text-transform: capitalize !important;
}
.development_nearby__section .amenity_right p {
  font-size: 12px !important;
  margin: 0 !important;
  padding: 0;
}
.development_nearby__section .amenity_right .distance {
  font-size: 12px !important;
  margin: 0;
  padding: 0;
}

.email a {
  font-weight: 300;
  font-size: 15px;
}
@media (max-width: 600px) {
  .email a {
    font-size: 10px;
  }
}

.opening_times {
  font-weight: 300;
  font-size: 15px;
}
@media (max-width: 600px) {
  .opening_times {
    font-size: 12px;
  }
}

.hero_search {
  position: relative;
}

.hero_search .map_legend {
  position: absolute;
  top: -90px; /* If map_legend grows/shrinks this will need adjusting accordingly */
  left: 0;
  font-size: 10px;
  width: 20%;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  color: white;
}
.hero_search .map_legend p {
  font-size: 12px;
  line-height: initial;
  font-weight: 300;
}

.hero_search .map_legend p {
  font-size: 14px;
  line-height: inherit;
  padding: 0;
  margin: 4px;
  font-weight: 300;
}

.comingsoon_key:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7ea799;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.soldout_key:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #dba9a9;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.opennow_key:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #585365;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

@media only screen and (max-width: 767px) {
  .hero_search .map_legend {
    top: -90px;
    left: 5px;
    width: 60%;
  }
  .hero_search .map_legend p {
    font-size: 10px;
    line-height: normal;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero_search .map_legend {
    top: -85px;
    left: 5px;
    width: 60%;
  }
}
@media (max-width: 600px) {
  .gm-style-iw-d img {
    display: none;
  }
  .gm-style-iw-d span {
    font-weight: 300;
    margin: 0 !important;
  }
}

.plot_header__slider .p_slides .p_slides__slide.video::before {
  color: #b88e00;
  border-radius: 50px;
  border: 5px solid #b88e00;
  padding: 5px 20px;
  z-index: 1;
}

@media (max-width: 768px) {
  .col-6.mobile {
    padding: 0 !important;
  }
}

.price-from {
  display: none;
}

.featuredPlot-price .price-from {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  top: 0;
}

.hotw-tag {
  padding-top: 10px;
  padding-right: 13px;
  width: 20%;
  font-size: 20px;
  text-align: center;
  right: 0;
  top: 0;
  position: absolute;
  color: white;
  z-index: 1;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hotw-tag {
    font-size: 16px;
    width: 10%;
  }
}
@media (max-width: 600px) {
  .hotw-tag {
    font-size: 16px;
    width: 23%;
  }
}
.hotw-tag::before {
  content: "";
  position: absolute;
  background: #8d2d43;
  width: 480px;
  height: 270px;
  z-index: -1;
  transform: rotate(36deg);
  top: -130px;
  right: -270px;
}
@media (max-width: 768px) {
  .hotw-tag::before {
    width: 450px;
    height: 280px;
  }
}

#development_offer_countdown_clock h3.countdown-text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-top: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  #development_offer_countdown_clock .row {
    display: flex;
    max-width: 300px;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
  }
  #development_offer_countdown_clock .row .col-1 {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #development_offer_countdown_clock .row .col-1 .separator {
    position: relative;
    top: 25%;
  }
}
#development_offer_countdown_clock .block {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 768px) {
  #development_offer_countdown_clock .block {
    font-size: 10px;
    font-weight: 300;
  }
}
#development_offer_countdown_clock .days-time,
#development_offer_countdown_clock .hours-time,
#development_offer_countdown_clock .minutes-time,
#development_offer_countdown_clock .seconds-time,
#development_offer_countdown_clock .separator {
  font-size: 40px;
}
@media (max-width: 600px) {
  #development_offer_countdown_clock .days-time,
  #development_offer_countdown_clock .hours-time,
  #development_offer_countdown_clock .minutes-time,
  #development_offer_countdown_clock .seconds-time,
  #development_offer_countdown_clock .separator {
    display: block;
    font-size: 20px;
  }
}

.whatthreewords {
  font-size: 16px;
  font-weight: 400;
}
.whatthreewords a {
  font-weight: 500;
  color: black;
  text-decoration: underline;
  position: relative;
  top: -1px;
}
.whatthreewords img {
  width: 16px;
  top: 9px;
}

.hotw-block {
  margin-top: 50px;
  margin-bottom: 50px;
}
.hotw-block .d-hide h2 {
  display: none;
}
@media (max-width: 768px) {
  .hotw-block .d-hide h2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0;
    background: #b88e00;
    text-transform: uppercase;
    font-size: 16px;
  }
}
.hotw-block .featuredDevelopment_inner {
  padding-bottom: 0;
}
.hotw-block .hotw-content {
  position: relative;
  background-color: #5D576B !important;
}
.hotw-block .hotw-content h2 {
  margin: 0;
  padding: 0;
  position: absolute;
  font-weight: bold;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #b88e00;
  text-transform: uppercase;
  font-size: 20px;
}
@media (max-width: 768px) {
  .hotw-block .hotw-content h2 {
    display: none;
  }
}
.hotw-block .hotw-content h4 {
  font-weight: bold;
  font-size: 32px;
  margin: 5px 0;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .hotw-block .hotw-content h4 {
    padding-top: 0px;
    font-size: 24px;
  }
}
.hotw-block .hotw-content h3 {
  padding: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hotw-block .hotw-content h3 {
    font-size: 24px;
  }
}
.hotw-block .hotw-content p {
  padding: 0;
  margin: 10px 0;
}
.hotw-block .hotw-content p.price {
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 768px) {
  .hotw-block .hotw-content p.price {
    font-size: 24px;
  }
}
.hotw-block .hotw-content a {
  margin-top: 20px !important;
  padding: 20px 50px !important;
  background: white;
  color: #5D576B !important;
}
.hotw-block .hotw-content .freetext ul {
  padding-left: 17px;
}
.hotw-block .hotw-content .hotw-type {
  text-transform: lowercase;
  margin-top: 0;
}
@media (max-width: 768px) {
  .hotw-block .image {
    position: relative !important;
  }
}
.hotw-block .image .hotw-overlay {
  position: absolute;
  bottom: -44px;
  left: 25%;
  transform: rotate(345deg);
  width: 100%;
}
@media (max-width: 768px) {
  .hotw-block .image .hotw-overlay {
    bottom: -15%;
    left: 30%;
    transform: rotate(350deg);
  }
}

.appointment-banner .appointment-banner-inner {
  width: 50%;
  padding: 50px;
  margin-top: 20px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  color: #5d576b;
}
@media (max-width: 998px) {
  .appointment-banner .appointment-banner-inner {
    width: 85%;
    padding: 10px;
    font-size: 14px;
  }
}
.appointment-banner .appointment-banner-inner img {
  float: left;
  margin: 30px;
  width: 50px;
}
@media (max-width: 998px) {
  .appointment-banner .appointment-banner-inner img {
    margin: 0 auto;
    display: block;
    float: none;
    margin-bottom: 20px;
  }
}

/* =============================================================================

Property Pathways - Modal

================================================================================ */
@media only screen and (max-width: 768px) {
  #budget-form .modalInner {
    width: 90% !important;
    padding: 10px;
    margin: 0px auto;
  }
  #budget-form .modalInner .js-modalClose img {
    position: relative;
    top: -30px;
    right: -20px;
  }
}
/* =============================================================================

Plot page

================================================================================ */
.plot_floorplan {
  width: 100%;
}
.plot_header .image_slider {
  min-height: 561px;
}
@media (max-width: 768px) {
  .plot_header .image_slider {
    min-height: unset !important;
  }
}
@media (max-width: 768px) {
  .plot_header .image_slider.col-6 {
    padding: 0 !important;
  }
}
.plot_header .icon {
  float: left;
  width: 16px;
  margin-right: 6px;
  position: relative;
  top: 3px;
}
.plot_header .opening_times img {
  float: left;
  width: 16px;
  margin-right: 6px;
  position: relative;
  top: 5px;
}
.plot_header__image {
  min-height: 400px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .plot_header__image {
    min-height: unset;
  }
}
.plot_header__image iframe,
.plot_header__image .video-embed {
  width: 100%;
  min-height: 400px;
  position: relative;
  z-index: 1;
}
.plot_header__info {
  padding-bottom: 0 !important;
}
@media (max-width: 768px) {
  .plot_header__info {
    padding: 12px !important;
  }
}
.plot_header__slider {
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}
.plot_header__slider .p_controls {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  transform: translateY(-18px);
}
.plot_header__slider .p_controls img {
  width: 20px;
}
.plot_header__slider .p_controls__left {
  float: left;
  margin-left: 20px;
  cursor: pointer;
}
.plot_header__slider .p_controls__right {
  transform: rotate(180deg);
  float: right;
  margin-right: 20px;
  cursor: pointer;
}
.plot_header__slider .p_slides {
  width: 100000px;
  transition: all 0.3s;
}
.plot_header__slider .p_slides__slide {
  background-position: center center !important;
  background-size: cover !important;
  width: 100px;
  max-height: 200px;
  float: left;
  margin-right: 10px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
  min-height: 160px;
}
@media (max-width: 768px) {
  .plot_header__slider .p_slides__slide {
    max-height: 120px;
  }
}
.plot_header__slider .p_slides__slide:hover {
  opacity: 1;
}
.plot_header__slider .p_slides__slide.active {
  opacity: 1;
}
.plot_header__slider .p_slides__slide.video::before {
  color: #707070;
  content: "▶";
  opacity: 0.5;
  z-index: 100;
  font-size: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.plot_header .plot_location {
  font-size: 18px;
  color: #bbbbbb;
  margin: 7px 0 10px;
}
.plot_header .plot_location img {
  width: 15px;
  float: left;
  margin-right: 8px;
  position: relative;
  top: 3px;
}
.plot_header .plot_type {
  font-size: 20px;
  margin: 0;
  color: #bfbfbf;
}
.plot_header .plot_price {
  color: #8D2D43;
  color: var(-- alternateGreen);
  padding-top: 14px;
  font-size: 28px;
  font-weight: 400;
}
.plot_header .plot_price img {
  float: left;
  width: 45px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.plot_header .plot_description {
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 500;
  margin-bottom: 10px;
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
  margin-top: 30px;
}
.plot_header .plot_counts {
  font-weight: 300;
}
.plot_header .plot_counts .col-2 {
  padding-right: 0 !important;
  max-width: 80px;
}
.plot_header .plot_counts img {
  float: left;
  height: 24px;
  position: relative;
  top: -1px;
  margin-right: 12px;
}

body.logged-in .plot_buttons {
  top: 133px;
}

@media (max-width: 768px) {
  body.logged-in .plot_buttons.pinned {
    top: 100px;
  }
}
.contact-area h3 {
  margin: 0;
  margin-top: 15px;
  font-weight: 500;
  font-size: 22px;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  margin-top: 15px;
}
.contact-area p {
  margin: 0;
  margin-bottom: 4px;
}

.plot_buttons {
  position: sticky;
  z-index: 3;
  top: 100px;
  visibility: hidden;
  height: 1px;
}
@media (max-width: 600px) {
  .plot_buttons {
    top: 108px;
  }
}
.plot_buttons a {
  width: 100%;
  padding: 30px 40px;
  position: relative;
}
.plot_buttons a img {
  width: 16px;
  position: relative;
  left: -6px;
}
.plot_buttons a svg {
  fill: white;
  position: absolute;
  right: 30px;
  top: 50%;
  height: 18px;
  transform: translateY(-50%);
}

.plot_buttons.pinned {
  width: 100%;
  padding: 0;
  margin: 0;
  visibility: visible;
  height: auto;
}
@media (max-width: 600px) {
  .plot_buttons.pinned {
    min-height: 55px;
  }
}
.plot_buttons.pinned .solidbutton {
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 12px;
  transition: all 0.2s;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .plot_buttons.pinned .solidbutton {
    min-height: 55px;
  }
}
.plot_buttons.content.pinned div[class^=col-] {
  padding: 0;
}
@media (max-width: 768px) {
  .plot_buttons.content.pinned div[class^=col-6] {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .plot_buttons.content.pinned div[class^=col-4] {
    width: 33.333333%;
  }
}

.plotSummary {
  padding-right: 30px !important;
}

.plotFeatures ul li {
  display: block;
  clear: both;
  padding: 20px 0;
  font-size: 14px;
  line-height: 14px;
  color: #343f49;
  font-weight: 300;
}
.plotFeatures ul li:first-child {
  padding-top: 5px;
}
.plotFeatures ul li img {
  width: 30px;
  margin-right: 12px;
  transform: translateY(-3%);
  float: left;
  max-height: 33px;
  margin-bottom: 10px;
}

.plot_banner__text {
  padding-right: 20px;
}

#plot_offer_countdown_clock h3.countdown-text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-top: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  #plot_offer_countdown_clock .row {
    display: flex;
    max-width: 300px;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
  }
  #plot_offer_countdown_clock .row .col-1 {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #plot_offer_countdown_clock .row .col-1 .separator {
    position: relative;
    top: 25%;
  }
}
#plot_offer_countdown_clock .block {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 768px) {
  #plot_offer_countdown_clock .block {
    font-size: 10px;
    font-weight: 300;
  }
}
#plot_offer_countdown_clock .days-time,
#plot_offer_countdown_clock .hours-time,
#plot_offer_countdown_clock .minutes-time,
#plot_offer_countdown_clock .seconds-time,
#plot_offer_countdown_clock .separator {
  font-size: 40px;
}
@media (max-width: 600px) {
  #plot_offer_countdown_clock .days-time,
  #plot_offer_countdown_clock .hours-time,
  #plot_offer_countdown_clock .minutes-time,
  #plot_offer_countdown_clock .seconds-time,
  #plot_offer_countdown_clock .separator {
    display: block;
    font-size: 20px;
  }
}

.xmas-campaign .plots_image,
.xmas-campaign .plot_header__image {
  position: relative;
}
.xmas-campaign .plots_image::before,
.xmas-campaign .plot_header__image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/snow.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.xmas-campaign .plots_image::after,
.xmas-campaign .plot_header__image::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 240px;
  height: 240px;
  background-image: url("../../img/bow.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .xmas-campaign .plots_image::after,
  .xmas-campaign .plot_header__image::after {
    width: 130px;
    height: 130px;
  }
}
.xmas-campaign .plotOffer,
.xmas-campaign .development_banner {
  background-color: #941a1d !important;
}

.single-development .xmas-campaign .plots_image::after {
  width: 150px;
  top: 20px;
  height: 150px;
}
@media (max-width: 768px) {
  .single-development .xmas-campaign .plots_image::after {
    top: 20px;
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 600px) {
  .single-development .xmas-campaign .plots_image::after {
    width: 100px;
    height: 100px;
  }
}

.plot-template-default .development .searchResults_tabs.greybg {
  padding-top: 20px;
  margin-top: 30px;
}

.plot-template-default .development .searchResults_tabs.greybg h2 {
  padding-bottom: 30px !important;
}

.summer-campaign.option-one {
  background: #363636;
}

.summer-campaign.option-two {
  background: #fc4f4e;
}

.summer-campaign {
  padding: 20px 0;
  margin-bottom: 0px;
  color: white;
  text-transform: uppercase;
}

.summer-campaign h3 {
  margin: 5px 0;
  font-weight: 600;
  font-size: 32px;
}

.summer-campaign.option-one .development_banner__text {
  background-color: #363636;
}

.summer-campaign.option-one h3 span {
  color: #fc4f4e;
  font-weight: 600;
  line-height: 34px;
}

.summer-campaign.option-one .center-summer-text span {
  color: #fc4f4e;
}

.summer-campaign.option-two .development_banner__text {
  background-color: #fc4f4e;
}

.summer-campaign.option-two h3 span {
  color: #363636;
  font-weight: 600;
  line-height: 34px;
}

.summer-campaign.option-two .center-summer-text span {
  color: #fc4f4e;
}

.summer-campaign p {
  text-transform: math-auto;
  line-height: 1.2;
  font-size: 14px;
  margin: 10px 0;
}

.heylo-description {
  font-weight: bold;
  font-size: 14px;
}

.single-plot .searchResults_tabs {
  padding-top: 0px;
  margin-top: 140px;
}

@media (max-width: 600px) {
  .share {
    text-align: center;
    border: 2px solid var(--yellow);
    padding: 10px;
    margin-top: 8px;
  }
}

.plot-disclaimer details {
  font-size: 12px;
}
.plot-disclaimer details > * {
  padding: 0.75rem;
}
.plot-disclaimer summary {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
.plot-disclaimer summary::marker {
  color: var(--yellow);
}

/* =============================================================================

Content page

================================================================================ */
.contentPage .colorheader {
  padding: 60px 0;
  height: auto;
}
.contentPage_inner {
  padding: 50px 0;
}
.contentPage_inner a {
  color: #B88E00;
  color: var(-- yellow);
  text-decoration: underline;
}
.contentPage_inner .cta-button {
  margin-top: 50px;
}
.contentPage_inner .cta-button h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
}
.contentPage_inner .cta-button a {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 15px 30px;
  max-width: 450px;
  margin: 0 auto;
}
.contentPage_inner h5 {
  color: #B88E00;
  color: var(-- yellow);
}
.contentPage_inner p {
  font-size: 16px;
  line-height: 28px;
  margin-top: 8px;
  color: #797979;
  margin-bottom: 20px;
}
.contentPage_inner ul {
  padding-left: 20px;
  background: #f9fdff;
  background: var(--lightblue);
  padding: 60px 90px;
}
@media (max-width: 768px) {
  .contentPage_inner ul {
    padding: 20px 48px;
  }
}
.contentPage_inner li {
  font-size: 16px;
  line-height: 26px;
  margin-top: 4px;
  color: #343e49;
  margin-bottom: 12px;
  list-style-type: disc;
}
.contentPage_inner strong {
  color: #343e49;
}

/* =============================================================================

Mortgage Calculator

================================================================================ */
.mortgage .col-6:nth-of-type(1) {
  padding-top: 0;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .mortgage .col-6:nth-of-type(1) {
    padding-right: 12px;
  }
}
.mortgage .col-6:nth-of-type(1) p {
  line-height: 30px;
}
.mortgage .colorheader_inner {
  margin-bottom: -410px;
}
@media (max-width: 768px) {
  .mortgage .colorheader_inner {
    margin-bottom: -510px;
  }
}
.mortgage .colorheader_inner .outlinebutton {
  margin-top: 30px;
}

.mortgageCalculator_content {
  padding: 150px 12px 10px 12px;
}
@media (max-width: 768px) {
  .mortgageCalculator_content {
    padding: 210px 12px 10px 12px;
  }
}
@media (max-width: 600px) {
  .mortgageCalculator_content {
    padding: 150px 12px 10px 12px;
  }
}
.mortgageCalculator_content p {
  font-size: 18px;
  line-height: 30px;
}

.mortgageCalculator {
  width: 100%;
  background: white;
  padding: 40px 40px 150px 40px !important;
  position: relative;
}
.mortgageCalculator .ui-state-default,
.mortgageCalculator .ui-widget-content .ui-state-default,
.mortgageCalculator .ui-widget-header .ui-state-default,
.mortgageCalculator .ui-button,
.mortgageCalculator html .ui-button.ui-state-disabled:hover,
.mortgageCalculator html .ui-button.ui-state-disabled:active {
  border: 0 !important;
  background: #353f49;
  font-weight: 400;
  border-radius: 20px;
  color: #454545;
  cursor: pointer;
  outline: 0 !important;
  width: 22px;
  height: 22px;
  transform: translateY(-3px);
}
.mortgageCalculator .ui-slider-horizontal .ui-slider-range-max {
  right: 0;
  background: #f8f8f8;
  border-radius: 30px;
}
.mortgageCalculator .c_total {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f8f8f8;
  width: 100%;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.mortgageCalculator .c_total span {
  display: block;
}
.mortgageCalculator .c_total span.c_tip, .mortgageCalculator .c_total span.c_tr {
  display: inline-block;
  font-size: 16px;
  margin: 0 10px;
}
.mortgageCalculator .c_total span.c_tip i, .mortgageCalculator .c_total span.c_tr i {
  color: #8D2D43;
  color: var(-- alternateGreen);
  font-style: normal;
}
.mortgageCalculator .c_total span.c_mr {
  color: #8D2D43;
  color: var(-- red);
  font-size: 48px;
  margin: 10px 0;
}
.mortgageCalculator .ui-widget.ui-widget-content {
  border: 0;
  background: #325083;
  cursor: pointer;
  border-radius: 20px;
  height: 6px;
}
.mortgageCalculator label {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 40px;
  display: inline-block;
}
.mortgageCalculator .section {
  margin-bottom: 34px;
  padding-bottom: 74px;
  border-bottom: 1px solid #efefef;
}
.mortgageCalculator .amount {
  color: #7EA799;
  color: var(-- blue);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 40px;
  display: inline-block;
  float: right;
}
@media (max-width: 768px) {
  .mortgageCalculator .amount {
    float: none;
    clear: both;
    display: block;
  }
}
.mortgageCalculator .sLeft,
.mortgageCalculator .sRight {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
  display: inline-block;
  margin-top: 20px;
}
.mortgageCalculator .sLeft {
  float: left;
}
.mortgageCalculator .sRight {
  float: right;
}

.stampdutyCalculator_content {
  overflow: visible;
}
.stampdutyCalculator_content p {
  width: 75%;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 25px;
  color: #968e8e;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content p {
    width: 100%;
  }
}
.stampdutyCalculator_content__form {
  padding: 80px 0 !important;
}
.stampdutyCalculator_content__form select.error {
  border: 2px solid #000;
  border-color: #8D2D43;
  border-color: var(-- red);
}
.stampdutyCalculator_content__form label {
  font-weight: 500;
  font-size: 20px;
}
.stampdutyCalculator_content__form .sdc_calculate {
  padding: 30px 40px;
  cursor: pointer;
}
.stampdutyCalculator_content__form select {
  color: #343f49;
  color: var(--darkgrey);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 19px;
  outline: 0;
  cursor: pointer;
  border: 2px solid #f8f8f8;
}
.stampdutyCalculator_content__form input,
.stampdutyCalculator_content__form select {
  width: 100%;
  padding: 26px;
  margin-top: 20px;
  margin-bottom: 40px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
  transition: all 0.2s;
}
.stampdutyCalculator_content__form input:focus,
.stampdutyCalculator_content__form select:focus {
  border: 2px solid #000;
  border-color: #B88E00;
  border-color: var(--yellow);
}
.stampdutyCalculator_content__how {
  float: none !important;
}
.stampdutyCalculator_content__how h2 {
  font-size: 34px;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content__how h2 {
    margin-top: 0px;
  }
}
.stampdutyCalculator_content__how .tableWrapper {
  width: 100%;
}
@media (max-width: 800px) {
  .stampdutyCalculator_content__how .tableWrapper {
    overflow-x: scroll;
  }
}
.stampdutyCalculator_content__how .tableWrapper table {
  width: 100%;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 60px;
  border-spacing: 0px;
  min-width: 800px;
  border-collapse: separate;
}
.stampdutyCalculator_content__how .tableWrapper table tr th {
  text-align: left;
  font-weight: 300;
  font-size: 20px;
  border-bottom: 10px solid #f8f8f8;
}
.stampdutyCalculator_content__how .tableWrapper table tr td {
  font-size: 17px;
}
.stampdutyCalculator_content__how .tableWrapper table tr td:last-of-type {
  font-weight: 300;
}
.stampdutyCalculator_content__how .tableWrapper table tr th,
.stampdutyCalculator_content__how .tableWrapper table tr td {
  padding: 24px;
}
.stampdutyCalculator_content__how .tableWrapper table tr:nth-of-type(odd) td {
  background: #f8f8f8;
}
.stampdutyCalculator_content__results {
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 90px !important;
  margin-bottom: 37px;
}
.stampdutyCalculator_content__results h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.stampdutyCalculator_content__results h6 {
  font-size: 14px;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content__results {
    margin-bottom: 20px;
    padding-bottom: 20px !important;
  }
}
.stampdutyCalculator_content__results .col-6 {
  padding: 70px !important;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content__results .col-6 {
    text-align: center;
    padding: 20px !important;
  }
}
.stampdutyCalculator_content__results .col-6 h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content__results .col-6 h3 {
    font-size: 28px;
  }
}
.stampdutyCalculator_content__results .col-6 h4 {
  font-size: 58px;
  margin: 0;
}
@media (max-width: 768px) {
  .stampdutyCalculator_content__results .col-6 h4 {
    font-size: 43px;
  }
}
.stampdutyCalculator_content__results .col-6 .green {
  color: #8D2D43;
  color: var(-- alternateGreen);
}
.stampdutyCalculator_content__results .col-6 .red {
  color: #8D2D43;
  color: var(-- red);
}

/* =============================================================================

Contact us

================================================================================ */
.page-template-contact .colorheader {
  padding: 60px 0;
  height: auto;
}

.contact {
  padding: 70px 0 40px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 10px 0 0px 0;
  }
}
.contact_inner input[type=text],
.contact_inner input[type=email],
.contact_inner input[type=tel],
.contact_inner select,
.contact_inner textarea {
  width: 100%;
  padding: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
  transition: all 0.2s;
}
.contact_inner input[type=text]:focus,
.contact_inner input[type=email]:focus,
.contact_inner input[type=tel]:focus,
.contact_inner select:focus,
.contact_inner textarea:focus {
  border: 2px solid black;
  border-color: #B88E00;
  border-color: var(-- yellow);
}
.contact_inner input[type=submit] {
  background: #7EA799;
  background: var(-- green);
  padding: 25px;
}
.contact_inner select {
  color: #646363;
  color: var(-- darkgrey);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 19px;
  outline: none;
  cursor: pointer;
  border: 2px solid #f8f8f8;
}
.contact_inner .wpcf7-not-valid {
  border: 2px solid #e63434;
}
.contact_inner span.wpcf7-not-valid-tip {
  color: #e63434;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  background-color: white;
}
.contact_inner div.wpcf7-validation-errors,
.contact_inner div.wpcf7-acceptance-missing {
  display: none !important;
}
.contact_inner label,
.contact_inner h4 {
  font-weight: 500;
  font-size: 20px;
}
.contact_inner h3 {
  font-size: 40px;
  margin: 50px 0 0;
}
.contact_inner h3 + p {
  margin-bottom: 60px;
}
.contact_inner p {
  font-size: 18px;
  line-height: 26px;
  margin-top: 8px;
  margin-bottom: 30px;
}
.contact_inner h4 {
  margin: 9px 0 20px 0;
}
.contact_inner p a {
  color: #B88E00;
  color: var(-- yellow);
  position: relative;
}
@media (max-width: 768px) {
  .contact_inner p a {
    font-size: 20px;
  }
}
.contact_inner p a:after {
  background: #B88E00;
  background: var(-- yellow);
  display: block;
  height: 3px;
  width: 100%;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
}
.contact_inner__section {
  margin: 0 0 60px 0;
  margin-left: 100px;
}
@media (max-width: 1301px) {
  .contact_inner__section {
    margin-left: 0;
  }
}
.contact_inner__section.careers {
  background: #f8f8f7;
  padding: 30px 50px 48px 40px;
}
.contact_inner__section.careers p {
  font-weight: 500;
  font-size: 20px;
}
.contact_inner__section.careers a {
  font-size: 24px;
  font-weight: 500;
  color: #B88E00;
  color: var(-- yellow);
  position: relative;
}
.contact_inner__section.careers a:after {
  background: #B88E00;
  background: var(-- yellow);
  display: block;
  height: 3px;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
}

.hs-form .hs-richtext p {
  font-size: 12px !important;
  line-height: inherit !important;
}
.hs-form .hs-error-msg {
  font-size: 12px !important;
  line-height: inherit !important;
  color: #cf4030;
}
.hs-form .legal-consent-container p {
  font-size: 13px !important;
  line-height: 20px;
}
.hs-form .legal-consent-container .hs-form-booleancheckbox-display span {
  font-size: 13px !important;
  line-height: 20px;
}

/* =============================================================================

  KeyWorkers

================================================================================ */
.keyWorkers .kw-header {
  background-color: #8c2a42;
  padding: 10px;
  padding-bottom: 5px;
  color: white;
  font-weight: 300;
  text-align: center;
}
.keyWorkers .kw-header_inner {
  text-align: center;
}
.keyWorkers .content div[class^=col-] {
  padding: 1px;
}
.keyWorkers img {
  width: 100%;
}
.keyWorkers .yellow-text {
  text-align: center;
  line-height: 18px;
  font-size: 15px;
  padding: 20px;
  color: black;
  margin-bottom: 20px;
}
.keyWorkers .blocktext {
  color: #636466;
  text-align: center;
}
.keyWorkers li.hs-form-checkbox {
  width: 33% !important;
  float: left !important;
}
.keyWorkers .footer-blocktext {
  padding: 20px !important;
}
.keyWorkers .footer-text {
  border-top: 10px solid #8c2a42;
  font-size: 8px;
  line-height: 12px;
}
.keyWorkers a {
  color: white;
  font-weight: 300;
}

/* =============================================================================

  Land

================================================================================ */
.land-2022-hero.hero_cover {
  position: relative;
  min-height: 80vh;
}
@media (max-width: 600px) {
  .land-2022-hero.hero_cover {
    min-height: 250px;
  }
}
.land-2022-hero.hero_cover .hero_content_box {
  background: rgba(100, 99, 99, 0.8);
  width: 100%;
  position: absolute;
  bottom: 0;
}
.land-2022-hero.hero_cover .hero_content_box .hero_cover__text h1 {
  text-align: center;
  font-size: 70px;
  margin: 30px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 600px) {
  .land-2022-hero.hero_cover .hero_content_box .hero_cover__text h1 {
    font-size: 30px;
    margin: 20px;
  }
}

.land-2022-journey-block .inner {
  padding: 40px 0px;
  max-width: 730px;
}
@media (max-width: 600px) {
  .land-2022-journey-block .inner {
    padding: 0px 10px;
  }
}
.land-2022-journey-block .inner h2 {
  margin-top: 0px;
  color: white;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .land-2022-journey-block .inner h2 {
    font-size: 30px;
  }
}
.land-2022-journey-block .inner p {
  color: white;
  font-weight: 300;
}
@media (max-width: 600px) {
  .land-2022-journey-block .inner p {
    font-weight: 300;
    font-size: 14px;
  }
}
.land-2022-journey-block .inner .land-button {
  padding: 15px 30px;
  margin-top: 10px;
}

.land-2022-brochure {
  position: relative;
  min-height: 800px;
}
.land-2022-brochure .brochure_content_box {
  margin-left: auto;
  margin-right: 10%;
  width: 550px;
  min-height: 800px;
  background: rgba(96, 99, 104, 0.8);
}
@media (max-width: 600px) {
  .land-2022-brochure .brochure_content_box {
    width: 100%;
    min-height: 400px;
  }
}
.land-2022-brochure .brochure_content_box .brochure_cover__text {
  position: relative;
  padding: 25% 40px;
}
@media (max-width: 600px) {
  .land-2022-brochure .brochure_content_box .brochure_cover__text {
    padding: 5%;
  }
}
.land-2022-brochure .brochure_content_box .brochure_cover__text h2 {
  font-size: 28px;
  font-weight: 500;
  color: white;
  margin-bottom: 0;
}
.land-2022-brochure .brochure_content_box .brochure_cover__text p {
  color: white;
  font-weight: 300;
  font-size: 20px;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .land-2022-cta-block .inner {
    padding: 0px 10px;
  }
}
.land-2022-cta-block h2 {
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .land-2022-cta-block h2 {
    font-size: 22px;
  }
}
.land-2022-cta-block p {
  margin-top: 8px;
  font-size: 22px;
}
@media (max-width: 600px) {
  .land-2022-cta-block p {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 300;
  }
}

/* =============================================================================

Contact us

================================================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding: 8rem;
}

.page-template-page-contact-us-new a {
  color: #B88E00;
  color: var(-- yellow);
  text-decoration: underline;
  font-weight: 400;
}
.page-template-page-contact-us-new footer a, .page-template-page-contact-us-new header a {
  text-decoration: none;
  color: white;
  font-weight: 300;
}
.page-template-page-contact-us-new .pb-50 {
  padding-bottom: 50px;
}
.page-template-page-contact-us-new .hero .hero-inner {
  min-height: 50vh;
  position: relative;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .page-template-page-contact-us-new .content {
    padding: 0 5px;
  }
}
.page-template-page-contact-us-new .intro {
  margin: 60px 0;
}
.page-template-page-contact-us-new .three-block-row {
  display: flex;
  justify-content: space-around;
  max-width: 850px;
  margin: 0px auto;
  margin-bottom: 30px;
}
.page-template-page-contact-us-new .three-block-row a {
  text-decoration: none;
}
@media (max-width: 600px) {
  .page-template-page-contact-us-new .three-block-row {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.page-template-page-contact-us-new .three-block-row .block-single {
  background-color: #f4f4f4;
  width: 250px;
  height: 200px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .page-template-page-contact-us-new .three-block-row .block-single {
    width: 200px;
    height: 160px;
  }
}
@media (max-width: 600px) {
  .page-template-page-contact-us-new .three-block-row .block-single {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
  }
}
.page-template-page-contact-us-new .accordion-item {
  margin-bottom: 10px;
}
.page-template-page-contact-us-new .accordion-item .accordion-header {
  background-color: #f1f1f1;
  cursor: pointer;
  position: relative;
}
.page-template-page-contact-us-new .accordion-item .accordion-header::after {
  position: absolute;
  content: "‹";
  right: 30px;
  top: -2px;
  font-size: 40px;
  transform: rotate(-90deg);
  color: white;
  transition: all 0.3s ease-in-out;
}
.page-template-page-contact-us-new .accordion-item .accordion-header h3 {
  font-size: 20px;
  margin: 0;
  padding: 10px 30px;
  font-weight: 300;
  text-align: left;
  color: white;
  transition: all 0.4s ease-in-out;
  background-color: #B88E00;
}
.page-template-page-contact-us-new .accordion-item .accordion-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  padding: 10px 30px;
  text-align: left;
  color: #646363;
}
.page-template-page-contact-us-new .accordion-item .accordion-content.active {
  display: block;
}
.page-template-page-contact-us-new .active {
  transition: max-height 0.4s ease;
}
.page-template-page-contact-us-new .active .accordion-content {
  display: block;
  transition: max-height 0.4s ease;
  max-height: 1000px; /* Adjust as needed */
  background: white;
}
.page-template-page-contact-us-new .accordion-item.active .accordion-header::after {
  transition: all 0.4s ease-in-out;
  transform: rotate(90deg);
  right: 20px;
}
.page-template-page-contact-us-new .section-title {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .page-template-page-contact-us-new .section-title {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .page-template-page-contact-us-new .section-title {
    margin-top: 20px;
  }
}
.page-template-page-contact-us-new .section-title h2 {
  font-size: 32px;
  margin: 0;
  padding: 10px;
  font-weight: 300;
  text-align: left;
}
.page-template-page-contact-us-new .contact-text-block .contact-text-block-inner {
  margin-top: 10px;
  padding: 20px 10px;
  background: white;
}
.page-template-page-contact-us-new .contact-text-block .contact-text-block-inner.no-bg {
  background: none;
}
.page-template-page-contact-us-new .contact-form {
  display: flow-root;
  max-width: 900px;
  margin: 0 auto;
}
.page-template-page-contact-us-new .contact-form div[class^=col-] {
  padding: 0;
}
.page-template-page-contact-us-new .contact-form .inner {
  margin-right: 5px;
  margin-top: 20px;
}
.page-template-page-contact-us-new .contact-form label {
  font-family: "Lato";
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
}
@media (max-width: 600px) {
  .page-template-page-contact-us-new .contact-form label {
    font-size: 10px;
    line-height: 10px;
  }
}
.page-template-page-contact-us-new .contact-form .marketing {
  clear: both;
}
.page-template-page-contact-us-new .contact-form .marketing p {
  padding: 20px 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: initial;
  text-align: left;
  color: grey;
}
.page-template-page-contact-us-new .contact-form .marketing input[type=checkbox] {
  width: auto;
}
.page-template-page-contact-us-new .contact-form .marketing label {
  color: grey;
  width: auto;
  display: inline-block;
  font-weight: 300;
  margin: 0;
  font-size: 14px;
  vertical-align: bottom;
  top: -3px;
  position: relative;
  line-height: initial;
}
.page-template-page-contact-us-new .contact-form .marketing input[type=checkbox] {
  width: 30px !important;
  height: 30px !important;
  padding: 10px;
  margin-bottom: 0;
}
.page-template-page-contact-us-new .contact-form input[type=submit] {
  border-bottom: none;
  background: #7a273a;
  padding: 12px;
}
.page-template-page-contact-us-new .contact-form input {
  padding: 5px;
  border-bottom: 3px solid #B88E00;
  font-weight: 300;
}
.page-template-page-contact-us-new .contact-form select {
  font-family: "Lato";
  padding: 10px;
  border-bottom: 2px solid #B88E00;
  width: 100%;
  font-weight: 400;
}
.page-template-page-contact-us-new .contact-form textarea {
  width: 100%;
  font-family: "Lato";
  padding: 10px;
  min-height: 150px;
  border-bottom: 3px solid #B88E00;
}

/* =============================================================================

About Us

================================================================================ */
.timeline-block h3 {
  margin-top: 0px;
}
@media (max-width: 600px) {
  .timeline-block {
    padding: 35px;
    padding-left: 50px;
    padding-top: 0px;
  }
}
.timeline-block .timeline-timestamp {
  margin-right: 15px !important;
}
@media (max-width: 768px) {
  .timeline-block .timeline-timestamp .padding-fix {
    padding-right: 0px !important;
  }
}

.timeline-dot {
  border-right: 3px solid #b88e00;
  position: absolute;
  left: 21.5%;
  height: 100%;
}
@media (max-width: 1301px) {
  .timeline-dot {
    left: 20%;
  }
}
@media (max-width: 998px) {
  .timeline-dot {
    left: 20.5%;
  }
}
@media (max-width: 768px) {
  .timeline-dot {
    left: -15px;
  }
}
@media (max-width: 600px) {
  .timeline-dot {
    left: -30px;
  }
}
@media (max-width: 320px) {
  .timeline-dot {
    left: -10px;
  }
}
.timeline-dot::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b88e00;
  position: relative;
  display: block;
  left: 17px;
  top: 0px;
}
.timeline-dot.last {
  border-right: 3px solid #e6e6e7 !important;
}

#careers .outer-container {
  margin: 0 auto;
  max-width: 2560px;
  position: relative;
}
#careers .container {
  margin: 0 auto;
  max-width: 1650px;
  position: relative;
}
#careers .show-xs,
#careers .show-sm,
#careers .show-md,
#careers .show-lg,
#careers .show-xl {
  display: none !important;
}
#careers .cols,
#careers .columns {
  display: flex;
  flex-wrap: wrap;
}
#careers .cols.col-gapless,
#careers .columns.col-gapless {
  margin-left: 0;
  margin-right: 0;
}
#careers .cols.col-gapless > .column,
#careers .columns.col-gapless > .column {
  padding-left: 0;
  padding-right: 0;
}
#careers .cols.col-oneline,
#careers .columns.col-oneline {
  flex-wrap: nowrap;
  overflow-x: auto;
}
#careers .columns > * > .inner {
  padding: 8px;
}
#careers [class~=col-],
#careers .column {
  flex: 1;
  max-width: 100%;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
#careers [class~=col-].col-12,
#careers [class~=col-].col-11,
#careers [class~=col-].col-10,
#careers [class~=col-].col-9,
#careers [class~=col-].col-8,
#careers [class~=col-].col-7,
#careers [class~=col-].col-6,
#careers [class~=col-].col-5,
#careers [class~=col-].col-4,
#careers [class~=col-].col-3,
#careers [class~=col-].col-2,
#careers [class~=col-].col-1,
#careers [class~=col-].col-auto,
#careers .column.col-12,
#careers .column.col-11,
#careers .column.col-10,
#careers .column.col-9,
#careers .column.col-8,
#careers .column.col-7,
#careers .column.col-6,
#careers .column.col-5,
#careers .column.col-4,
#careers .column.col-3,
#careers .column.col-2,
#careers .column.col-1,
#careers .column.col-auto {
  flex: none;
}
#careers .col-12 {
  width: 100%;
}
#careers .col-11 {
  width: 91.66666667%;
}
#careers .col-10 {
  width: 83.33333333%;
}
#careers .col-9 {
  width: 75%;
}
#careers .col-8 {
  width: 66.66666667%;
}
#careers .col-7 {
  width: 58.33333333%;
}
#careers .col-6 {
  width: 50%;
}
#careers .col-5 {
  width: 41.66666667%;
}
#careers .col-4 {
  width: 33.33333333%;
}
#careers .col-3 {
  width: 25%;
}
#careers .col-2 {
  width: 16.66666667%;
}
#careers .col-1 {
  width: 8.33333333%;
}
#careers .col-auto {
  flex: 0 0 auto;
  max-width: none;
  width: auto;
}
#careers .col-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
#careers .col-ml-auto {
  margin-left: auto;
}
#careers .col-mr-auto {
  margin-right: auto;
}
@media (max-width: 1280px) {
  #careers .col-xl-12,
  #careers .col-xl-11,
  #careers .col-xl-10,
  #careers .col-xl-9,
  #careers .col-xl-8,
  #careers .col-xl-7,
  #careers .col-xl-6,
  #careers .col-xl-5,
  #careers .col-xl-4,
  #careers .col-xl-3,
  #careers .col-xl-2,
  #careers .col-xl-1,
  #careers .col-xl-auto {
    flex: none;
  }
  #careers .col-xl-12 {
    width: 100%;
  }
  #careers .col-xl-11 {
    width: 91.66666667%;
  }
  #careers .col-xl-10 {
    width: 83.33333333%;
  }
  #careers .col-xl-9 {
    width: 75%;
  }
  #careers .col-xl-8 {
    width: 66.66666667%;
  }
  #careers .col-xl-7 {
    width: 58.33333333%;
  }
  #careers .col-xl-6 {
    width: 50%;
  }
  #careers .col-xl-5 {
    width: 41.66666667%;
  }
  #careers .col-xl-4 {
    width: 33.33333333%;
  }
  #careers .col-xl-3 {
    width: 25%;
  }
  #careers .col-xl-2 {
    width: 16.66666667%;
  }
  #careers .col-xl-1 {
    width: 8.33333333%;
  }
  #careers .col-xl-auto {
    width: auto;
  }
  #careers .hide-xl {
    display: none !important;
  }
  #careers .show-xl {
    display: block !important;
  }
}
@media (max-width: 960px) {
  #careers .col-lg-12,
  #careers .col-lg-11,
  #careers .col-lg-10,
  #careers .col-lg-9,
  #careers .col-lg-8,
  #careers .col-lg-7,
  #careers .col-lg-6,
  #careers .col-lg-5,
  #careers .col-lg-4,
  #careers .col-lg-3,
  #careers .col-lg-2,
  #careers .col-lg-1,
  #careers .col-lg-auto {
    flex: none;
  }
  #careers .col-lg-12 {
    width: 100%;
  }
  #careers .col-lg-11 {
    width: 91.66666667%;
  }
  #careers .col-lg-10 {
    width: 83.33333333%;
  }
  #careers .col-lg-9 {
    width: 75%;
  }
  #careers .col-lg-8 {
    width: 66.66666667%;
  }
  #careers .col-lg-7 {
    width: 58.33333333%;
  }
  #careers .col-lg-6 {
    width: 50%;
  }
  #careers .col-lg-5 {
    width: 41.66666667%;
  }
  #careers .col-lg-4 {
    width: 33.33333333%;
  }
  #careers .col-lg-3 {
    width: 25%;
  }
  #careers .col-lg-2 {
    width: 16.66666667%;
  }
  #careers .col-lg-1 {
    width: 8.33333333%;
  }
  #careers .col-lg-auto {
    width: auto;
  }
  #careers .hide-lg {
    display: none !important;
  }
  #careers .show-lg {
    display: block !important;
  }
}
@media (max-width: 840px) {
  #careers .col-md-12,
  #careers .col-md-11,
  #careers .col-md-10,
  #careers .col-md-9,
  #careers .col-md-8,
  #careers .col-md-7,
  #careers .col-md-6,
  #careers .col-md-5,
  #careers .col-md-4,
  #careers .col-md-3,
  #careers .col-md-2,
  #careers .col-md-1,
  #careers .col-md-auto {
    flex: none;
  }
  #careers .col-md-12 {
    width: 100%;
  }
  #careers .col-md-11 {
    width: 91.66666667%;
  }
  #careers .col-md-10 {
    width: 83.33333333%;
  }
  #careers .col-md-9 {
    width: 75%;
  }
  #careers .col-md-8 {
    width: 66.66666667%;
  }
  #careers .col-md-7 {
    width: 58.33333333%;
  }
  #careers .col-md-6 {
    width: 50%;
  }
  #careers .col-md-5 {
    width: 41.66666667%;
  }
  #careers .col-md-4 {
    width: 33.33333333%;
  }
  #careers .col-md-3 {
    width: 25%;
  }
  #careers .col-md-2 {
    width: 16.66666667%;
  }
  #careers .col-md-1 {
    width: 8.33333333%;
  }
  #careers .col-md-auto {
    width: auto;
  }
  #careers .hide-md {
    display: none !important;
  }
  #careers .show-md {
    display: block !important;
  }
}
@media (max-width: 600px) {
  #careers .col-sm-12,
  #careers .col-sm-11,
  #careers .col-sm-10,
  #careers .col-sm-9,
  #careers .col-sm-8,
  #careers .col-sm-7,
  #careers .col-sm-6,
  #careers .col-sm-5,
  #careers .col-sm-4,
  #careers .col-sm-3,
  #careers .col-sm-2,
  #careers .col-sm-1,
  #careers .col-sm-auto {
    flex: none;
  }
  #careers .col-sm-12 {
    width: 100%;
  }
  #careers .col-sm-11 {
    width: 91.66666667%;
  }
  #careers .col-sm-10 {
    width: 83.33333333%;
  }
  #careers .col-sm-9 {
    width: 75%;
  }
  #careers .col-sm-8 {
    width: 66.66666667%;
  }
  #careers .col-sm-7 {
    width: 58.33333333%;
  }
  #careers .col-sm-6 {
    width: 50%;
  }
  #careers .col-sm-5 {
    width: 41.66666667%;
  }
  #careers .col-sm-4 {
    width: 33.33333333%;
  }
  #careers .col-sm-3 {
    width: 25%;
  }
  #careers .col-sm-2 {
    width: 16.66666667%;
  }
  #careers .col-sm-1 {
    width: 8.33333333%;
  }
  #careers .col-sm-auto {
    width: auto;
  }
  #careers .hide-sm {
    display: none !important;
  }
  #careers .show-sm {
    display: block !important;
  }
}
@media (max-width: 480px) {
  #careers .col-xs-12,
  #careers .col-xs-11,
  #careers .col-xs-10,
  #careers .col-xs-9,
  #careers .col-xs-8,
  #careers .col-xs-7,
  #careers .col-xs-6,
  #careers .col-xs-5,
  #careers .col-xs-4,
  #careers .col-xs-3,
  #careers .col-xs-2,
  #careers .col-xs-1,
  #careers .col-xs-auto {
    flex: none;
  }
  #careers .col-xs-12 {
    width: 100%;
  }
  #careers .col-xs-11 {
    width: 91.66666667%;
  }
  #careers .col-xs-10 {
    width: 83.33333333%;
  }
  #careers .col-xs-9 {
    width: 75%;
  }
  #careers .col-xs-8 {
    width: 66.66666667%;
  }
  #careers .col-xs-7 {
    width: 58.33333333%;
  }
  #careers .col-xs-6 {
    width: 50%;
  }
  #careers .col-xs-5 {
    width: 41.66666667%;
  }
  #careers .col-xs-4 {
    width: 33.33333333%;
  }
  #careers .col-xs-3 {
    width: 25%;
  }
  #careers .col-xs-2 {
    width: 16.66666667%;
  }
  #careers .col-xs-1 {
    width: 8.33333333%;
  }
  #careers .col-xs-auto {
    width: auto;
  }
  #careers .hide-xs {
    display: none !important;
  }
  #careers .show-xs {
    display: block !important;
  }
}

.admin-bar #campaign-modal .modalInner {
  margin-top: 30px;
}

#campaign-modal .campaign-banner__content {
  display: flex;
  gap: 10px;
}
#campaign-modal strong {
  font-weight: bold;
}
#campaign-modal .modalInner {
  width: 1200px;
  padding: 0;
}
#campaign-modal .campaign-banner__content .left {
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#campaign-modal .campaign-banner__content .right {
  width: 50%;
}
#campaign-modal .campaign-banner__content .right .description {
  min-height: 832px;
  padding: 20px 30px 20px 20px;
  text-align: center;
}
#campaign-modal .campaign-banner__content .right .description h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 300;
  color: #646363;
}
#campaign-modal .campaign-banner__content .right .description h3 {
  font-size: 34px;
  margin: 0;
  font-weight: 700;
  color: #646363;
  text-transform: uppercase;
}
#campaign-modal .campaign-banner__content .right .description span.plus {
  font-size: 50px;
  font-weight: 900;
}
#campaign-modal .campaign-banner__content .right .description p.sub-heading {
  color: #646363;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#campaign-modal .campaign-banner__content .right .description form input {
  border: 2px solid #333;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-weight: 400;
}
#campaign-modal .campaign-banner__content .right .description form input[type=submit] {
  color: #646363;
  text-transform: uppercase;
}
#campaign-modal .campaign-banner__content .right .description .privacy-policy label {
  display: flex;
  cursor: pointer;
}
#campaign-modal .campaign-banner__content .right .description .privacy-policy input[type=checkbox] {
  width: 20px;
  height: 40px;
  margin-right: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 2px solid #333;
  cursor: pointer;
}
#campaign-modal .campaign-banner__content .right .description .privacy-policy input[type=checkbox]:checked {
  background-image: url("../../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#campaign-modal .campaign-banner__content .right .description .privacy-policy .left {
  width: 85%;
  text-align: left;
}
#campaign-modal .campaign-banner__content .right .description .privacy-policy .right {
  align-items: center;
  align-content: center;
  width: 15%;
}

@media (max-width: 1301px) {
  #campaign-modal .modalInner {
    width: 60%;
  }
  #campaign-modal .modalInner .campaign-banner__content {
    flex-direction: column;
  }
  #campaign-modal .modalInner .campaign-banner__content > .left {
    height: 400px;
    width: 100%;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right {
    width: 100%;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right .description {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  #campaign-modal .modalInner {
    width: 90%;
    margin-top: 0;
  }
  #campaign-modal .modalInner .campaign-banner__content > .left {
    height: 300px;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right h2 {
    font-size: 22px;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right h3 {
    font-size: 22px;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right .description span.plus {
    font-size: 30px;
  }
  #campaign-modal .modalInner .campaign-banner__content > .right .description p.sub-heading {
    font-size: 18px;
  }
}
#location-listing {
  padding-bottom: 80px;
}
#location-listing p {
  color: var(--darkgrey);
}
#location-listing .hero {
  width: 100%;
  position: relative;
}
#location-listing img {
  max-width: 100%;
}
#location-listing .cover-title {
  background-image: url("https://allison-homes.co.uk/wp-content/uploads/2024/02/Allison-32-2-1-scaled.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 300px;
  width: 100%;
  height: 50vh;
}
@media (max-width: 998px) {
  #location-listing .cover-title {
    min-height: 40vh;
  }
}
#location-listing .flex {
  display: flex;
}
#location-listing .absolute {
  position: absolute;
  width: 40%;
  text-align: right;
  color: white;
  bottom: 30px;
  background-color: rgba(93, 87, 107, 0.7);
}
@media (max-width: 998px) {
  #location-listing .absolute {
    width: 60%;
  }
}
@media (max-width: 600px) {
  #location-listing .absolute {
    width: 80%;
  }
}
#location-listing .page-title {
  font-size: 40px;
  color: white;
  font-weight: 500;
  padding: 1rem 20px;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 998px) {
  #location-listing .page-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  #location-listing .page-title {
    padding-right: 2rem;
    font-size: 26px;
  }
}
#location-listing .intro-section h2 {
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  margin: 20px 0;
  text-transform: uppercase;
  color: var(--yellow);
}
#location-listing .intro-section p {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  margin-bottom: 30px;
}
#location-listing .region {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #location-listing .region {
    margin-bottom: 0px;
  }
}
#location-listing .region .region-image {
  width: 100%;
  height: 300px;
  background-position: center center !important;
  background-size: auto 100% !important;
  background-repeat: no-repeat !important;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 998px) {
  #location-listing .region .region-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #location-listing .region .region-image {
    background-position: left !important;
    height: 300px;
  }
}
@media (max-width: 600px) {
  #location-listing .region .region-image {
    height: 240px;
  }
}
#location-listing .region .region-image .absolute {
  position: absolute;
  width: 87.5%;
  text-align: right;
  color: white;
  bottom: 30px;
  background-color: rgba(93, 87, 107, 0.7);
}
#location-listing .region .location-information .county {
  display: block;
  margin-bottom: 20px;
}
#location-listing .region .location-information h3 {
  color: var(--amethyst);
  font-weight: 600;
  font-size: 22px;
  margin: 15px 0;
}
#location-listing .region .location-information p {
  font-weight: 400;
  color: var(--darkgrey);
  margin-bottom: 30px;
}
#location-listing .region .location-information .gold-text {
  color: var(--yellow);
  font-weight: 600;
}
#location-listing .region .location-information .grey-text {
  color: var(--darkgrey);
  font-weight: 400;
}

#region-single .hero {
  width: 100%;
  position: relative;
}
#region-single img {
  max-width: 100%;
}
#region-single p {
  color: var(--darkgrey);
}
#region-single .cover-title {
  background-image: url("https://allison-homes.co.uk/wp-content/uploads/2024/02/Allison-32-2-1-scaled.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 300px;
  width: 100%;
  height: 50vh;
}
@media (max-width: 998px) {
  #region-single .cover-title {
    min-height: 40vh;
  }
}
#region-single .flex {
  display: flex;
}
#region-single .absolute {
  position: absolute;
  width: 40%;
  text-align: right;
  color: white;
  bottom: 30px;
  background-color: rgba(93, 87, 107, 0.7);
}
@media (max-width: 998px) {
  #region-single .absolute {
    width: 60%;
  }
}
@media (max-width: 600px) {
  #region-single .absolute {
    width: 80%;
  }
}
#region-single .page-title {
  font-size: 40px;
  color: white;
  font-weight: 500;
  padding: 1rem 20px;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 998px) {
  #region-single .page-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  #region-single .page-title {
    padding-right: 2rem;
    font-size: 26px;
  }
}
#region-single .intro-section h2 {
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  margin: 20px 0;
  text-transform: uppercase;
  color: var(--yellow);
}
#region-single .intro-section p {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  margin-bottom: 30px;
}
#region-single .gold-text {
  color: var(--yellow);
}
#region-single .development-image {
  width: 100%;
  height: 300px;
  background-position: center center !important;
  background-size: auto 100% !important;
  background-repeat: no-repeat !important;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 998px) {
  #region-single .development-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #region-single .development-image {
    background-position: left !important;
    height: 300px;
  }
}
@media (max-width: 600px) {
  #region-single .development-image {
    height: 240px;
  }
}
#region-single .development-image .absolute {
  position: absolute;
  width: 87.5%;
  text-align: right;
  color: white;
  bottom: 30px;
  background-color: rgba(93, 87, 107, 0.7);
}
#region-single .development-image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#region-single .development-information .development {
  display: block;
  margin-bottom: 30px;
}
#region-single .development-information h3 {
  color: var(--amethyst);
  font-weight: 600;
  font-size: 22px;
  margin: 15px 0;
}
#region-single .development-information p {
  font-weight: 400;
  color: var(--darkgrey);
  margin: 14px 0;
}
#region-single .development-information .gold-text {
  color: var(--yellow);
  font-weight: 600;
}
#region-single .development-information .grey-text {
  color: var(--darkgrey);
  font-weight: 400;
}
#region-single .gold-separator {
  border-bottom: 2px solid var(--yellow);
}
#region-single .bg-amythest {
  background-color: var(--amethyst);
}
#region-single .seperator {
  margin-bottom: 50px;
}
#region-single .content-block h3 {
  color: var(--amethyst);
  font-weight: 600;
  margin: 10px 0;
  font-size: 30px;
  padding-top: 40px;
}
#region-single .latest-news-inner p {
  color: white;
}
