/*-- 0. Template Main  --------------------------------------------------------------------------------------*/
@font-face {
  font-family: NolanNextRegular;
  src: url('../fonts/nolan_next_light.woff');
  font-weight: 100;
}

@font-face {
  font-family: NolanNextRegular;
  src: url('../fonts/nolan_next_regular.woff');
  font-weight: 500;
}

@font-face {
  font-family: NolanNextRegular;
  src: url('../fonts/nolan_next_medium.woff');
  font-weight: 600;
}

@font-face {
  font-family: NolanNextRegular;
  src: url('../fonts/nolan_next_bold.woff');
  font-weight: 700;
}
/* Bradford Homes palette */
:root {
  --bh-color-primary: #03101c;
  --bh-color-accent: #d7df23;
  --bh-color-link: #815f99;
  --bh-color-charcoal: #333333;
  --bh-color-grey: #cccccc;
  --bh-color-offwhite: #f4f4f4;
  --bh-color-black: #000000;
  --bh-color-white: #ffffff;
  --bh-color-white-opaque: rgba(255, 255, 255, 0.65);
}
/**/

* {
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  background-color: #3a3a3a;
  background-color: #000000;
  font-family: NolanNextRegular, sans-serif;
  font-weight: 500;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  color: #1f2e49;
  margin: 0;
  color: var(--bh-color-charcoal);
}

p,
li,
a,
input,
textarea {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  line-height: 150%;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
.btn,
.button,
[role='button'] {
  cursor: pointer;
}

a {
  color: var(--bh-color-link);
  text-decoration: none;
}

a:hover {
  color: var(--bh-color-accent);
}

img {
  display: block;
  width: 100%;
}

img.img-1 {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  height: auto;
}

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

.site-maxwidth {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.panel-maxwidth {
  width: 1366px;
  max-width: 90%;
  margin: 0 auto;
}

/* .button {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #000;
  padding: 0 0 10px;
} */

.button {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  padding: 20px 18px;
  background-color: white;
  border-radius: 11px;
}

.btn {
  --btn-bg: #fff;
  --btn-color: #03101c;
  --btn-border: currentColor;
  --btn-radius: 40px;
  --btn-pad-block: clamp(6px, 1.6vw, 14px);
  --btn-pad-inline: clamp(18px, 6vw, 40px);
  --btn-font-size: clamp(11px, 1.2vw, 14px);
  --btn-border-width: 2px;
  --btn-border-hover: var(--btn-border);
  --btn-hover-bg: var(--btn-bg);
  --btn-hover-color: var(--btn-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  min-height: clamp(36px, 10vw, 48px);
  min-width: clamp(116px, 30vw, 250px);
  padding: var(--btn-pad-block) var(--btn-pad-inline);
  border-radius: var(--btn-radius);
  border: var(--btn-border-width) solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--btn-font-size);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  will-change: transform;
  transform: scale(1);
}

.btn,
.btn:visited,
.btn:hover,
.btn:focus-visible {
  color: var(--btn-color);
}


.btn:hover {
  transform: scale(1.02);
}

.btn:focus-visible {
  transform: scale(1.02);
  outline: 3px solid rgba(3, 16, 28, 0.25);
  outline-offset: 3px;
}

.btn--pill {
  --btn-radius: 999px;
}

.btn--round {
  --btn-radius: 50%;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.btn--sm {
  --btn-pad-block: clamp(6px, 1.4vw, 10px);
  --btn-pad-inline: clamp(12px, 4vw, 20px);
  --btn-font-size: clamp(10px, 1vw, 12px);
  min-width: auto;
}

.btn--md {
  --btn-pad-block: clamp(10px, 1.8vw, 16px);
  --btn-pad-inline: clamp(20px, 6vw, 36px);
  min-height: clamp(46px, 11vw, 54px);
}

.btn--lg {
  --btn-pad-block: clamp(14px, 2vw, 18px);
  --btn-pad-inline: clamp(28px, 8vw, 56px);
  min-height: clamp(50px, 12vw, 60px);
}

.btn--primary {
  --btn-bg: transparent;
  --btn-color: #fff;
  --btn-border: #fff;
  --btn-border-hover: #fff;
  --btn-hover-bg: rgba(255, 255, 255, 0.15);
  --btn-hover-color: #fff;
}

.btn--primary-fill {
  --btn-bg: var(--bh-color-primary);
  --btn-color: #fff;
  --btn-border: var(--bh-color-primary);
  --btn-border-hover: var(--bh-color-primary);
  --btn-hover-bg: var(--bh-color-primary);
}

.btn--secondary {
  --btn-bg: #fff;
  --btn-color: #03101c;
  --btn-border: #fff;
  --btn-border-hover: #fff;
  --btn-hover-bg: rgba(255, 255, 255, 0.9);
  --btn-hover-color: #03101c;
}

.btn--outline {
  --btn-bg: #fff;
  --btn-color: #03101c;
  --btn-border: #03101c;
  --btn-border-hover: #03101c;
  --btn-hover-bg: rgba(3, 16, 28, 0.08);
  --btn-hover-color: #03101c;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: #03101c;
  --btn-border: #03101c;
  --btn-border-hover: #03101c;
  --btn-hover-bg: transparent;
}

.btn--lift:hover,
.btn--lift:focus-visible {
  transform: scale(1.05);
}

.button-round {
  display: inline-block;
  border-radius: 30px;
  border: 1px solid var(--bh-color-charcoal);
  color: var(--bh-color-charcoal);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.button.gray {
  color: var(--bh-color-grey);
  border-color: var(--bh-color-grey);
}

.button.gray:hover {
  color: var(--bh-color-accent);
}

.phd-header__collection {
  margin-bottom: 18px;
}

.phd-header__collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: rgba(3, 16, 28, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.phd-header__collection-link:hover {
  color: var(--bh-color-primary);
}

.phd-header__collection-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  color: rgba(3, 16, 28, 0.45);
  transition: color 0.25s ease;
}

.phd-header__collection-icon svg {
  width: 12px;
  height: 12px;
}

.phd-header__collection-link:hover .phd-header__collection-icon {
  color: var(--bh-color-primary);
}

.phd-header__collection-label {
  line-height: 1;
}

.phd-header__anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: rgba(3, 16, 28, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.phd-header__anchor-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.phd-header__anchor-link:hover {
  color: var(--bh-color-primary);
}

.phd-header__anchor-link:hover::after {
  transform: translateX(2px) rotate(45deg);
}

@media (max-width: 767px) {
  .phd-header__collection {
    margin-bottom: 14px;
  }

  .phd-header__collection-link {
    gap: 6px;
    letter-spacing: 0.12em;
  }

  .phd-header__collection-icon {
    width: 18px;
    height: 18px;
  }

  .phd-header__collection-icon svg {
    width: 11px;
    height: 11px;
  }
}

.button-round.gray {
  color: var(--bh-color-grey);
  border-color: var(--bh-color-grey);
}

.button-round.white {
  color: #fff;
  border-color: #fff;
}

.button-round.dark {
  background-color: var(--bh-color-primary) !important;
  border-color: var(--bh-color-primary);
  color: #fff;
  font-weight: 600;
}

.button-round.dark:hover {
  color: var(--bh-color-accent);
}

/*-- X2. Template: Container Style Split Half --*/
.s20 > div,
.s25 > div,
.s30 > div,
.s33 > div,
.s35 > div,
.s40 > div,
.s45 > div,
.s50 > div,
.s55 > div,
.s60 > div,
.s65 > div,
.s66 > div,
.s70 > div,
.s80 > div {
  padding: 0 15px;
}

@media (min-width: 768px) {
  .row-split {
    display: flex;
    flex-wrap: wrap;
  }
  .s20 {
    flex: 0 0 20%;
  }
  .s25 {
    flex: 0 0 25%;
  }
  .s30 {
    flex: 0 0 30%;
  }
  .s33 {
    flex: 0 0 33.33%;
  }
  .s35 {
    flex: 0 0 35%;
  }
  .s40 {
    flex: 0 0 40%;
  }
  .s45 {
    flex: 0 0 45%;
  }
  .s50 {
    flex: 0 0 50%;
  }
  .s55 {
    flex: 0 0 55%;
  }
  .s60 {
    flex: 0 0 60%;
  }
  .s65 {
    flex: 0 0 65%;
  }
  .s66 {
    flex: 0 0 66.66%;
  }
  .s70 {
    flex: 0 0 70%;
  }
  .s80 {
    flex: 0 0 80%;
  }

  .rowpadd {
    padding: 60px 0;
  }

  .content-gap > div {
    padding: 30px 8%;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  p,
  li,
  a,
  input,
  textarea {
    font-size: 16px;
  }

  .button-round {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/*-- 0 Barba GSAP combined-------------------------------------------------------------------------------- --*/
/**/

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 6;
  color: #fff;
  transform: translateX(100%);
  pointer-events: none !important;
}

.page-transition img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 100%;
}

.page-transition .opaque {
  background: #0c1523;
  width: 100%;
  height: 100%;
  position: absolute;
  right: calc(-100% + 5px);
  top: 0;
}

.barba-leave-active,
.barba-enter-active {
  transition: opacity 450ms ease;
}

.barba-leave,
.barba-enter-to {
  opacity: 1;
}

.barba-enter,
.barba-leave-to {
  opacity: 0;
}

/*-- A. Header -------------------------------------------------------------------------------- --*/
/**/
/*
.loader {
  display: block;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 9999;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
*/
/**/
header {
  --bh-header-height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header .header-wrapper.panel-maxwidth {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: var(--bh-header-height);
  padding: 20px 6%;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

header.show-menu .header-wrapper.panel-maxwidth {
  opacity: 0;
  visibility: hidden;
}

main[data-barba='container'] {
  padding-top: var(--bh-header-height);
}

main[data-barba-namespace='home'] > :first-child {
  margin-top: calc(-1 * var(--bh-header-height));
}

header.header-solid {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 24px rgb(3 16 28 / 12%);
}

header.header-solid a.logo .logo-dark {
  opacity: 1;
}

header.header-solid a.logo .logo-light,
header.header-solid a.logo .logo-lightBlueEmbrace {
  opacity: 0;
}

header.header-solid .header-cta {
  --btn-color: var(--bh-color-primary);
  --btn-border: var(--bh-color-primary);
  --btn-border-hover: var(--bh-color-primary);
  --btn-bg: transparent;
  --btn-hover-bg: rgba(3, 16, 28, 0.07);
}

header.header-solid .header-cta:hover,
header.header-solid .header-cta:focus {
  --btn-hover-bg: rgba(3, 16, 28, 0.07);
}

body[data-page-header-style='lightBlueEmbrace'] header.header-solid .header-cta {
  --btn-color: #186db0;
  --btn-border: #186db0;
  --btn-border-hover: #186db0;
  --btn-hover-bg: rgba(24, 109, 176, 0.12);
}

body[data-page-header-style='lightBlueEmbrace'] header.header-solid .header-cta:hover,
body[data-page-header-style='lightBlueEmbrace'] header.header-solid .header-cta:focus {
  --btn-hover-bg: rgba(24, 109, 176, 0.12);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

header .header-brand {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-left: 6px;
}

header a.logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: clamp(34px, 9.5vw, 38px);
  width: 220px;
  max-width: 100%;
}

header a.logo > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 1s ease;
}

header a.logo > div img {
  display: block;
  width: auto;
  height: clamp(24px, 7vw, 30px);
  transition: height 0.2s ease, opacity 1s ease;
}

/* lightweight css logo behaviour */

/* display logo in dark or light */
body[data-page-header-style='dark'] header a.logo .logo-dark {
  opacity: 1;
}
body[data-page-header-style='light'] header a.logo .logo-light {
  opacity: 1;
}
body[data-page-header-style='lightBlueEmbrace']
  header
  a.logo
  .logo-lightBlueEmbrace {
  opacity: 1;
}

/* logo text is always visible */
header a.logo .text {
  opacity: 1;
}

.header-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-cta {
  --btn-bg: transparent;
  --btn-color: #fff;
  --btn-border: #fff;
  --btn-border-hover: #fff;
  --btn-hover-bg: rgba(255, 255, 255, 0.15);
  --btn-hover-color: #fff;
}

header:not(.header-solid) .header-cta {
  --btn-color: #fff;
  --btn-border: #fff;
  --btn-border-hover: #fff;
  --btn-hover-bg: rgba(255, 255, 255, 0.15);
  --btn-hover-color: #fff;
}

body[data-page-header-style='dark'] header:not(.header-solid) .header-cta {
  --btn-color: var(--bh-color-primary);
  --btn-border: var(--bh-color-primary);
  --btn-border-hover: var(--bh-color-primary);
  --btn-hover-bg: rgba(3, 16, 28, 0.08);
}

body[data-page-header-style='lightBlueEmbrace'] header:not(.header-solid) .header-cta {
  --btn-color: #186db0;
  --btn-border: #186db0;
  --btn-border-hover: #186db0;
  --btn-hover-bg: rgba(24, 109, 176, 0.12);
}

@media (max-width: 767px) {
  header {
    --bh-header-height: clamp(58px, 15vw, 72px);
  }

  header .header-wrapper.panel-maxwidth {
    padding: clamp(8px, 4vw, 12px) 4px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(8px, 3vw, 16px);
  }

  header .header-brand {
    flex: 1 1 auto;
  }

  header a.logo {
    width: clamp(140px, 40vw, 200px);
    height: clamp(32px, 10vw, 40px);
    display: flex;
    align-items: center;
  }

  header .header-actions {
    flex: 0 0 auto;
    width: auto;
    gap: clamp(6px, 3vw, 8px);
    margin-left: auto;
    padding-inline: 4px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }

  .header-cta {
    padding: 0 clamp(12px, 4vw, 20px);
    min-height: clamp(32px, 10vw, 36px);
    font-size: clamp(10px, 2.6vw, 11px);
    border-width: 1.5px;
    letter-spacing: 0.06em;
    min-width: 90px;
    font-weight: 500;
  }

  body header #menu .nav {
    width: clamp(30px, 9vw, 36px);
    height: clamp(30px, 9vw, 36px);
    padding: clamp(4px, 1.6vw, 7px);
  }

  #nav-icon3 {
    width: clamp(18px, 6vw, 20px);
    height: clamp(12px, 4.5vw, 16px);
  }

  header a.logo > div img {
    height: clamp(24px, 7vw, 28px);
  }
}

header #menu {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
}

/* display logo in white when menu is shown */
body header.show-menu a.logo .logo-dark {
  opacity: 0;
}
body header.show-menu a.logo .logo-lightBlueEmbrace {
  opacity: 0;
}
body header.show-menu a.logo .logo-light {
  opacity: 1;
}

header #menu .nav {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin: 0;
}

header #menu .nav img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease;
}

header #menu .nav img.nav-main {
  opacity: 1;
}

header #menu .nav img.nav-whiten {
  opacity: 0;
}

