/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */

hr {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

nav li::before {
  content: "\200B";
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -ms-overflow-style: scrollbar; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

table {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
  resize: block; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * Remove the tapping delay in IE 10.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E");
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

[type="color"],
[type="range"] {
  border-width: 0;
  padding: 0;
}

/**
 * Change the inconsistent appearance in IE (opinionated).
 */

::-ms-expand {
  display: none;
}

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}
body {
  font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: 0.2em;
}

.alt-font,
.b-child-listing-panels__panel__image > div > span,
.b-contact__form .sent,
.b-3panels__panel__image > div > span,
.header__nav ul > li a {
  font-weight: 300;
  letter-spacing: 0.2em;
}

.alt-font--bdr {
  display: table;
  margin: 0 auto 30px auto;
  padding: 7.5px 0;
  position: relative;
  border-top: 1px solid #9c967f;
  border-bottom: 1px solid #9c967f;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 10px 5px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #9c967f;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #9c967f;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Slider
 */

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

body {
  background-color: #FEFEFE;
  color: #3c4c5c;
  font-weight: 400;
}

a {
  color: #3c4c5c;
  text-decoration: none;
}

img {
  max-width: 100% !important;
}

#main {
  margin-top: 85px;
}

@media (min-width: 768px) {
  #main {
    margin-top: 0;
  }
}

.section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section--plr {
  padding-left: 15px;
  padding-right: 15px;
}

.section--pt {
  padding-top: 60px;
}

.section--pb {
  padding-bottom: 60px;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
  /* 3 */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

@media (min-width: 769px) {
  .header {
    position: relative;
  }
}

.header > div {
  height: 85px;
  overflow: hidden;
  color: #fff;
  padding: 18.75px 0 22.5px 0;
  transition: height 0.3s;
  display: flex;
  flex-flow: column;
  background: #3c4c5c;
  position: relative;
}

@media (min-width: 769px) {
  .header > div {
    transition: none;
    overflow: visible;
    height: auto;
    padding: 45px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }
}

.nav-is-active .header > div {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding-bottom: 0;
}

.nav-is-active {
  overflow: hidden;
}

.header__logo {
  flex: none;
  margin: -5px 0 0 0;
  width: 100%;
  text-align: center;
  height: 70px;
}

.header__logo img {
  height: 50px;
}

@media (min-width: 769px) {
  .header__logo {
    height: auto;
    width: auto;
  }

  .header__logo img {
    height: 60px;
  }
}

.theme-group .header__logo img {
  height: 40px;
}

@media (min-width: 769px) {
  .theme-group .header__logo img {
    height: 50px;
  }
}

.header__nav-toggle {
  border: 3px solid #9c967f;
  position: absolute;
  left: 15px;
  top: 15px;
  padding-bottom: 5px;
  outline: 0;
}

@media (min-width: 769px) {
  .header__nav-toggle {
    display: none;
  }
}

.theme-design .header__nav-toggle {
  border: 3px solid #E8B875;
}

.theme-design .header__nav-toggle .hamburger-inner,
.theme-design .header__nav-toggle .hamburger-inner::before,
.theme-design .header__nav-toggle .hamburger-inner::after {
  background-color: #E8B875;
}

.theme-construction .header__nav-toggle {
  border: 3px solid #87A1B6;
}

.theme-construction .header__nav-toggle .hamburger-inner,
.theme-construction .header__nav-toggle .hamburger-inner::before,
.theme-construction .header__nav-toggle .hamburger-inner::after {
  background-color: #87A1B6;
}

.theme-homes .header__nav-toggle {
  border: 3px solid #A09C87;
}

.theme-homes .header__nav-toggle .hamburger-inner,
.theme-homes .header__nav-toggle .hamburger-inner::before,
.theme-homes .header__nav-toggle .hamburger-inner::after {
  background-color: #A09C87;
}

.header__nav {
  flex: 1;
}

.header__nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header__nav ul > li {
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__nav ul > li a {
  color: #fff;
  font-size: 22px;
  display: block;
  text-align: center;
}

.header__nav ul > li.construction {
  background: #87A1B6;
}

.header__nav ul > li.homes {
  background: #A09C87;
}

.header__nav ul > li.design {
  background: #E8B875;
}

.header__nav ul > li.contact {
  background: #87A1B6;
}

.theme-construction .header__nav ul > li:nth-child(odd) {
  background-color: #87A1B6;
}

.theme-design .header__nav ul > li:nth-child(odd) {
  background-color: #E8B875;
}

.theme-homes .header__nav ul > li:nth-child(odd) {
  background-color: #A09C87;
}

@media (min-width: 769px) {
  .header__nav {
    flex: none;
    height: auto;
  }

  .header__nav ul {
    display: flex;
    flex-flow: row;
  }

  .header__nav ul > li {
    flex: none;
    margin: 0 15px;
  }

  .header__nav ul > li:nth-child(odd) {
    background: none !important;
  }

  .header__nav ul > li a {
    font-size: 16px;
    color: #FEFEFE;
    padding: 3.75px 0;
    position: relative;
    transition: color 0.3s;
  }

  .header__nav ul > li a::after {
    transition: border 0.5s;
    left: 0;
    right: 0;
    content: "";
    position: absolute;
    bottom: 0;
    border-bottom: 1px solid transparent;
  }

  .header__nav ul > li a:hover,
  .header__nav ul > li.active a {
    background: none;
    color: #9c967f;
  }

  .header__nav ul > li a:hover::after,
  .header__nav ul > li.active a::after {
    border-bottom: 1px solid #9c967f;
  }

  .header__nav ul > li.group-home {
    padding: 0 15px 0 30px;
    border-left: 1px solid #fff;
  }

  .header__nav ul > li.group-home a {
    background: url(/assets/img/lawrie.svg?242d3aa2b6fbf2c800ba5053953f62c7) no-repeat top center;
    background-size: auto 25px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .header__nav ul > li.construction {
    background: none;
  }

  .header__nav ul > li.construction a:hover {
    color: #87A1B6;
  }

  .header__nav ul > li.construction a:hover::after {
    border-bottom: 1px solid #87A1B6;
  }

  .header__nav ul > li.homes {
    background: none;
  }

  .header__nav ul > li.homes a:hover {
    color: #A09C87;
  }

  .header__nav ul > li.homes a:hover::after {
    border-bottom: 1px solid #A09C87;
  }

  .header__nav ul > li.design {
    background: none;
  }

  .header__nav ul > li.design a:hover {
    color: #E8B875;
  }

  .header__nav ul > li.design a:hover::after {
    border-bottom: 1px solid #E8B875;
  }

  .header__nav ul > li.contact {
    background: none;
  }

  .theme-homes .header__nav ul > li a:hover,
  .theme-homes .header__nav ul > li.active a {
    color: #A09C87;
  }

  .theme-homes .header__nav ul > li a:hover::after,
  .theme-homes .header__nav ul > li.active a::after {
    border-bottom: 1px solid #A09C87;
  }

  .theme-design .header__nav ul > li a:hover,
  .theme-design .header__nav ul > li.active a {
    color: #E8B875;
  }

  .theme-design .header__nav ul > li a:hover::after,
  .theme-design .header__nav ul > li.active a::after {
    border-bottom: 1px solid #E8B875;
  }

  .theme-construction .header__nav ul > li a:hover,
  .theme-construction .header__nav ul > li.active a {
    color: #87A1B6;
  }

  .theme-construction .header__nav ul > li a:hover::after,
  .theme-construction .header__nav ul > li.active a::after {
    border-bottom: 1px solid #87A1B6;
  }
}

.footer {
  position: relative;
  background: #3c4c5c;
  color: #a9aeb3;
  padding: 30px 15px;
  text-align: center;
  font-size: 16px;
}

.footer a {
  color: #a9aeb3;
  text-decoration: none;
  display: block;
}

.footer a:hover {
  color: #fff;
}

.footer > * {
  margin-bottom: 15px;
}

.footer__logos {
  text-align: center;
}

@media (min-width: 768px) {
  .footer__logos {
    max-width: 900px;
    margin: 30px auto;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
  }
}

.footer__logos__lawrie img {
  height: 50px;
}

@media (min-width: 768px) {
  .footer__logos__lawrie img {
    margin: 15px;
    height: 70px;
  }
}

.footer__logos__groups {
  display: flex;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .footer__logos__groups {
    margin: 0;
  }
}

.footer__logos__groups img {
  height: 40px;
  margin: 0 7.5px;
}

@media (min-width: 768px) {
  .footer__logos__groups img {
    height: 50px;
  }
}

.footer__logos__social {
  display: flex;
  justify-content: center;
}

.footer__logos__social img {
  height: 40px;
  margin: 0 7.5px;
}

.footer__logos__social > a:hover {
  filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(5);
}

.footer__nav,
.footer__details {
  text-align: center;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .footer__nav,
  .footer__details {
    justify-content: center;
    display: flex;
    margin: 15px;
  }
}

.footer__nav > li,
.footer__details > li {
  text-align: center;
  position: relative;
  padding: 0 15px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer__nav > li,
  .footer__details > li {
    display: flex;
  }
}

.footer__nav > li a,
.footer__details > li a {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer__nav > li:before,
  .footer__details > li:before {
    position: absolute;
    right: 0;
    content: "|";
  }
}

.footer__nav > li:last-child:before,
.footer__details > li:last-child:before {
  content: none;
}

.b-logos {
  display: none;
}

@media (min-width: 768px) {
  .b-logos {
    display: block;
    margin-top: -53.75px;
  }

  .b-logos > ul {
    display: flex;
    flex-flow: row;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .b-logos > ul > li {
    margin: 0;
    padding: 3.75px;
  }

  .b-logos > ul img {
    height: 100px;
  }
}

.b-text {
  max-width: 630px;
  text-align: center;
  padding-right: 15px;
  padding-left: 15px;
}

.b-text h2 {
  display: table;
  margin: 0 auto 30px auto;
  padding: 7.5px 0;
  position: relative;
  border-top: 1px solid #9c967f;
  border-bottom: 1px solid #9c967f;
}

@media (min-width: 768px) {
  .b-3panels > div {
    padding: 0;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
  }
}

.b-3panels__panel {
  margin: 0 30px 30px 30px;
  background: #dee1e3;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media (min-width: 768px) {
  .b-3panels__panel {
    margin: 0;
    width: calc(33% - 15px);
  }
}

.b-3panels__panel__logo {
  height: 75px;
  margin-top: -50px;
  z-index: 1;
}

@media (min-width: 768px) {
  .b-3panels__panel__logo {
    display: none;
  }
}

.b-3panels__panel__image {
  position: relative;
}

.b-3panels__panel__image > img {
  width: 100%;
}

.b-3panels__panel__image > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #FEFEFE;
  background: rgba(60, 76, 92, 0.5);
  opacity: 1;
  display: flex;
  transition: opacity 0.5s;
}

.b-3panels__panel__image > div > span {
  margin: auto;
  font-size: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b-3panels__panel:hover .b-3panels__panel__image > div {
    opacity: 0;
  }
}

.b-3panels__panel > p {
  margin: 30px;
  color: #9c967f;
  font-size: 18px;
}

.b-3panels__panel a {
  margin-top: auto;
}

.b-3panels__panel a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.b-contact {
  max-width: none;
}

.b-contact__cta {
  background: url(/assets/tmp/contact_bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #FEFEFE;
  padding: 60px 15px 45px 15px;
}

.b-contact__cta > h2 {
  display: table;
  text-transform: uppercase;
  margin: 0 auto 30px auto;
  padding: 7.5px 0;
  position: relative;
  border-top: 1px solid #FEFEFE;
  border-bottom: 1px solid #FEFEFE;
}

.b-contact__cta > p {
  margin: 30px 0;
  font-size: 18px;
}

.b-contact__form {
  overflow: hidden;
  text-align: center;
  background: #87A1B6;
  max-height: 700px;
  transition: max-height 0.5s;
}

.b-contact__form .sent {
  text-transform: uppercase;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
}

.b-contact__form > form {
  max-width: 1023px;
  margin: 0 auto;
  padding: 30px 15px;
  position: relative;
}

.b-contact__form h2 {
  text-transform: uppercase;
}

.b-contact__form input,
.b-contact__form textarea {
  width: 100%;
  background: #dee1e3;
  padding: 7.5px;
  margin-top: 7.5px;
}

.b-contact__form input::-moz-placeholder, .b-contact__form textarea::-moz-placeholder {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
}

.b-contact__form input:-ms-input-placeholder, .b-contact__form textarea:-ms-input-placeholder {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
}

.b-contact__form input::placeholder,
.b-contact__form textarea::placeholder {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
}

@media (min-width: 768px) {
  .b-contact__form .split {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }

  .b-contact__form .split > * {
    flex: 1;
    max-width: calc(50% - 3.75px);
  }
}

.b-contact__form button {
  margin-top: 15px;
}

.b-contact.collapsed .b-contact__form {
  transition: none;
  max-height: 0;
}

.theme-design .b-contact__form {
  background: #E8B875;
}

.theme-construction .b-contact__form {
  background: #87A1B6;
}

.theme-homes .b-contact__form {
  background: #A09C87;
}

.b-hero {
  max-width: none;
  margin: 0;
  position: relative;
}

@media (min-width: 768px) {
  .b-hero {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.b-hero__slide {
  position: relative;
}

.b-hero__slide__image {
  min-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media (min-width: 768px) {
  .b-hero__slide__image {
    min-height: 0;
    max-height: calc(100vh - 200px);
  }
}

.b-hero__slide__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(60, 76, 92, 0.3), rgba(60, 76, 92, 0.5));
  padding: 15px;
}

@media (min-width: 768px) {
  .b-hero__slide__overlay {
    bottom: 60px;
  }
}

.b-hero__slide__overlay > * {
  margin-left: auto;
  margin-right: auto;
}

.b-hero__slide__overlay h1 {
  margin: 0;
  line-height: 1;
}

.b-hero__slide__overlay a {
  color: #fff;
  margin-top: 15px;
  display: block;
}

.b-hero .slick-dots {
  z-index: 1;
  position: absolute;
  right: 7.5px;
  bottom: 7.5px;
  display: flex;
  list-style: none;
}

@media (min-width: 768px) {
  .b-hero .slick-dots {
    right: 15px;
    bottom: 15px;
  }
}

.b-hero .slick-dots button {
  line-height: 0;
  font-size: 0;
  display: block;
  text-indent: -200vw;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-left: 7.5px;
  overflow: hidden;
  outline: 0;
}

@media (min-width: 768px) {
  .b-hero .slick-dots button {
    width: 20px;
    height: 20px;
    border-radius: 10px;
  }
}

.b-hero .slick-dots .slick-active button {
  background: #fff;
}

.b-hero .slick-arrow {
  z-index: 1;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 30px);
  height: 30px;
  width: 30px;
  border: 2px solid #fff;
  overflow: hidden;
  color: #fff;
  border-radius: 30px;
  outline: 0;
}

@media (min-width: 768px) {
  .b-hero .slick-arrow {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (min-width: 768px) {
  .b-hero .slick-arrow {
    top: calc(50% - 60px);
  }
}

@media (min-width: 768px) {
  .b-hero .slick-arrow {
    height: 60px;
    width: 60px;
    border: 3px solid #fff;
  }
}

.b-hero .slick-arrow.slick-disabled {
  display: none !important;
}

.b-hero .slick-prev {
  left: 7.5px;
}

@media (min-width: 768px) {
  .b-hero .slick-prev {
    left: 15px;
  }
}

.b-hero .slick-next {
  right: 7.5px;
}

@media (min-width: 768px) {
  .b-hero .slick-next {
    right: 15px;
  }
}

@media (min-width: 768px) {
  .b-child-listing-images > div {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
}

.b-child-listing-images__panel {
  margin: 0 30px 30px 30px;
  background: #dee1e3;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel {
    margin: 0 7.5px 15px 7.5px;
    width: calc(33% - 15px);
  }
}

.b-child-listing-images__panel__logo {
  height: 75px;
  margin-top: -50px;
  z-index: 1;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel__logo {
    display: none;
  }
}

.b-child-listing-images__panel__image {
  position: relative;
}

.b-child-listing-images__panel__image > img {
  width: 100%;
}

.b-child-listing-images__panel__image > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #FEFEFE;
  background: rgba(60, 76, 92, 0.5);
  opacity: 0.5;
  display: flex;
  transition: opacity 0.5s;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel__image > div {
    opacity: 0;
  }
}

.b-child-listing-images__panel__image > div > div {
  margin: auto;
}

.b-child-listing-images__panel__image > div > div > h3 {
  font-size: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel:hover .b-child-listing-images__panel__image > div {
    opacity: 1;
  }
}

.b-child-listing-images__panel a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .b-child-listing-panels > div {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
}

.b-child-listing-panels__panel {
  margin: 0 30px 30px 30px;
  background: #dee1e3;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media (min-width: 768px) {
  .b-child-listing-panels__panel {
    margin: 0 7.5px 15px 7.5px;
    width: calc(33% - 15px);
  }
}

.b-child-listing-panels__panel__logo {
  height: 75px;
  margin-top: -50px;
  z-index: 1;
}

@media (min-width: 768px) {
  .b-child-listing-panels__panel__logo {
    display: none;
  }
}

.b-child-listing-panels__panel__image {
  position: relative;
}

.b-child-listing-panels__panel__image > img {
  width: 100%;
}

.b-child-listing-panels__panel__image > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #FEFEFE;
  background: rgba(60, 76, 92, 0.5);
  opacity: 0.5;
  display: flex;
  transition: opacity 0.5s;
}

@media (min-width: 768px) {
  .b-child-listing-panels__panel__image > div {
    opacity: 1;
  }
}

.b-child-listing-panels__panel__image > div > span {
  margin: auto;
  font-size: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b-child-listing-panels__panel:hover .b-child-listing-panels__panel__image > div {
    opacity: 0;
  }
}

.b-child-listing-panels__panel > p {
  margin: 30px;
  color: #9c967f;
  font-size: 18px;
}

.b-child-listing-panels__panel a {
  margin-top: auto;
}

.b-child-listing-panels__panel a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .b-child-listing-images > div {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
}

.b-child-listing-images__panel {
  margin: 0 30px 30px 30px;
  background: #dee1e3;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel {
    margin: 0 7.5px 15px 7.5px;
    width: calc(33% - 15px);
  }
}

.b-child-listing-images__panel__logo {
  height: 75px;
  margin-top: -50px;
  z-index: 1;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel__logo {
    display: none;
  }
}

.b-child-listing-images__panel__image {
  position: relative;
}

.b-child-listing-images__panel__image > img {
  width: 100%;
}

.b-child-listing-images__panel__image > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #FEFEFE;
  background: rgba(60, 76, 92, 0.5);
  opacity: 0.5;
  display: flex;
  transition: opacity 0.5s;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel__image > div {
    opacity: 0;
  }
}

.b-child-listing-images__panel__image > div > div {
  margin: auto;
}

.b-child-listing-images__panel__image > div > div > h3 {
  font-size: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b-child-listing-images__panel:hover .b-child-listing-images__panel__image > div {
    opacity: 1;
  }
}

.b-child-listing-images__panel a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.text-uppercase {
  text-transform: uppercase;
}

.btn {
  font-size: 18px;
  display: inline-block;
  letter-spacing: 0.2em;
  border: 2px solid #9c967f;
  background: #9c967f;
  color: #FEFEFE;
  min-width: 150px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 7.5px 15px;
  margin: 0 0 30px 0;
  cursor: pointer;
}

.btn--centered {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

.btn:hover {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.btn--inverse {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.btn--inverse:hover {
  border: 2px solid #9c967f;
  background: #9c967f;
  color: #FEFEFE;
}

.theme-construction .btn {
  background-color: #87A1B6;
  border-color: #87A1B6;
}

.theme-construction .btn:hover {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.theme-construction .btn--inverse {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.theme-design .btn {
  background-color: #E8B875;
  border-color: #E8B875;
}

.theme-design .btn:hover {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.theme-design .btn--inverse {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.theme-homes .btn {
  background-color: #A09C87;
  border-color: #A09C87;
}

.theme-homes .btn:hover {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.theme-homes .btn--inverse {
  background: #FEFEFE;
  border-color: #3c4c5c;
  color: #3c4c5c;
}

.pt-2 {
  padding-top: 30px;
}

.pb-1 {
  padding-bottom: 15px;
}

.m-1 {
  margin: 15px;
}