header #menu.whiten .nav img.nav-main {
  opacity: 0;
}

header #menu.whiten .nav img.nav-whiten {
  opacity: 1;
}

.phd-header .photo .links {
  height: auto;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 0;
  justify-content: center;
}

.phd-header .photo .links a.hit-footer-oh-no {
  opacity: 0;
  pointer-events: none;
}

.phd-header .photo .links a {
  opacity: 1;
  transition: opacity 0.2s ease;
  text-align: center;
  line-height: 120%;
}

.phd-header .photo .links .btn {
  margin-left: 5px;
  min-width: auto;
  --btn-pad-inline: clamp(12px, 4vw, 20px);
  --btn-pad-block: clamp(4px, 1.2vw, 8px);
}

.phd-header .photo .links a.dark.button-open-contact-sidebar {
}

/*-- Menu Icons --*/
#nav-icon3 {
  width: 20px;
  height: 16px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer !important;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--bh-color-primary);
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
  box-shadow: 2px 2px 2px #0000000a;
}

#nav-icon3 span:nth-child(1) {
  top: 10%;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 50%;
}

#nav-icon3 span:nth-child(4) {
  top: 90%;
}

body[data-page-header-style='light'] header:not(.header-solid) #menu #nav-icon3 span {
  background-color: #fff;
}

body[data-page-header-style='dark'] header:not(.header-solid) #menu #nav-icon3 span {
  background-color: var(--bh-color-primary);
}

body[data-page-header-style='lightBlueEmbrace'] header:not(.header-solid) #menu #nav-icon3 span {
  background-color: #186db0;
}

body header.show-menu #menu #nav-icon3 span {
  background-color: #fff;
}

body header.header-solid #menu #nav-icon3 span {
  background-color: var(--bh-color-primary);
}

body[data-page-header-style='lightBlueEmbrace'] header.header-solid #menu #nav-icon3 span {
  background-color: #186db0;
}

header.show-menu #nav-icon3 span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

header.show-menu #nav-icon3 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

header.show-menu #nav-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header.show-menu #nav-icon3 span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/**/

header #header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  padding: clamp(56px, 14vw, 96px) clamp(16px, 5vw, 32px) 30px;
  pointer-events: none;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.25s ease;
}

header.show-menu #header-menu {
  pointer-events: all;
  background-color: #040f1c;
}

header .header-inner {
  transition: opacity 0.2s ease;
}

header.show-menu .header-inner {
  opacity: 0.3;
}

header.show-menu .header-wrapper.panel-maxwidth {
  display: none;
}

header #header-menu.our-story-dropdown-active ul li a.highlight {
  color: #bcbec0;
}

header #header-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  width: max-content;
}

.header-menu-close {
  position: absolute;
  top: clamp(12px, 4vw, 20px);
  right: clamp(12px, 4vw, 20px);
  z-index: 1000;
  display: none;
}

header.show-menu .header-menu-close {
  display: block;
}

.header-menu-close .nav {
  width: clamp(32px, 9vw, 44px);
  height: clamp(32px, 9vw, 44px);
  padding: clamp(4px, 1.6vw, 8px);
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-close {
  position: relative;
  width: clamp(14px, 4vw, 20px);
  height: clamp(14px, 4vw, 20px);
}

.nav-icon-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transform-origin: center;
}

.nav-icon-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.nav-icon-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

header #header-menu ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

header #header-menu ul li a {
  color: #fff;
  display: block;
  text-align: right;
  font-size: 22px;
  font-weight: 400;
  width: max-content;
  opacity: 0;
  transform: translateX(-40px);
  padding: 3px 0;
  transition: filter 0.2s ease, color 0.2s ease;
}

header #header-menu ul li.home-icon a img {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}

header #header-menu ul li.has-sub a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

header #header-menu ul li.has-sub a img {
  display: block;
  height: auto;
  width: 8px;
  margin: 0 0 0 7px;
}

header #header-menu ul li.has-sub ul.sub {
  display: none;
  width: 100%;
}

header #header-menu ul li.has-sub.active ul.sub {
  display: block;
}

header #header-menu ul li ul.sub li {
  margin: 5px 0;
  margin: 0;
}

header #header-menu ul li ul.sub li a {
  margin-right: 3.4px;
  padding: 2px 12px 2px 0;
}

/*
header #header-menu ul li ul.sub li a::after{
  content: "•";
  display: block;
  width: 14px;
  margin-left: 15px;
}

*/

/*
header #header-menu ul li ul.sub li:nth-child(2) {
	animation-delay: 0.1s;
}
header #header-menu ul li ul.sub li:nth-child(3) {
	animation-delay: 0.2s;
}
header #header-menu ul li ul.sub li:nth-child(4) {
	animation-delay: 0.3s;
}
header #header-menu ul li ul.sub li:nth-child(5) {
	animation-delay: 0.4s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -5%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
*/

/*
header #header-menu ul li.fl-2 ul.sub li:last-child{
  margin: 5px 0 20px 0;
}
*/

/*
header #header-menu ul li:nth-child(1) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease 0s; }
header #header-menu ul li:nth-child(2) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .02s;}
header #header-menu ul li:nth-child(3) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .04s;}
header #header-menu ul li:nth-child(4) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .06s;}
header #header-menu ul li:nth-child(5) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .08s;}

header #header-menu ul li:nth-child(6) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease 0s;}

header #header-menu ul li:nth-child(7) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .1s;}
header #header-menu ul li:nth-child(8) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .12s;}
header #header-menu ul li:nth-child(9) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .14s;}
header #header-menu ul li:nth-child(10) a{ transform: translateX(-40px); transition: color .2s, opacity 1.5s .4s, transform .8s ease .16s;}
*/

header #header-menu ul li a:hover {
  cursor: pointer !important;
}

header #header-menu ul li.breaker {
  height: 0px;
}

header #header-menu ul li.fl-1 a:hover {
  color: var(--bh-color-accent);
}

header #header-menu ul li.fl-2 a:hover {
  color: var(--bh-color-accent);
}

/* header #header-menu ul li.fl-2 a {
  color: #bcbec0; 
} */

header #header-menu ul li a.highlight {
  color: var(--bh-color-accent);
}

header #header-menu ul li a.highlight.hide-highlight {
  color: #fff;
}

header #header-menu ul li.our-story ul.sub li a {
  color: #fff;
}

header #header-menu ul li.our-story ul.sub li a:hover {
  color: var(--bh-color-accent);
}

header #header-menu.our-story-dropdown-active ul li a {
  /* filter: blur(2px); */
  color: #bcbec0;
}

header #header-menu.our-story-dropdown-active ul li.our-story a {
  filter: none;
  color: var(--bh-color-accent);
}

header #header-menu.our-story-dropdown-active ul li a:hover {
  filter: none;
}

/*-- reusable --*/
main[data-barba] {
  position: relative;
}

@media (min-width: 768px) {
  header {
    --bh-header-height: 110px;
  }

  header .header-wrapper.panel-maxwidth {
    padding: 30px 6%;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .header-actions {
    width: auto;
    flex-wrap: nowrap;
    margin-left: auto;
    gap: 24px;
  }

  header a.logo {
    width: 320px;
    height: 60px;
  }

  header a.logo > div img {
    height: 60px;
  }


  header #header-menu ul li a {
    font-size: 25px;
    padding: 0;
  }

  header #header-menu {
  padding: calc(var(--bh-header-height) + 40px) 8% 90px;
  }

  #nav-icon3 {
    width: 24px;
    height: 18px;
  }
}

@media (min-width: 1000px) {
  header #header-menu ul li a {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  header {
    --bh-header-height: 130px;
  }

  header .header-wrapper.panel-maxwidth {
    padding: 40px 8%;
  }


  header #header-menu ul li a {
    font-size: 34px;
  }
}

/*-- B. Template Footer -------------------------------------------------------------------------------- --*/
footer {
  position: relative;
  background-color: var(--bh-color-primary) !important;
  color: #fff;
  padding: 70px 0 50px;
  width: 100% !important;
}

footer .info h2 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 30px;
}

footer .info .phone {
  display: table;
  color: var(--bh-color-accent);
}

footer .info .address {
  display: table;
  color: #fff;
  margin: 30px 0;
}

footer .info a.make-appointment {
  display: table;
  color: #fff;
  padding: 15px 0;
  margin: 30px 0 0;
  border-bottom: 2px solid #fff;
  transition-duration: 0.2s;
}

footer .info a.make-appointment:hover {
  color: var(--bh-color-accent);
}

footer .info .socials {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 0;
  margin-left: -10px;
}

footer .info .socials a {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition-duration: 0.2s;
}

footer .info .socials a:hover {
  transform: scale(1.08);
}

footer .info .socials a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .links {
  display: flex;
  margin-top: 50px;
}

footer .links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  width: max-content;
}

footer .links ul li a {
  color: #fff;
  display: block;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  transition-duration: 0.2s;
  width: fit-content;
}

footer .links ul li.breaker {
  height: 30px;
}

footer .links ul li.fl-2 a {
  color: #bcbec0;
}

footer .links ul li.fl-1 a.highlight {
  color: var(--bh-color-accent);
}

footer .links ul li.fl-1 a.highlight.hide-highlight {
  color: #fff;
}

footer .links ul li.fl-1 a:hover {
  color: var(--bh-color-accent);
}

footer .links ul li.fl-2 a:hover {
  color: var(--bh-color-accent);
}

footer .footer-bottom {
  text-align: center;
  margin: 90px auto 0;
}

footer .footer-bottom p.copyright {
  max-width: 90%;
  margin: 0 auto;
  line-height: 160%;
}

footer .footer-bottom p.copyright,
footer .footer-bottom p.copyright a {
  font-size: 12px;
  color: #bcbec0;
}

footer .footer-bottom p.copyright span.line {
  color: #777777;
  margin: 0 5px;
}

footer .footer-bottom p.copyright a {
  transition-duration: 0.2s;
}

footer .footer-bottom p.copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  footer {
    padding: 140px 0 80px;
  }

  footer .info h2 {
    font-size: 40px;
    margin: 0 0 50px;
  }

  footer .info .socials a {
    width: 40px;
    height: 40px;
  }

  footer .links {
    justify-content: flex-end;
    margin-top: 0;
  }

  footer .links ul li a {
    font-size: 26px;
    text-align: right;
    margin-left: auto;
  }

  footer .links ul li.breaker {
    height: 30px;
  }

  footer .footer-bottom p.copyright,
  footer .footer-bottom p.copyright a {
    font-size: 14px;
  }

  footer .footer-bottom p.copyright span.line {
    margin: 0 10px;
  }
}

/*-- C. Splash Loader ---------------------------------------------------------------------- --*/
#splash-loader {
  position: fixed;
  z-index: 100;
  background: #0c1523;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 1s ease;
  pointer-events: none;
  transform: translateX(100%);
}

#splash-loader.active {
  transform: translateX(0);
}

#splash-loader object {
  display: block;
  width: 60px;
  height: auto;
  margin: 0;
  padding: 0;
  transition: opacity 0.6s ease-out;
  opacity: 0;
}
/*animation: rotate 2s linear infinite;*/

#splash-loader object.active {
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*-- 1. Home -------------------------------------------------------------------------------- --*/
body[data-page-id='page-1360'] header a.logo {
}

#home-header {
  position: relative;
  padding: 0;
  height: 70vh;
  background-color: var(--bh-color-primary);
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
}
/*background-image: url('../images/site-bradfordhomes/bradford-home-slider-3.jpg');*/

#home-header a.logo img {
  width: 300px;
  height: 60px;
}

#home-header > .panel-maxwidth {
  position: relative;
  /*
  position: relative;
  padding-right: 15%;
  max-width: 75%; 
  height: 100%;
  display: flex;
  align-items: center;
*/

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
  top: 0;
  left: 0;
}

#home-header .header-side-sticky {
  border-color: #fff !important;
}

#home-header .sliders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

#home-header .sliders .slick-list {
  width: 100%;
  height: 100%;
}

#home-header .sliders .slick-list .slick-track {
  width: 100%;
  height: 100%;
}

#home-header .sliders .slick-list .slick-track .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#home-header .sliders .slider iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: fadeInAnimation ease 4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 1;
}

#home-header .sliders .slick-list .slick-track .slider > div {
  width: min(1366px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(14px, 5vw, 32px);
  box-sizing: border-box;
  z-index: 3;
}

/*
#home-header .sliders .slick-list .slick-track .slider > div.shader{
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgb(0 0 0 / 30%);
}
*/

#home-header .sliders .slider {
  opacity: 0;
}

#home-header .sliders.slick-initialized .slider {
  opacity: 1;
}

#home-header .sliders .slick-list .slick-track .slider > div .content h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 40%);
}

#home-header .sliders .slick-list .slick-track .slider > div .content h1 br {
  display: none;
}

#home-header
  .sliders
  .slick-list
  .slick-track
  .slider
  > div
  .content
  h1
  br::before {
  content: ' ';
}

#home-header .sliders .slick-list .slick-track .slider > div .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

#home-header
  .sliders
  .slick-list
  .slick-track
  .slider
  > div
  .content
  .buttons
  .btn {
  --btn-bg: #fff;
  --btn-color: #03101c;
  --btn-border: #fff;
  --btn-border-hover: #fff;
  --btn-hover-bg: rgba(255, 255, 255, 0.85);
  --btn-hover-color: #03101c;
  min-width: 170px;
  margin: 0;
}

@media (max-width: 767px) {
  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons
    .btn {
    min-height: clamp(40px, 12vw, 48px);
    min-width: clamp(140px, 48vw, 180px);
    --btn-pad-block: clamp(6px, 2.5vw, 10px);
    --btn-pad-inline: clamp(18px, 6vw, 26px);
  }
}

@media (max-width: 540px) {
  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons
    .btn {
    min-width: 0;
    width: 100%;
    --btn-pad-inline: clamp(16px, 10vw, 24px);
    --btn-pad-block: clamp(8px, 4vw, 12px);
  }
}

@media (min-width: 768px) {
  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons
    .btn {
    --btn-pad-block: 12px;
    --btn-pad-inline: 34px;
    --btn-font-size: 13px;
  }
}

@media (min-width: 1200px) {
  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons
    .btn {
    --btn-pad-block: 14px;
    --btn-pad-inline: 40px;
    --btn-font-size: 14px;
  }
}

#home-header .sliders ul.slick-dots {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
  position: absolute;
  right: 5%;
  left: 5%;
  bottom: 35px;
}

#home-header .sliders ul.slick-dots li {
  margin-right: 8px;
}

#home-header .sliders ul.slick-dots li button {
  font-size: 0;
  display: block;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  border: none;
  transition-duration: 0.2s;
}

#home-header .sliders ul.slick-dots li button[aria-selected='true'] {
  background-color: #fff;
}

#home-header .sliders ul.slick-dots li button:hover {
  background-color: #fff;
  cursor: pointer;
}

#home-header .side-scroll-down {
  display: none;
  position: absolute;
  padding: 0;
  top: unset;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  width: 1366px;
  max-width: 90%;
  margin: 0 auto;
  pointer-events: none !important;
}

#home-header .side-scroll-down p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

#home-header .content .buttons .contact-cta {
  background-color: var(--bh-color-white-opaque);
  border-color: transparent;
  color: var(--bh-color-charcoal);
}

/*-- ----- --*/
#home-featured-items {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

#home-featured-items .panel-maxwidth {
  position: relative;
  z-index: 2;
}

#home-featured-items > .panel-maxwidth {
}

#home-featured-items .featured-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}

#home-featured-items .featured-items .featured-item {
  flex: 0 0 100%;
  margin: 10px 0;
}

#home-featured-items .featured-items .featured-item .photo {
  display: block;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
}

#home-featured-items .featured-items .featured-item:nth-child(2) .photo img {
  object-position: 50% 30%;
}

#home-featured-items .featured-items .featured-item .photo img {
  display: block;
  transition-duration: 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-featured-items .featured-items .featured-item .photo:hover img {
  transform: scale(1.05);
}

#home-featured-items .featured-items .featured-item .content {
  color: #fff;
}

#home-featured-items .featured-items .featured-item .content > div {
  padding: 20px 10px 10px;
}

#home-featured-items .featured-items .featured-item .content h3 a {
  color: #fff;
  font-size: 28px;
}

#home-featured-items .featured-items .featured-item .content h3 a:hover {
  text-decoration: underline;
}

#home-featured-items .featured-items .featured-item .content p {
  color: #fff;
  margin: 10px 0;
}

#home-featured-items iframe {
  display: none;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 1;
}
/* height: Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
/* min-width: Given a 16:9 aspect ratio, 16/9*100 = 177.77 */

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*-- ----- --*/
#home-panel-introduction {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

#home-panel-introduction .row-split {
}

#home-panel-introduction .content .logo {
  display: block;
  width: 300px;
  height: 60px;
}

#home-panel-introduction .content .logo.show {
}

#home-panel-introduction .content .logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0);
}

#home-panel-introduction .content > div {
}

#home-panel-introduction .content h2 {
  margin: 0 0 20px;
}

/* #home-panel-introduction .content p {
} */

#home-panel-introduction .content a.button,
#home-panel-introduction .content .btn {
  display: table;
  margin: 40px 0 0;
}

#home-panel-introduction .content .btn {
  display: inline-flex;
}

#home-panel-introduction .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

#home-panel-introduction .content .buttons .button {
  display: inline-block;
  margin: 0;
}

#home-panel-introduction .content .buttons .btn {
  margin: 0;
}

#home-panel-introduction .content .buttons .button-round {
  margin: 0;
}

#home-panel-introduction .photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

#home-panel-introduction .photo > div {
  width: 100%;
  margin: 50px 0 0;
}

#home-panel-introduction .photo img {
  max-width: 600px;
}

#home-panel-introduction .photo .gsap-awards {
  display: flex;
  flex-wrap: nowrap;
}

#home-panel-introduction .photo .gsap-awards .award {
  position: relative;
  flex: 0 0 20%;
  padding-bottom: 20%;
  background: var(--bh-color-primary);
  object-fit: contain;
  overflow: hidden;
  border-radius: 50%;
}

#home-panel-introduction .photo .gsap-awards .award img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-panel-introduction .photo .gsap-awards .award.ga-1 {
  z-index: 5;
}
#home-panel-introduction .photo .gsap-awards .award.ga-2 {
  z-index: 4;
  transform: translateX(-50px);
}
#home-panel-introduction .photo .gsap-awards .award.ga-3 {
  z-index: 3;
  transform: translateX(-100px);
}
#home-panel-introduction .photo .gsap-awards .award.ga-4 {
  z-index: 2;
  transform: translateX(-150px);
}
#home-panel-introduction .photo .gsap-awards .award.ga-5 {
  z-index: 1;
  transform: translateX(-200px);
}

/*-- ----- --*/

#home-panel-kitchen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 6 / 4;
  max-height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
  width: 100%;
}

#home-panel-kitchen .featured-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-- ----- --*/
#home-panel-story {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

#home-panel-story > .panel-maxwidth {
  padding: 40px 0;
}

#home-panel-story h2 {
  margin: 0 15px;
}

#home-panel-story .story-panels {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -2%;
  width: calc(100vw - 10%);
}

#home-panel-story .story-panels:after {
  display: none;
  content: '';
  width: 30%;
  height: auto;
  background: linear-gradient(270deg, #fff 60%, transparent 100%);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

#home-panel-story .story-panels .panel {
  padding: 15px;
}

#home-panel-story .story-panels .panel .circle {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

#home-panel-story .story-panels .panel .circle a {
  display: block;
  background: var(--bh-color-charcoal);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#home-panel-story .story-panels .panel .circle line {
  height: 3px;
  background: var(--bh-color-charcoal);
  width: 120%;
  position: absolute;
}

#home-panel-story .story-panels .panel h3 {
  font-weight: 400;
  max-width: 300px;
}

#home-panel-story .switcher {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

#home-panel-story .switcher a {
  display: block;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  opacity: 0.2;
  transition-duration: 0.4s;
}

#home-panel-story .switcher a img {
  display: block;
  width: 100%;
  height: 100%;
}

#home-panel-story .switcher a.active {
  opacity: 1;
}

#home-panel-story .switcher a:hover {
  opacity: 1;
}

/*-- ----- --*/
#home-panel-featured-project {
  position: relative;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
}

#home-panel-featured-project > .panel-maxwidth {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

#home-panel-featured-project .featured-project-backgrounds {
  position: relative;
  height: 250px;
  width: 100%;
}

#home-panel-featured-project .featured-project-backgrounds img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition-duration: 0.2s;
  pointer-events: none;
}

#home-panel-featured-project .featured-project-backgrounds img.active {
  opacity: 1;
}

#home-panel-featured-project .featured-project-boxes {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  width: 100%;
  min-height: 300px;
}

#home-panel-featured-project .featured-project-boxes > div {
  position: relative;
  width: 100%;
  height: 100%;
}

#home-panel-featured-project .featured-project-boxes .featured-project-box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: fit-content;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition-duration: 0.2s;
  pointer-events: none;
}

#home-panel-featured-project
  .featured-project-boxes
  .featured-project-box.active {
  opacity: 1;
  pointer-events: all;
}

#home-panel-featured-project .featured-project-boxes p.fp-heading {
  color: #a7a9ac;
  margin: -10px 0 0;
}

#home-panel-featured-project .featured-project-boxes h2.fp-name {
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

#home-panel-featured-project .featured-project-boxes p.fp-description {
}

#home-panel-featured-project .featured-project-boxes .btn {
  margin: 30px 0 0;
  align-self: flex-start;
}

#home-panel-featured-project .featured-project-boxes .switcher {
  position: absolute;
  bottom: 40px;
  right: 30px;
}

#home-panel-featured-project .featured-project-boxes .switcher ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#home-panel-featured-project .featured-project-boxes .switcher ul li {
  margin-right: 8px;
}

#home-panel-featured-project .featured-project-boxes .switcher ul li a {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--bh-color-charcoal);
}

#home-panel-featured-project .featured-project-boxes .switcher ul li a.active {
  background: var(--bh-color-charcoal);
}

@media (max-width: 767px) {
  #home-header .sliders .slick-list .slick-track .slider > div .content .buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 20px;
  }

  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    .buttons
    .button {
    font-size: 11px;
    padding: 12px 14px;
    min-width: 0;
    white-space: nowrap;
  }
}

@media (min-width: 600px) {
  #home-header .sliders .slick-list .slick-track .slider > div .content h1 {
    font-size: 40px;
  }

  #home-featured-items .featured-items .featured-item {
    flex: 0 0 46%;
    margin: 0 2%;
  }
}

@media (min-width: 768px) {
  #splash-loader object {
    width: 120px;
  }

  #home-header {
    height: 100vh;
  }

  #home-header .sliders .slick-list .slick-track .slider > div .content h1 {
    font-size: 45px;
  }

  #home-header .sliders .slick-list .slick-track .slider > div .content h1 br {
    display: block;
  }

  #home-header
    .sliders
    .slick-list
    .slick-track
    .slider
    > div
    .content
    h1
    br::before {
    content: '';
    display: none;
  }

  #home-header .sliders ul.slick-dots {
    right: calc(10% + 40px);
    left: unset;
  }

  #home-header .sliders ul.slick-dots li button {
    width: 15px;
    height: 15px;
  }

  #home-header .side-scroll-down {
    display: block;
  }

  #home-featured-items {
    padding: 70px 0;
  }

  #home-featured-items .featured-items {
    margin: 0 -2%;
    max-width: 90%;
  }

  #home-featured-items .featured-items .featured-item .photo {
    height: 500px;
  }

  #home-featured-items .featured-items .featured-item .content > div {
    padding: 30px;
  }

  #home-panel-introduction {
    padding: 200px 0;
  }

  #home-panel-introduction .row-split {
    padding-right: 0;
  }

  #home-panel-introduction .content > div {
    padding-right: 10%;
  }

  #home-panel-introduction .content h2 {
    margin: 0 0 40px;
  }

  #home-panel-introduction .photo > div {
    margin: 0;
  }

  #home-panel-story > .panel-maxwidth {
    padding: 70px 0;
  }

  #home-panel-story h2 {
    margin: 0 0 10px;
  }

  #home-panel-story .switcher {
    margin: 40px 0 0;
  }

  #home-panel-story .switcher a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  #home-panel-story .story-panels .panel {
    padding: 30px;
  }

  #home-panel-story .story-panels .panel .circle {
    height: 150px;
  }

  #home-panel-story .story-panels .panel .circle a {
    width: 15px;
    height: 15px;
  }

  #home-panel-story .story-panels:after {
    display: block;
  }

  #home-panel-featured-project {
    height: 800px;
    padding: 0;
  }

  #home-panel-featured-project > .panel-maxwidth {
    justify-content: right;
  }

  #home-panel-featured-project .featured-project-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  #home-panel-featured-project .featured-project-boxes {
    width: 420px;
    height: 420px;
    margin-right: 15%;
  }

  #home-panel-featured-project .featured-project-boxes h2.fp-name {
    font-size: 40px;
    margin: 10px 0 20px;
  }
}

@media (min-width: 1000px) {
  #home-header .sliders .slick-list .slick-track .slider > div .content h1 {
    font-size: 55px;
  }

  #home-featured-items {
    padding: 180px 0;
  }

  #home-featured-items .featured-items .featured-item {
    flex: 0 0 29.33%;
    margin: 0 2%;
  }

  #home-featured-items iframe {
    display: block;
  }

  #home-panel-story > .panel-maxwidth {
    padding: 150px 0;
  }
}

@media (min-width: 1300px) {
  #home-header .sliders .slick-list .slick-track .slider > div .content h1 {
    font-size: 65px;
  }

  #home-featured-items {
    padding: 120px 0;
  }
}

/*-- 2. Generic Backpage -------------------------------------------------------------------------------- --*/
#generic-backpage-header {
  position: relative;
  overflow: hidden;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#generic-backpage-header > div.panel-maxwidth {
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}

#generic-backpage-header h1 {
  color: #fff;
  margin-top: 50px;
  font-weight: 500;
}

@media (min-width: 768px) {
  #generic-backpage-header {
    height: 600px;
  }

  #generic-backpage-header h1 {
    font-size: 65px;
  }
}

/**/

/*-- 3.1 Design Collection / Display Homes -------------------------------------------------------------------------------- --*/
#header-house-designs {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0 40px;
}

#header-house-designs.header-display-homes {
  padding-bottom: 0 !important;
}

#header-house-designs .house-map.fixed #map {
  position: fixed;
}

#header-house-designs .house-map.hitbot #map {
  position: absolute !important;
  bottom: 0 !important;
  top: unset !important;
}

#header-house-designs .sticky-hitbot {
  display: block;
  width: 100%;
  height: 100px;
}

#header-house-designs .panel-maxwidth > div {
  transition: padding-right 0.5s ease;
}

#header-house-designs.view-map .panel-maxwidth > div {
  display: flex;
  flex-wrap: wrap;
}

#header-house-designs.view-map .house-filters {
  flex: 0 0 100%;
}

#header-house-designs.view-map .house-list {
  flex: 0 0 100%;
  margin: 0.5% 0 0 0;
}

#header-house-designs.view-map .house-map {
  position: relative;
  overflow: hidden;
  flex: 0 0 48%;
  margin: 0.5% 0 0 2%;
  border-radius: 2px;
  width: 100%;
}

#header-house-designs.view-map .house-map #map {
  height: 700px;
  width: calc(1366px - 46%);
  width: 300px;
  width: 100%;
  top: 0;
  overflow: hidden;
}

#header-house-designs.view-map .house-list .house {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
}

#header-house-designs.house-listing-view-list .house-list .house-list-prompt {
  margin: 0;
}

#header-house-designs.house-listing-view-list .house-list .house {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 2px 10px rgb(4 15 28 / 20%);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

#header-house-designs.house-listing-view-list .house-list .house:last-of-type {
  margin-bottom: 0;
}

#header-house-designs.house-listing-view-list .house-list .house a.button-plan {
  left: 0;
  top: 0;
  border: none;
  font-size: 10px;
  padding: 10px 10px 5px 10px;
  right: auto;
}

#header-house-designs.house-listing-view-list .house-list .house .house-photo {
  flex: 0 0 100%;
  height: 250px;
  border-radius: 2px 0 0 2px;
  border: none;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content {
  flex: auto;
  flex-wrap: wrap;
  padding: 30px 5%;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .left {
  flex: 0 0 100%;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .left
  h2 {
  font-size: 22px;
  font-weight: 500;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .left
  ul
  li
  img {
  height: 15px;
  width: 15px;
  margin: 0 5px 0 0;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .left
  ul
  li
  span {
  font-size: 14px;
  font-weight: 600;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .right {
  width: 100%;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .right
  .buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .right
  .buttons
  .button-round {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  padding: 2px 4px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 600;
  margin: 10px 0 0;
  width: fit-content;
}

#header-house-designs.house-listing-view-list
  .house-list
  .house
  .house-content
  .right
  .buttons
  .button-round.map {
  margin-right: 12px;
  display: none;
}

/*
#header-house-designs.house-listing-view-list .house-list .house .house-content .display-village-hr,
#header-house-designs.house-listing-view-list .house-list .house .house-content .display-village-address,
#header-house-designs.house-listing-view-list .house-list .house .house-content .display-village-open-hours{
  display: none;
}
*/

/**/

.house-filters {
  margin: 0 0 24px;
}

.house-filters h1 {
  font-weight: 400;
  font-size: 25px;
  margin: 10px 0;
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .house-filters {
    margin-bottom: 18px;
  }

  .house-filters h1 {
    font-size: 22px;
  }
}


.house-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5%;
}

.house-list .house-list-prompt {
  flex: 0 0 100%;
  margin: 0 0.5% 0;
  font-size: 14px;
  color: #919191;
  text-align: left;
}

.house-list .house-list-prompt.active {
  margin-bottom: 20px;
}

.house-list .house-list-prompt p {
  margin: 0;
}

.house-list .house {
  position: relative;
  overflow: hidden;
  flex: 0 0 99%;
  margin: 0.5%;
  word-break: break-word;
}

/* .house-list .house.hide {
} */

.house-list .house .house-photo {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--house, #e7e7e7) center / cover no-repeat;
  height: auto;
  aspect-ratio: 10 / 8;
  transition: height 2s ease;
  border-radius: 10px;
}

.house-list .house .house-photo.is-status-sold,
.house-list .house .house-photo.is-status-under-offer {
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, cover;
  background-position: center 0, center;
  background-origin: border-box;
  background-clip: border-box;
  padding-top: 0;
}

.house-list .house .house-photo.is-status-sold {
  background-image: url("/images/sold-house-and-land.png"),
    var(--house, #e7e7e7);
}

.house-list .house .house-photo.is-status-under-offer {
  background-image: url("/images/house-and-land-under-offer.png"),
    var(--house, #e7e7e7);
}

.house-list .house .house-photo:hover img {
  transform: scale(1.05);
}

.house-list .house .house-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 2px;
  transition: opacity 0.5s ease, transform 2s ease;
}

#header-house-designs.house-listing-view-list .house-list .house .house-photo img.thumbnail {
  opacity: 1;
}

.house-list .house .house-photo img.thumbnail {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 2s ease;
  object-position: 50% 100%;
  background-color: #fff;
}

.house-list .house .house-photo img.floorplan {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  background-color: #fff;

  opacity: 0;
  transition: transform 0.5s ease;
}

.house-list .house.show-plan img.thumbnail {
  opacity: 0;
}

.house-list .house.show-plan .house-photo {
  background-image: none;
  background-color: #fff;
}

.house-list .house.show-plan .house-photo img.floorplan {
  opacity: 1;
}

.house-list .house.show-plan a.button-plan {
  color: var(--bh-color-primary);
  border-color: var(--bh-color-primary);
  text-shadow: none;
  transition: color 1s ease, border-color 1s ease;
}

.house-list .house a.button-plan {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 0 2px 5px;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #fff;
  text-shadow: 2px 2px 10px #00000040;
}

.house-list .house a.button-plan span::selection {
  background-color: transparent;
}

.house-list .house a.button-plan:hover,
.house-list .house a.button-plan span:hover {
  cursor: pointer !important;
}

.house-list .house .house-content {
  padding: 20px 10px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: flex-start;
}

.house-list .house .house-content .left h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 5px;
}

.house-list .house .house-content .left {
  min-width: 0;
}

.house-list .house .house-content .left h2 span.display-village-title-breaker {
  font-size: 0.6em;
  margin: 0 6px;
  color: #ccc;
}

.house-list .house .house-content .left .display-village-address {
  margin: 0;
}

.house-list .house .house-content .left .display-village-open-hours {
  margin: 0 0 15px;
}

.house-list .house .house-content .left .display-village-address,
.house-list .house .house-content .left .display-village-open-hours {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 14px;
}

.house-list .house .house-content .left .display-village-address a,
.house-list .house .house-content .left .display-village-open-hours a {
  font-size: 15px;
  color: #000000;
}

.house-list .house .house-content .left .display-village-address img,
.house-list .house .house-content .left .display-village-open-hours img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  margin: 0 5px 0 0;
}

.house-list .house .house-content .left hr.display-village-hr {
  margin: 15px 0 10px;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #dedede;
  margin: 10px 0;
  padding: 0;
}

.house-list .house .house-content .left ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.house-list .house .house-content .left ul li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 10px;
}

.house-list .house .house-content .left ul li:nth-of-type(1) {
  padding-right: 12px;
}

.house-list .house .house-content .left ul li sup {
  vertical-align: top;
  position: relative;
  top: -0.5em;
  font-size: 0.7em;
}

.house-list .house .house-content .left ul li img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  margin: 0 2px 0 0;
}

.house-list .house .house-content .right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.house-list .house .house-content .right .btn {
  margin-top: 10px;
  width: auto;
  min-width: auto;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  --btn-font-size: clamp(10px, 1vw, 12px);
}

@media (max-width: 500px) {
  .house-list .house .house-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .house-list .house .house-content .right {
    justify-content: flex-start;
  }
}

@media (min-width: 720px) {
  .house-list .house .house-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .house-list .house .house-content .left {
    flex: 1 1 220px;
    min-width: 0;
  }

  .house-list .house .house-content .right {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
  }
}

@media (min-width: 600px) {
  .house-list .house {
    flex: 0 0 49%;
  }
}

@media (min-width: 768px) {
  #header-house-designs {
    padding: 160px 0 30px;
  }

  #header-house-designs.view-map .house-list {
    flex: 0 0 50%;
  }

  #header-house-designs .panel-maxwidth > div {
    padding-right: 0;
  }

  #header-house-designs.house-listing-view-list
    .house-list
    .house
    .house-content
    .right
    .buttons
    .button-round.map {
    display: block;
  }

  .house-filters h1 {
    font-size: 35px;
  }

  .house-list .house .house-content {
    display: flex;
  }

  .house-list .house .house-content .left .display-village-address,
  .house-list .house .house-content .left .display-village-open-hours {
    font-size: 15px;
  }

  .house-list .house .house-content .left ul li img {
    height: 22px;
    width: 22px;
    margin: 0 10px 0 0;
  }

  .house-list .house .house-content .left ul li span {
    font-size: 15px;
  }

  .house-list .house .house-content .right .button-round {
    margin-top: 15px;
    width: 35px;
  }
}

@media (min-width: 1000px) {
  #header-house-designs {
    padding: 250px 0 80px;
  }
}

@media (min-width: 1200px) {
  #header-house-designs.house-listing-view-list .house-list .house {
    flex-wrap: nowrap;
  }

  #header-house-designs.house-listing-view-list
    .house-list
    .house
    .house-photo {
    flex: 0 0 270px;
    height: 100%;
  }
}

@media (min-width: 1300px) {
  #header-house-designs {
    padding: 300px 0 100px;
  }
}

@media (min-width: 1800px) {
  #header-house-designs .panel-maxwidth > div {
    padding-right: 0;
  }
}

/*-- 3.2 House Designs INDIVIDUAL -------------------------------------------------------------------------------- --*/
.page-house-design {
  background-color: #fff;
}

.page-house-design header .header-wrapper.panel-maxwidth {
  width: 100%;
  transition: width 1s ease;
}

  width: 1366px;
}

.page-house-design .phd-header .logo {
  width: 300px;
  top: 40px;
  position: absolute;
  margin-left: 2px;
  display: none;
}

.phd-header {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 0;
  flex-direction: column-reverse;
  z-index: 2;
  flex-wrap: wrap;
}

.phd-header .content {
  display: block;
  align-items: center;
  height: 100%;
  width: 1366px;
  max-width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 50px 0 0;
  overflow: visible;
}
/* background: red; */

.phd-header .content > div {
  flex: 0 0 35%;
}

.phd-header .content h1 {
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 20px;
}

.phd-header .content .buttons {
  margin: 30px 0 0;
}

.page-house-design .phd-header .content .buttons {
  display: none;
  margin: 25px 0 0;
}

.phd-header .content .buttons a {
  margin-right: 15px;
  /* padding: ; */
}

.phd-header .content .opening-hours p {
  display: flex;
  flex-wrap: nowrap;
  align-items: unset;
  font-size: 14px;
  margin: 8px 0;
}

.phd-header .content .opening-hours p img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  margin: 0 5px 0 0;
}

.phd-header .content .opening-hours p a {
  color: #000;
  font-size: 14px;
}

.phd-header .content .opening-hours p a:hover {
  text-decoration: underline;
}

.phd-header .photo {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.phd-header .photo img {
  width: 100%;
  min-height: 400px;
  height: auto;
  object-fit: cover;
  background: #e9e9e9;
}

.phd-header .photo.hero {
  background: var(--house, #e9e9e9) center / cover no-repeat;
  min-height: 400px;
}

.phd-header .photo.hero.is-status-sold,
.phd-header .photo.hero.is-status-under-offer {
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, cover;
  background-position: center 0, center;
}

.phd-header .photo.hero.is-status-sold {
  background-image: url("/images/sold-house-and-land.png"),
    var(--house, #e9e9e9);
}

.phd-header .photo.hero.is-status-under-offer {
  background-image: url("/images/house-and-land-under-offer.png"),
    var(--house, #e9e9e9);
}

.phd-header .photo.hero img {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  margin: -1px;
}

.phd-featured-photo {
  position: relative;
  overflow: hidden;
}
/**/

.phd-header-video {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 0;
  height: 70vh;
  z-index: 2;
}

.phd-header-video .content {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phd-header-video .content > div {
  max-width: 450px;
  padding: 0 10%;
  margin: 0 auto;
}

.phd-header-video .content h1 {
  font-weight: 500;
  font-size: 50px;
}

.phd-header-video .content .buttons {
  margin: 30px 0 0;
}

.phd-header-video .content .buttons a {
  margin-right: 10px;
}

.phd-header-video .video {
  position: relative;
  flex: 0 0 60%;
  overflow: hidden;
  border-bottom-left-radius: 180px;
  background-color: #01060c;
}

.phd-header-video .video iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 1;
}

/**/
.page-house-design #phd-floorplan-and-specs {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-house-design #phd-floorplan-and-specs > div.panel-maxwidth {
  padding: 0 0 40px 0;
}

.page-house-design #phd-floorplan-and-specs > div.panel-maxwidth > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition-duration: 0.2s;
}

.page-house-design #phd-floorplan-and-specs .floorplan {
  flex: 0 0 100%;
}

.page-house-design #phd-floorplan-and-specs .floorplan img {
  width: 100%;
  max-height: 1100px;
  margin: 0 auto;
  object-fit: contain;
}

.page-house-design #phd-floorplan-and-specs .content {
  flex: 0 0 90%;
  overflow: hidden;
  padding: 0 0 30px;
}

.page-house-design #phd-floorplan-and-specs .content > h3 {
  display: none;
  margin: 0 0 20px;
}

.page-house-design #phd-floorplan-and-specs .set-of-icons {
  display: none;
}

.page-house-design .set-of-icons {
  margin: 0 0 15px;
}

.page-house-design .set-of-icons ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.page-house-design .set-of-icons.contact ul {
  flex-wrap: wrap;
}

.page-house-design .set-of-icons.contact ul li {
  margin-bottom: 10px;
}

.page-house-design .set-of-icons.contact ul li span {
  word-break: break-word;
}

.page-house-design .set-of-icons ul li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 10px;
}

.page-house-design .set-of-icons ul li:nth-of-type(1) {
  padding-right: 12px;
}

.page-house-design .set-of-icons ul li img {
  height: 16px;
  width: 16px;
  margin: 0 3px 0 0;
  object-fit: contain;
}

.page-house-design .set-of-icons.contact ul li img {
  height: 15px;
  width: 15px;
  object-fit: contain;
  margin: 0 10px 0 0;
}

.page-house-design .set-of-icons ul li sup {
  vertical-align: top;
  position: relative;
  top: -0.5em;
  font-size: 0.7em;
}

.page-house-design .set-of-icons ul li span {
  font-size: 14px;
}

.page-house-design #phd-floorplan-and-specs .content .floorplan-table {
  margin-top: 5px;
}

.page-house-design #phd-floorplan-and-specs .content .floorplan-table p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #8d8d8d;
  padding: 10px 0;
  margin: 5px 0;
}

.page-house-design #phd-floorplan-and-specs .content .listing-description {
  text-align: left;
  color: var(--bh-color-charcoal);
  line-height: 140%;
  font-size: 14px;
}

.page-house-design #phd-floorplan-and-specs .content .listing-description p {
  margin: 0;
}

#phd-customise {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 50px 10% 60px;
}

#phd-customise h2 {
  font-weight: 500;
  margin: 0 0 20px;
}

#phd-customise p {
  max-width: 450px;
  margin: 0 auto;
}

#phd-customise .button,
#phd-customise .btn {
  display: table;
  margin: 20px auto 0;
}

.phd-customise__spacer {
  width: 100%;
  height: 20px;
}

.mobile-only-back-button {
  display: block;
  text-align: center;
  margin: 0 0 60px;
}

.mobile-only-back-button .btn {
  min-width: auto;
  width: auto;
  --btn-pad-block: 8px;
  --btn-pad-inline: 18px;
}

.page-house-design .phd-display-home-map {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 80px auto 10px;
  text-align: center;
}

.page-house-design .phd-display-home-map .phd-dhm-iframe {
  max-width: 1100px;
  margin: 0 auto;
}

.page-house-design .phd-display-home-map h3 {
  margin: 0 0 20px;
}

.page-house-design .phd-display-home-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 2px;
}

.page-house-design .phd-featured-photo img {
  object-fit: cover;
  object-position: 50% 70%;
  max-height: 750px;
}

/**/

/*-- ----- --*/
#design-panel-gallery {
  position: relative;
  background-color: #fff;
  padding: 0;
}

#design-panel-gallery .panel-maxwidth {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0 0;
  max-width: 70%;
  margin: 0 auto;
}

#design-panel-gallery .switcher-and-counter {
  position: relative;
  overflow: hidden;
}

#design-panel-gallery .switcher-and-counter .counter p {
  color: #e1e1e1;
  font-size: 30px;
  letter-spacing: -2px;
  font-weight: 500;
  margin: 0;
}

#design-panel-gallery .switcher-and-counter .counter p span.current {
  margin-right: 10px;
}

#design-panel-gallery .switcher-and-counter .counter p span.total {
  margin-left: 10px;
}

#design-panel-gallery .gallery-panels {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#design-panel-gallery .gallery-panels .panel {
  padding: 0;
  margin: 0 5px;
  width: 300px;
  height: auto;
  aspect-ratio: 10 / 8;
  overflow: hidden;
}

#design-panel-gallery .gallery-panels .panel a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition-duration: 0.2s;
}

#design-panel-gallery .gallery-panels .panel.slick-current a img {
  opacity: 1;
}

#design-panel-gallery .gallery-panels .panel a img:hover {
  transform: scale(1.04);
  transition-duration: 0.5s;
  opacity: 1;
}

#design-panel-gallery .switcher {
  display: flex;
  flex-wrap: wrap;
}

#design-panel-gallery .switcher a {
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  opacity: 0.2;
  transition-duration: 0.4s;
}

#design-panel-gallery .switcher a img {
  display: block;
  width: 100%;
  height: 100%;
}

#design-panel-gallery .switcher a.active {
  opacity: 1;
}

#design-panel-gallery .switcher a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .page-house-design #phd-floorplan-and-specs > div.panel-maxwidth {
    padding: 0 0 40px 0;
  }

  .page-house-design #phd-floorplan-and-specs > div.panel-maxwidth > div {
    padding: 0 10% 0 0;
  }

  .page-house-design #phd-floorplan-and-specs .floorplan {
    flex: 0 0 60%;
    padding-right: 5%;
  }

  .page-house-design #phd-floorplan-and-specs .content {
    flex: 0 0 35%;
    padding: 50px 0;
  }

  .page-house-design #phd-floorplan-and-specs .content > h3 {
    display: block;
  }

  .page-house-design #phd-floorplan-and-specs .set-of-icons {
    display: block;
  }

  .page-house-design #phd-floorplan-and-specs .content .floorplan-table {
    margin-top: 40px;
  }

  .page-house-design #phd-floorplan-and-specs .content .listing-description {
    font-size: 16px;
  }

  .page-house-design .set-of-icons {
    margin: 0 0 30px;
  }

  .page-house-design .set-of-icons ul li img {
    height: 28px;
    width: 28px;
    margin: 0 10px 0 0;
  }

  .page-house-design .phd-header .content .buttons {
    display: block;
    margin: 40px 0 0;
  }

  #design-panel-gallery .gallery-panels .panel {
    width: 500px;
  }

  #design-panel-gallery .switcher a {
    width: 45px;
    height: 45px;
  }

  #design-panel-gallery .panel-maxwidth {
    padding: 30px 0 0 0;
  }

  #design-panel-gallery .gallery-panels {
    margin: 0 0 0 10%;
    width: calc(100vw - 10%);
  }

  #design-panel-gallery .switcher-and-counter .counter p {
    font-size: 30px;
  }

  .phd-header {
    flex-direction: row-reverse;
    min-height: 600px;
    height: calc(100vh - 90px);
  }

  .phd-header .content {
    display: flex;
    position: absolute;
    padding: 0;
    max-width: 90%;
  }

  .phd-header .content h1 {
    font-size: 40px;
  }

  .phd-header .photo {
    flex: 0 0 50%;
  }

  .phd-header .photo img {
    border-bottom-left-radius: 180px;
    height: 100%;
    object-position: 50% 100%;
  }

  .phd-header .content .opening-hours p,
  .phd-header .content .opening-hours p a {
    font-size: 16px;
  }

  #phd-customise {
    padding: 140px 0 160px;
  }

  #phd-customise h2 {
    margin: 0 0 50px;
  }

  #phd-customise .button {
    margin: 60px auto 0;
  }

  .mobile-only-back-button {
    display: none;
  }
}

@media (min-width: 1200px) {
  #design-panel-gallery .gallery-panels .panel {
    width: 800px;
  }

  .phd-header .photo {
    flex: 0 0 55%;
  }

  .phd-header .content h1 {
    font-size: 50px;
  }
}

@media (min-width: 1800px) {
  .page-house-design #phd-floorplan-and-specs > div.panel-maxwidth > div {
    padding: 0;
  }

  .page-house-design #phd-floorplan-and-specs .floorplan {
    flex: 0 0 50%;
  }

  .page-house-design #phd-floorplan-and-specs .content {
    flex: 0 0 45%;
    padding: 100px 0 60px;
  }
}

/*-- 4. Page Gallery -------------------------------------------------------------------------------- --*/
.phd-header-video.phd-header-gallery {
  background: var(--bh-color-primary);
  color: #fff;
}

.phd-header-video.phd-header-gallery h1 {
  color: #fff;
}

#page-gallery {
  position: relative;
  padding: 20px 0;
  background: var(--bh-color-primary);
}

#page-gallery .header-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  padding-top: 100px;
}

#page-gallery .header-gallery h1 {
  color: #fff;
}

#page-gallery .header-gallery ul.switchers {
  list-style-type: none;
  margin: 30px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#page-gallery .header-gallery ul.switchers li {
  margin: 5px 10px 5px 0;
}

#page-gallery .header-gallery ul.switchers li:last-of-type {
  margin-right: 0;
}

#page-gallery .header-gallery ul.switchers li a {
  display: block;
  transition-duration: 0.4s;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 6px;
  width: 85px;
  color: #fff;
  text-transform: lowercase;
}

#page-gallery .header-gallery ul.switchers li a.active {
  color: var(--bh-color-accent);
  border-color: var(--bh-color-accent);
}

/**/
#page-gallery h1 {
  color: #fff;
}

#page-gallery .gallery-content {
  color: #fff;
  max-width: 800px;
  margin: 0 0 40px;
}

#page-gallery .gallery-content p {
  color: #fff;
}

#page-gallery .gallery-group {
  margin: 40px 0;
}

#page-gallery .gallery-group h2 {
  color: #fff;
  margin: 0 0 20px;
}

#page-gallery .gallery-group .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5%;
}

#page-gallery .gallery-group .gallery a {
  display: none;
  position: relative;
  overflow: hidden;
  /*flex: 0 0 100%;
  margin: 10px 0;*/
  flex: 0 0 49%;
  margin: 0.5%;
  background: #030b15;
  aspect-ratio: 10 / 8;
  height: auto;
  border-radius: 2px;
}

#page-gallery
  .gallery-group[data-gallery-group='all']
  .gallery
  a[data-gallery-group='all'],
#page-gallery
  .gallery-group[data-gallery-group='1595']
  .gallery
  a[data-gallery-group='1595'],
#page-gallery
  .gallery-group[data-gallery-group='1596']
  .gallery
  a[data-gallery-group='1596'],
#page-gallery
  .gallery-group[data-gallery-group='1597']
  .gallery
  a[data-gallery-group='1597'],
#page-gallery
  .gallery-group[data-gallery-group='1598']
  .gallery
  a[data-gallery-group='1598'],
#page-gallery
  .gallery-group[data-gallery-group='1599']
  .gallery
  a[data-gallery-group='1599'],
#page-gallery
  .gallery-group[data-gallery-group='1600']
  .gallery
  a[data-gallery-group='1600'] {
  display: block;
}

#page-gallery .gallery-group .gallery a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

#page-gallery .gallery-group .gallery a img:hover {
  transform: scale(1.1);
}

@media (min-width: 600px) {
  #page-gallery .gallery-group .gallery a {
    flex: 0 0 49%;
    margin: 0.5%;
  }
}

@media (min-width: 768px) {
  #page-gallery .header-gallery {
    max-width: 90%;
    padding-top: 200px;
  }

  #page-gallery .gallery-group {
    margin: 80px 0;
    max-width: 90%;
  }

  #page-gallery .gallery-content {
    margin: 0 0 80px;
  }

  #page-gallery .header-gallery ul.switchers {
    margin: 0;
  }
}

@media (min-width: 1000px) {
  #page-gallery {
    padding: 60px 0 30px;
  }

  #page-gallery .gallery-group .gallery a {
    flex: 0 0 32.33%;
    margin: 0.5%;
  }
}

/*-- 6. Page - Our Story -------------------------------------------------------------------------------- --*/

body[data-page-id='page-1376'] #our-story {
  padding: 150px 0 0;
  transition-duration: 0.2s;
  background: #3c4145;
}

body[data-page-id='page-1376'] #our-story .content {
  z-index: 1;
  position: relative;
  color: #fff;
}

body[data-page-id='page-1376'] #our-story .content h1 {
  color: #fff;
  margin-bottom: 30px;
}

body[data-page-id='page-1376'] #our-story .content .text {
  width: 100%;
}

body[data-page-id='page-1376'] #our-story .content .text .signature {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

body[data-page-id='page-1376'] #our-story .photo {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

body[data-page-id='page-1376'] #our-story .photo img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body[data-page-id='page-1376'] #our-story .photo img.mobile {
  display: block;
}

body[data-page-id='page-1376'] #our-story .photo img.desktop {
  display: none;
}

/**/

body[data-page-id='page-1376'] .our-story-table table {
  border-collapse: collapse;
  width: 100%;
}

body[data-page-id='page-1376'] .our-story-table th,
body[data-page-id='page-1376'] .our-story-table td {
  border-bottom: 1px solid black;
  padding: 12px;
  text-align: left;
}

body[data-page-id='page-1376'] .our-story-table th {
  font-weight: bold;
}

/**/

body[data-page-id='page-1376'] .dark {
  background: var(--bh-color-primary) !important;
  color: #fff !important;
}

body[data-page-id='page-1376'] .dark h2 {
  color: #fff !important;
}

body[data-page-id='page-1376'] .our-story-table table {
  border-collapse: collapse;
  width: 100%;
}

body[data-page-id='page-1376'] .our-story-table th,
body[data-page-id='page-1376'] .our-story-table td {
  border-bottom: 1px solid rgb(222, 222, 222);
  padding: 12px;
  text-align: left;
}

body[data-page-id='page-1376'] .our-story-table th {
  font-weight: bold;
}

/*-- --*/

@media (min-width: 768px) {
  body[data-page-id='page-1376'] #our-story {
    padding: 200px 0 150px;
  }

  body[data-page-id='page-1376'] #our-story .photo {
    position: absolute;
  }

  body[data-page-id='page-1376'] #our-story .photo img.mobile {
    display: none;
  }

  body[data-page-id='page-1376'] #our-story .photo img.desktop {
    display: block;
  }

  body[data-page-id='page-1376'] #our-story .content .text {
    max-width: 60%;
  }

  body[data-page-id='page-1376'] #our-story .content .text .signature {
    width: 250px;
    margin-top: 50px;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  body[data-page-id='page-1376'] #our-story {
    padding: 220px 0 150px;
  }

  body[data-page-id='page-1376'] #our-story .content .text {
    max-width: 650px;
  }
}

@media (min-width: 1500px) {
  body[data-page-id='page-1376'] #our-story {
    padding: 300px 0 200px;
  }
}

/*-- 7. Page - Embrace -------------------------------------------------------------------------------- --*/

.header-house-designs-embrace {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.header-house-designs-embrace .embrace-header {
  position: relative;
  background: #818181;
  display: block;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: 70% 60%;
}

.header-house-designs-embrace .embrace-header .panel-maxwidth {
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.header-house-designs-embrace .embrace-header .content h1 {
  color: #fff;
  font-size: 50px;
  margin: 0 0 30px;
  color: #186db0;
  font-size: 60px;
  line-height: 100%;
  margin: 0 0 20px;
}

.header-house-designs-embrace .embrace-header .content a {
  display: block;
  width: fit-content;
  color: #186db0;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  padding: 10px 12px 10px 10px;
  border-bottom: 2px solid #186db0;
  transition-duration: 0.2s;
}

.header-house-designs-embrace .embrace-header .content .img .logo {
  width: 200px;
}

.header-house-designs-embrace .embrace-header .content a:hover {
  color: #fff;
  border-color: #fff;
}

/**/
.header-house-designs-embrace .embrace-featured-items {
  position: relative;
  padding: 50px 0 60px;
}

.header-house-designs-embrace .embrace-featured-items .items {
  display: flex;
  flex-wrap: wrap;
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}

.header-house-designs-embrace .embrace-featured-items .items .item {
  flex: 0 0 31.33%;
  margin: 1%;
  text-align: center;
  color: #fff;
}

.header-house-designs-embrace .embrace-featured-items .items .item img {
  display: block;
  width: 80px;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.header-house-designs-embrace .embrace-featured-items .items .item p {
  font-weight: 600;
  font-size: 15px;
  max-width: 140px;
  margin: 20px auto 0;
}

.header-house-designs-embrace .embrace-featured-items .headline {
  color: #fff;
  font-weight: 400;
  font-size: 26px;
}

/**/
.header-house-designs-embrace .embrace-process {
  position: relative;
  padding: 0 0 50px;
  background: #fff;
}

.header-house-designs-embrace .embrace-process h1 {
  color: #186db0;
  font-weight: 500;
}

.header-house-designs-embrace .embrace-process .graphic {
  display: none;
  flex-wrap: wrap;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 5%;
}

/**/
.header-house-designs-embrace .embrace-process .process-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 8%;
  flex-direction: column;
}

.header-house-designs-embrace .embrace-process .process-items .item {
  display: flex;
  flex: 0 0 31.3%;
  margin: 1%;
}

.header-house-designs-embrace .embrace-process .process-items .item .content {
  margin-left: 10px;
}

.header-house-designs-embrace .embrace-header .img {
  margin-top: 100px;
}

.header-house-designs-embrace .embrace-process .process-items .item h2 {
  font-size: 28px;
}

@media (min-width: 768px) {
  .header-house-designs-embrace .embrace-process .process-items {
    flex-direction: row;
  }

  .header-house-designs-embrace .embrace-header {
    position: relative;
    background: #818181;
    display: block;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: 70% 80%;
  }

  .header-house-designs-embrace .embrace-featured-items .items .item p {
    font-weight: 600;
    font-size: 18px;
    max-width: 140px;
    margin: 20px auto 0;
  }

  .header-house-designs-embrace .embrace-featured-items {
    position: relative;
    padding: 70px 0 80px;
  }

  .header-house-designs-embrace .embrace-header .img {
    margin: 0;
  }

  .header-house-designs-embrace .embrace-header .panel-maxwidth {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header-house-designs-embrace .embrace-header .content .img .logo {
    width: 300px;
  }

  .header-house-designs-embrace .embrace-featured-items .items .item img {
    display: block;
    width: 140px;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .header-house-designs-embrace .embrace-featured-items .headline {
    color: #fff;
    font-weight: 400;
    font-size: 40px;
  }

    position: absolute;
    top: unset;
    right: unset;
  }
}

/**/
.header-house-designs-embrace .embrace-house-list {
  position: relative;
  background: #fff !important;
  padding: 50px 0;
}

#header-house-designs.header-house-designs-embrace .embrace-house-list {
  background: #fff !important;
  position: relative;
}

.header-house-designs-embrace .embrace-house-list h1 {
  color: #186db0;
  font-weight: 500;
}

#header-house-designs .house-list {
  margin-top: 30px;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-content
  .left
  h2 {
  color: #186db0;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-content
  .left
  ul
  li {
  color: #186db0;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-photo
  .price {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 160px;
  border-radius: 0 0 30px;
  background-color: #5fc8e1;
  background: linear-gradient(140deg, #5fc8e1, #2963b1);
  color: #fff;
  transition: opacity 0.2s ease;
  opacity: 1;
}

#header-house-designs
  .house-list
  .house.embrace-collection.show-plan
  .house-photo
  .price {
  opacity: 0;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-photo
  .price
  > div {
  padding: 15px;
  color: #fff;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-photo
  .price
  > div
  h3 {
  color: #fff;
  font-weight: 400;
}

#header-house-designs
  .house-list
  .house.embrace-collection
  .house-photo
  .price
  > div
  p {
  margin: 0;
  font-size: 14px;
}

/**/

#header-house-designs.header-house-designs-embrace {
  background-color: #5fc8e1;
  background: linear-gradient(140deg, #5fc8e1, #2963b1);
}

#header-house-designs.header-house-designs-embrace .house-filters h1 {
  color: #fff;
}

#header-house-designs.header-house-designs-embrace
  .house-list
  .house
  .house-content
  .left
  h2 {
  color: #186db0;
}

/* #header-house-designs.header-house-designs-embrace
  .house-list
  .house
  .house-content
  .left
  ul
  li {
  color: #186db0;
} */

#header-house-designs.header-house-designs-embrace
  .house-list
  .house
  .house-content
  .right
  .button-round:hover {
  color: #186db0;
}

/**/
@media (min-width: 768px) {
  #header-house-designs
    .house-list
    .house.embrace-collection
    .house-photo
    .price
    > div {
    padding: 15px 20px;
  }
  #header-house-designs
    .house-list
    .house.embrace-collection
    .house-photo
    .price {
    width: 200px;
    border-radius: 0 0 50px;
  }
}

@media (min-width: 1000px) {
  .header-house-designs-embrace .embrace-header .content .img .logo {
    width: 400px;
  }
}

@media (min-width: 1100px) {
  .header-house-designs-embrace .house-list .house {
    flex: 0 0 32.33%;
  }
  .header-house-designs-embrace .embrace-process .graphic {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .header-house-designs-embrace .embrace-header {
    height: 800px;
  }
  /* .header-house-designs-embrace .embrace-process .process-items .item{
    display:flex;
    flex: 0 0 14.5%;
    margin: 1%;
  } */
}

@media (min-width: 1600px) {
  .header-house-designs-embrace .embrace-header {
    height: 1100px;
  }

  .header-house-designs-embrace .embrace-header {
    background-position: 70% 70%;
  }
}

/*-- 8.1 Page - News Parent -------------------------------------------------------------------------------- --*/
#header-house-designs.header-news .house-list .house .house-photo {
  border-radius: 10px;
  overflow: hidden;
}

#header-house-designs.header-news .house-list .house .house-content {
  padding: 20px;
}

@media (min-width: 600px) {
  #header-house-designs.header-news .house-list {
    margin: 0 -1.5%;
  }

  #header-house-designs.header-news .house-list .house {
    flex: 0 0 30.33%;
    margin: 1.5%;
  }
}

/*-- 8.2 Page - News Individual -------------------------------------------------------------------------------- --*/
.phd-header.news-header {
  height: 150px;
  min-height: 150px;
}

.news-content-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.news-content-wrapper .news-content {
  margin-bottom: 50px;
  text-align: justify;
}

.news-content-wrapper .news-content h1.n-heading {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}

.news-content-wrapper .news-content h1,
.news-content-wrapper .news-content h2,
.news-content-wrapper .news-content h3,
.news-content-wrapper .news-content h4,
.news-content-wrapper .news-content h5,
.news-content-wrapper .news-content h6 {
  font-weight: 600;
}

.news-content-wrapper .news-content p {
  line-height: 160%;
}

.news-content-wrapper .news-content a {
  color: var(--bh-color-primary);
  text-decoration: underline;
}

.news-content-wrapper .news-content a:hover {
  color: #bfbd00;
}

.news-content-wrapper .news-content figure {
  display: block;
  margin: 0;
  padding: 0;
}

.news-content-wrapper .news-content figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 800px;
  margin: 30px 0;
  border-radius: 10px;
}

.news-content-wrapper .news-content figure iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
}

/**/
.news-content-wrapper .news-latest {
  padding: 0 0 70px;
}

.news-content-wrapper .news-latest .news-items h2 {
  font-weight: 500;
  margin: 0 0 30px;
}

.news-content-wrapper .news-latest .news-items .news-item {
  margin-bottom: 40px;
}

.news-content-wrapper .news-latest .news-items .news-item:last-of-type {
  margin-bottom: 0;
}

.news-content-wrapper .news-latest .news-items .news-item h3 {
  margin: 0;
}

.news-content-wrapper .news-latest .news-items .news-item h3 a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--bh-color-primary);
}

.news-content-wrapper .news-latest .news-items .news-item h3 a:hover {
  text-decoration: underline;
}

.news-content-wrapper .news-latest .news-items .news-item p.date {
  color: #8d8d8d;
  font-size: 14px;
  margin: 0;
}

.news-content-wrapper .news-latest .news-items .news-item p.desc {
  margin: 10px 0;
}

.news-content-wrapper .news-latest .news-items .news-item a.button {
  display: block;
  color: var(--bh-color-primary);
  display: block;
  width: fit-content;
  margin-top: 15px;
  padding: 7px 12px 6px 0;
  border-bottom: 1px solid var(--bh-color-primary);
  transition-duration: 0.2s;
}

.news-content-wrapper .news-latest .news-items .news-item a.button:hover {
  color: #bfbd00;
  border-color: #bfbd00;
}

/**/

@media (min-width: 768px) {
  .phd-header.news-header {
    height: 300px;
    min-height: 300px;
  }

  .news-content-wrapper > div {
    margin-bottom: 150px;
    justify-content: space-between;
  }

  .news-content-wrapper .news-content {
    flex: 0 0 60%;
  }

  .news-content-wrapper .news-latest {
    flex: 0 0 20%;
    margin-right: 10%;
    padding: 0 0 100px;
  }

  .news-content-wrapper .news-latest .news-items {
    padding: 10px 0;
  }

  .news-content-wrapper .news-content h1.n-heading {
    font-size: 50px;
  }
}

@media (min-width: 1600px) {
  .news-content-wrapper .news-content {
    flex: 0 0 65%;
  }

  .news-content-wrapper .news-latest {
    margin-right: 5%;
  }
}

@media (min-width: 1800px) {
  .news-content-wrapper .news-content {
    flex: 0 0 70%;
  }

  .news-content-wrapper .news-latest {
    margin-right: 0;
    margin-left: 10%;
  }
}

/*-- 9. Page Developments -------------------------------------------------------------------------------- --*/
main[data-barba='container'][data-section-id='5'] #header-house-designs {
  padding-top: 100px;
}

main[data-barba='container'][data-section-id='5']
  #header-house-designs
  .house-filters
  h1 {
  text-transform: none;
}

/*-- 10. Page Terms, Conditons and Privacy Policy -------------------------------------------------------------------------------- --*/
#page-terms-conditions-privacy-content {
  background-color: #fff;
  padding: 50px 0;
}

@media (min-width: 768px) {
  #page-terms-conditions-privacy-content {
    padding: 80px 0;
  }

  #page-terms-conditions-privacy-content .panel-maxwidth > div {
    width: 90%;
  }
}

/*-- 11. Page Generic Template -------------------------------------------------------------------------------- --*/
#generic-page-repeatable-content {
  padding: 40px 0;
  overflow: hidden;
}

#generic-page-repeatable-content .block-paragraphAndPhoto {
  transition-duration: 0.2s;
  padding: 20px 0;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.has-photo {
  display: flex;
  flex-wrap: wrap;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.has-photo .text {
  flex: 0 0 100%;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.photo-right {
  flex-direction: row-reverse;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.has-photo .photo {
  flex: 0 0 100%;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.has-photo .photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 700px;
  margin-bottom: 30px;
  border-radius: 5px;
}

#generic-page-repeatable-content .block-paragraphAndPhoto.photo-valign {
  align-items: center;
}

/**/
.block-paragraphSingle {
  max-width: 800px;
  text-align: center;
  margin: 30px auto;
}

/**/

#generic-page-repeatable-content .block-gallery {
  padding: 40px 0;
}

/**/
#generic-page-repeatable-content .block-faqs h2 {
  flex: 0 0 100%;
  margin: 20px 1%;
}

#generic-page-repeatable-content .block-faqs .faq-item {
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
}

#generic-page-repeatable-content .block-faqs .faq-question {
  padding: 20px 30px;
  background: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  background: #060f1c;
  transition-duration: 0.2s;
}

#generic-page-repeatable-content .block-faqs .faq-question.active {
  color: var(--bh-color-accent);
}

#generic-page-repeatable-content .block-faqs .faq-question:hover {
  color: var(--bh-color-accent);
}

#generic-page-repeatable-content .block-faqs .faq-answer {
  padding: 20px 30px;
  display: none;
  background: #fcfcfc;
  box-shadow: 2px 2px 10px #0000000a;
}

#generic-page-repeatable-content .block-faqs .faq-answer p {
  margin: 5px 0;
}

#generic-page-repeatable-content .block-faqs .faq-answer.active {
  display: block;
}

/**/

#generic-page-repeatable-content #phd-customise h2 {
  margin-bottom: 30px;
}

#generic-page-repeatable-content #phd-customise .button {
  color: var(--bh-color-primary);
  background: var(--bh-color-accent);
  padding: 20px 30px;
  border-radius: 30px;
  border: none;
  transition-duration: 0.2s;
  font-weight: 700;
}

#generic-page-repeatable-content #phd-customise .button:hover {
  background: #e7ed41;
}

@media (min-width: 768px) {
  #generic-page-repeatable-content .right-line-padd {
    padding-right: 10%;
  }

  #generic-page-repeatable-content .block-paragraphAndPhoto {
    margin: 40px 0;
  }

  #generic-page-repeatable-content .block-paragraphAndPhoto.has-photo .text {
    flex: 0 0 50%;
  }

  #generic-page-repeatable-content .block-paragraphAndPhoto.has-photo .photo {
    flex: 0 0 50%;
  }

  #generic-page-repeatable-content
    .block-paragraphAndPhoto.has-photo
    .text
    > div {
    padding-left: 8%;
  }

  #generic-page-repeatable-content
    .block-paragraphAndPhoto.photo-right
    .text
    > div {
    padding-left: 0;
    padding-right: 8%;
  }

  #generic-page-repeatable-content
    .block-paragraphAndPhoto.has-photo
    .photo
    img {
    margin-bottom: 0;
  }

  /**/

  .block-paragraphSingle {
    margin: 60px auto;
  }

  .block-paragraphDouble > div {
    display: flex;
    flex-wrap: nowrap;
  }

  .block-paragraphDouble .left {
    flex: 0 0 48%;
    padding-right: 2%;
  }

  .block-paragraphDouble .right {
    flex: 0 0 48%;
    padding-left: 2%;
  }

  /**/

  #generic-page-repeatable-content .block-faqs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5%;
  }

  #generic-page-repeatable-content .block-faqs .faq-item {
    flex: 0 0 48%;
    margin: 10px 1%;
  }

  /**/

  #generic-page-repeatable-content .block-gallery {
    padding: 60px 0;
  }

  /**/
  #generic-page-repeatable-content #phd-customise h2 {
    margin-bottom: 20px;
  }

  #generic-page-repeatable-content #phd-customise .button {
    margin: 40px auto 0;
  }
}

@media (min-width: 1600px) {
  #generic-page-repeatable-content .right-line-padd {
    padding-right: 5%;
  }
}

@media (min-width: 1800px) {
  #generic-page-repeatable-content .right-line-padd {
    padding-right: 0;
  }
}

/*-- 12. Contact Page -------------------------------------------------------------------------------- --*/

#contact-page {
  background-color: var(--bh-color-white);
}

.contact-page__hero {
  position: relative;
  padding: 120px 0 80px;
  color: var(--bh-color-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-page__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 16, 28, 0.92),
    rgba(3, 16, 28, 0.72)
  );
}

.contact-page__hero .panel-maxwidth {
  position: relative;
  z-index: 1;
}

.contact-page__hero-content {
  max-width: 760px;
}

.contact-page__hero-content h1 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 600;
}

.contact-page__hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--bh-color-white-opaque);
}

.contact-page__hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0 0;
}

.contact-page__hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 24px 24px 28px;
  backdrop-filter: blur(6px);
}

.contact-page__hero-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--bh-color-white);
}

.contact-page__hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--bh-color-white);
  text-decoration: none;
}

.contact-page__hero-link img {
  width: 32px;
  height: 32px;
}

.contact-page__hero-card p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--bh-color-white-opaque);
}

.contact-page__form {
  padding: 80px 0;
  background: var(--bh-color-offwhite);
}

.contact-page__form-wrapper {
  background: var(--bh-color-white);
  border-radius: 32px;
  padding: 48px 28px;
  box-shadow: 0 34px 60px rgba(3, 16, 28, 0.08);
}

.contact-page__form-wrapper .contact-block__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-page__form-wrapper .contact-block__column--info {
  flex: 0 0 100%;
}

.contact-page__form-wrapper .contact-block__info {
  max-width: 420px;
}

.contact-page__form-wrapper .contact-block__intro h1 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--bh-color-primary);
  font-weight: 600;
}

.contact-page__form-wrapper .contact-block__intro p {
  margin: 0 0 16px;
  color: var(--bh-color-charcoal);
  line-height: 1.6;
}

.contact-page__form-wrapper .phone,
.contact-page__form-wrapper .address {
  display: block;
  font-weight: 600;
  color: var(--bh-color-primary);
  margin: 6px 0;
  text-decoration: none;
}

.contact-page__form-wrapper .contact-block__socials {
  display: flex;
  gap: 14px;
  margin: 28px 0 0;
}

.contact-page__form-wrapper .contact-block__socials a {
  width: 36px;
  height: 36px;
  display: block;
}

.contact-page__form-wrapper .contact-block__column--forms {
  flex: 1;
}

.contact-page__form-wrapper .form-wrapper {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}

.contact-page__form-wrapper .form-wrapper + .form-wrapper {
  margin-top: 32px;
}

.contact-page__form-wrapper form {
  color: var(--bh-color-charcoal);
}

.contact-page__form-wrapper form h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--bh-color-primary);
  margin: 0 0 16px;
}

.contact-page__form-wrapper form legend.fui-legend,
.contact-page__form-wrapper form label {
  color: var(--bh-color-charcoal);
  font-family: NolanNextRegular, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.contact-page__form-wrapper form input,
.contact-page__form-wrapper form select,
.contact-page__form-wrapper form textarea {
  font-family: NolanNextRegular, sans-serif;
  border: 1px solid #d7dadd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background: #f8f9fb;
  color: var(--bh-color-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form-wrapper form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page__form-wrapper form input:focus,
.contact-page__form-wrapper form select:focus,
.contact-page__form-wrapper form textarea:focus {
  border-color: var(--bh-color-primary);
  box-shadow: 0 0 0 3px rgba(3, 16, 28, 0.12);
  outline: none;
  background: var(--bh-color-white);
}

.contact-page__form-wrapper form button[type='submit'] {
  display: inline-block;
  border-radius: 30px;
  background: var(--bh-color-primary);
  border: 1px solid var(--bh-color-primary);
  color: var(--bh-color-white);
  font-weight: 700;
  padding: 12px 34px;
  text-transform: lowercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-page__form-wrapper form button[type='submit']:hover {
  background: transparent;
  color: var(--bh-color-primary);
}

.contact-page__form-wrapper form .fui-alert-success {
  background: var(--bh-color-accent);
  color: var(--bh-color-primary);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.contact-page__form-wrapper form .fui-alert-error {
  background: #a91c1c;
  color: var(--bh-color-white);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.contact-page__form-wrapper form .fui-alert-success p,
.contact-page__form-wrapper form .fui-alert-error p {
  margin: 0;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-page__hero {
    padding: 140px 0 100px;
  }

  .contact-page__hero-content h1 {
    font-size: 46px;
  }

  .contact-page__hero-content p {
    font-size: 18px;
  }

  .contact-page__hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .contact-page__form-wrapper {
    padding: 64px 80px;
  }

  .contact-page__form-wrapper .contact-block__layout {
    flex-direction: row;
    gap: 64px;
  }

  .contact-page__form-wrapper .contact-block__column--info {
    flex: 0 0 36%;
  }
}

/*-- Z. Animation Elements --------------------------------------------------------------------*/
.animate {
  position: relative;
}

.bounce-up.in-view.animate,
.slide-from-left.in-view.animate,
.slide-from-right.in-view.animate,
.fadein.in-view.animate {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

/*-- animation: bounce up--*/
.bounce-up.animate {
  opacity: 0;

  /*-- transition --*/
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: transform 700ms ease-out, opacity 700ms ease;

  /*-- transform --*/
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate3d(0px, 100, 0px);

  /*-- visibility --*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- animation: slide from left --*/
.slide-from-left.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: transform 500ms linear, opacity 500ms ease;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate3d(-50px, 0px, 0px);
}

/*-- animation: slide from right --*/
.slide-from-right.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: transform 500ms linear, opacity 500ms ease;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate3d(50px, 0px, 0px);
}

@media (max-width: 768px) {
  .animate {
    overflow: hidden;
  }
}

.delay-1 {
  transition-delay: 0.1s !important;
}
.delay-2 {
  transition-delay: 0.2s !important;
}
.delay-3 {
  transition-delay: 0.3s !important;
}
.delay-4 {
  transition-delay: 0.4s !important;
}
.delay-5 {
  transition-delay: 0.5s !important;
}
.delay-6 {
  transition-delay: 0.6s !important;
}

/* House & Land filter form */
.house-land-filter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f4 100%);
  color: #03101c;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-toggle:focus-visible {
  outline: none;
}

.filter-toggle[aria-expanded='false'] {
  border: 1px solid #c7cdd1;
}

.filter-toggle__icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: transform 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l7 7 7-7' stroke='%2303101C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.filter-toggle[aria-expanded='false'] .filter-toggle__icon {
  transform: rotate(180deg);
}

.filter-collapsible {
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
  height: auto;
  opacity: 1;
}

.filter-collapsible[data-collapsed='true'] {
  height: 0 !important;
  opacity: 0;
}

.house-land-form__inner {
  position: relative;
  padding: 2rem;
  margin-top: 1.5rem;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 18px 36px rgba(3, 16, 28, 0.08),
    0 10px 24px rgba(3, 16, 28, 0.06),
    0 4px 12px rgba(3, 16, 28, 0.05);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

[data-filter-container][data-collapsed='true'] .house-land-form__inner {
  padding: 1px;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

@media (max-width: 767px) {
  .house-land-form__inner {
    padding: 1rem;
    margin-top: 1rem;
  }

  .house-land-filter-form {
    gap: 1rem;
  }

  .house-land-filter-form > .filter-group legend,
  .house-land-filter-form .filter-row label {
    font-size: 0.9rem;
  }

  .house-land-filter-form .filter-row--search input,
  .house-land-filter-form .filter-row--sort select {
    height: 50px;
    padding: 0.72rem 1.15rem;
    font-size: 0.95rem;
  }

  .house-land-filter-form .filter-row--sort select {
    padding-right: 2.6rem;
    background-position: right 0.9rem center;
    background-size: 14px 9px;
  }

  .house-land-filter-form .filter-row--search input {
    background-position: 0.75rem center;
    background-size: 16px 16px;
    padding-left: 2.9rem;
  }
}

.house-land-filter-form > .filter-group {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.house-land-filter-form > .filter-group .filter-options {
  border: 1px solid #d7d9da;
  border-radius: 22px;
  padding: 0.75rem 0.85rem;
}

.house-land-filter-form > .filter-group legend,
.house-land-filter-form .filter-row label {
  margin: 0;
  padding: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(3, 16, 28, 0.55);
}

.house-land-filter-form .filter-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.house-land-filter-form .filter-row--search:first-of-type {
  margin-top: 1rem;
}

.house-land-filter-form .filter-row--search input,
.house-land-filter-form .filter-row--sort select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid rgba(3, 16, 28, 0.4);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bh-color-charcoal);
  background: #fff;
  height: 58px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.house-land-filter-form .filter-row--search input::placeholder {
  color: #9da3aa;
}

.house-land-filter-form .filter-row--search input:focus,
.house-land-filter-form .filter-row--sort select:focus {
  outline: none;
  border-color: rgba(3, 16, 28, 0.65);
  box-shadow: 0 0 0 3px rgba(3, 16, 28, 0.08);
}

.house-land-filter-form .filter-row--sort select {
  padding-right: 3.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%2303101C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 16px 10px;
}

.house-land-filter-form .filter-row--search input {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='6.25' stroke='%2303101C' stroke-width='1.5'/%3E%3Cpath d='M12.25 12.25L16.5 16.5' stroke='%2303101C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 18px 18px;
  padding-left: 3.4rem;
}

.house-land-filter-form .filter-row--search input,
.house-land-filter-form .filter-row--sort select {
  width: 100%;
}

.house-land-filter-form .filter-row-group {
  display: grid;
  gap: 1rem;
}

.house-land-filter-form .filter-row-group--search-sort {
  margin-bottom: 1.5rem;
}

.house-land-filter-form .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.house-land-filter-form .filter-option {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bh-color-charcoal);
  text-transform: none;
}

.house-land-filter-form .filter-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.house-land-filter-form .filter-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  min-height: 50px;
  padding: 0 1rem;
  line-height: 1;
  border: 1.5px solid rgba(3, 16, 28, 0.25);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease,
    box-shadow 150ms ease;
}

@media (max-width: 767px) {
  .house-land-filter-form .filter-option {
    font-size: 0.78rem;
  }

  .house-land-filter-form .filter-option span {
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.55rem;
  }

  .house-land-filter-form .filter-row--search input,
  .house-land-filter-form .filter-row--sort select {
    height: 54px;
    padding: 0.8rem 1.4rem;
  }
}

.house-land-filter-form .filter-option:hover span {
  border-color: rgba(3, 16, 28, 0.5);
}

.house-land-filter-form .filter-option input:checked + span {
  background: #ffffff;
  border-color: #bebf11;
  color: var(--bh-color-charcoal);
}

.house-land-filter-form .filter-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
}

.house-land-filter-form .filter-actions__submit {
  border: none;
  border-radius: 50px;
  background: #364046;
  color: #bebf11;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.house-land-filter-form .filter-actions__submit:hover,
.house-land-filter-form .filter-actions__submit:focus-visible {
  background: #414c56;
  outline: none;
}

.house-land-filter-form .filter-actions__submit:active {
  transform: translateY(1px);
}

.house-land-filter-form .filter-actions__reset {
  background: none;
  border: none;
  color: #a6a3a3;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  align-self: center;
}

.house-land-filter-form .filter-actions__reset:hover,
.house-land-filter-form .filter-actions__reset:focus-visible {
  color: #8c8989;
  outline: none;
}

@media (min-width: 768px) {
  .house-land-filter-form .filter-row-group--search-sort {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.25rem;
  }

  .house-land-filter-form .filter-row-group--search-sort .filter-row--search {
    flex: 1 1 auto;
  }

  .house-land-filter-form .filter-row-group--search-sort .filter-row--sort {
    width: auto;
  }

  .house-land-filter-form .filter-row-group--search-sort .filter-row--sort select {
    width: auto;
  }
}

@media (min-width: 900px) {
  .house-land-filter-form {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 1.25rem;
    align-items: flex-start;
  }

  .filter-toggle {
    max-width: none;
    margin-bottom: 0;
  }

  .filter-collapsible {
    width: 100%;
  }

  .house-land-filter-form > .filter-row,
  .house-land-filter-form > .filter-row-group,
  .house-land-filter-form > .filter-actions {
    flex: 0 0 100%;
  }

  .house-land-filter-form > .filter-group {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }

  .house-land-filter-form .filter-options {
    flex-wrap: wrap;
    overflow: visible;
  }

  .house-land-filter-form .filter-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    text-align: right;
  }

  .house-land-filter-form .filter-actions__submit {
    padding: 0.85rem 3rem;
  }

  .house-land-filter-form .filter-actions__reset {
    align-self: center;
  }
}

@media (max-width: 767px) {
  .house-land-filter-form .filter-row--search input,
  .house-land-filter-form .filter-row--sort select {
    height: 50px;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }

  .house-land-filter-form .filter-row--sort select {
    padding-right: 2.6rem;
    background-position: right 0.9rem center;
    background-size: 14px 9px;
  }

  .house-land-filter-form .filter-row--search input {
    padding-left: 2.85rem;
    background-position: 0.78rem center;
    background-size: 16px 16px;
  }
}
.house-land-filter-form .filter-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(3, 16, 28, 0.75);
}

main[data-barba-namespace='embrace-journey']
  #generic-page-repeatable-content
  .block-paragraphAndPhoto.has-photo
  .photo
  img {
  width: auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* Embrace Journey rich-text list alignment */
main[data-barba-namespace='embrace-journey']
  #generic-page-repeatable-content
  :is(.block-paragraphAndPhoto, .block-paragraphSingle, .block-paragraphDouble)
  :is(ul, ol) {
  text-align: left;
}
