@charset "UTF-8";
/*transform origin*/
/* prettier-ignore */
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
    * Make all elements from the DOM inherit from the parent box-sizing
    * Since `*` has a specificity of 0, it does not override the `html` value
    * making all elements inheriting from the root box-sizing value
    * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
    */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
    * Basic styles for links
    */
a {
  text-decoration: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

textarea {
  resize: vertical;
}

button {
  background: none;
  border: none;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  display: block;
}

* {
  box-sizing: border-box;
  margin: 0;
}

:root {
  --lr-content-margin: 20px;
  --module-tb-margin: 40px;
}
@media (min-width: 992px) {
  :root {
    --lr-content-margin: 5.56vw;
    --module-tb-margin: 65px;
  }
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.range-slider .ui-slider {
  position: relative;
  background-color: #a0a0a0;
  height: 3px;
}
.range-slider .ui-slider .ui-slider-range {
  position: absolute;
  background-color: #212322;
  height: 3px;
}
.range-slider .ui-slider .ui-slider-handle {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -7px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #f8f7f1;
}

.selectivo {
  position: relative;
  display: inline-block;
  background: white;
}

.selectivo__label,
.selectivo__option {
  display: block;
  width: 100%;
  padding: 1em;
  padding-right: 2.5em;
  border: 0;
  background: transparent;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.selectivo__label::-moz-focus-inner,
.selectivo__option::-moz-focus-inner {
  border: 0;
}

.selectivo__label {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2227%22%20height%3D%225%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%200%20L5%205%20L9%200%20Z%22%20fill%3D%22%23696969%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") no-repeat center right;
}

.selectivo__option:first-child {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2227%22%20height%3D%225%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%205%20L5%200%20L9%205%20Z%22%20fill%3D%22%23696969%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") no-repeat center right;
}

.selectivo__label,
.selectivo__dropdown {
  border: 1px solid #e3e3e3;
}

.selectivo__dropdown {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: white;
}

.selectivo--open .selectivo__dropdown {
  display: block;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 10px;
}

.flex {
  display: flex;
}

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

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center !important;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.hidden {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

button,
a {
  transition: all 0.1s ease-in-out;
}

.btn, .hbspt-form .hs-submit input[type=submit],
.hs-form .hs-submit input[type=submit] {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 15px;
  color: #f8f7f1;
  font-weight: 800;
  line-height: normal;
  padding: 15px 20px;
  white-space: nowrap;
  cursor: pointer;
  min-inline-size: max-content;
  max-inline-size: 100%;
  border-width: 3px;
}
@media (max-width: 991.8px) {
  .btn, .hbspt-form .hs-submit input[type=submit],
  .hs-form .hs-submit input[type=submit] {
    font-size: 12px;
    padding: 10px 20px;
    border-width: 2px;
  }
}
.btn.fill_btn_tan, .hbspt-form .hs-submit input.fill_btn_tan[type=submit],
.hs-form .hs-submit input.fill_btn_tan[type=submit] {
  background-color: #b79555;
  border: 1.5px solid #b79555;
}
.btn.fill_btn_tan:hover, .hbspt-form .hs-submit input.fill_btn_tan[type=submit]:hover,
.hs-form .hs-submit input.fill_btn_tan[type=submit]:hover {
  background-color: #f8f7f1;
  color: #212322;
  border-color: #f8f7f1;
}
.btn.fill_btn, .hbspt-form .hs-submit input.fill_btn[type=submit],
.hs-form .hs-submit input.fill_btn[type=submit] {
  background-color: #c47e5a;
  border: 1.5px solid #c47e5a;
}
.btn.fill_btn:hover, .hbspt-form .hs-submit input.fill_btn[type=submit]:hover,
.hs-form .hs-submit input.fill_btn[type=submit]:hover {
  background-color: #f8f7f1;
  color: #212322;
  border-color: #f8f7f1;
}
.btn.transparent_btn, .hbspt-form .hs-submit input.transparent_btn[type=submit],
.hs-form .hs-submit input.transparent_btn[type=submit] {
  background-color: transparent;
  color: #f8f7f1;
  border: 1.5px solid #f8f7f1;
}
.btn.transparent_btn:hover, .hbspt-form .hs-submit input.transparent_btn[type=submit]:hover,
.hs-form .hs-submit input.transparent_btn[type=submit]:hover {
  background-color: #f8f7f1;
  color: #212322;
  border-color: #f8f7f1;
}
.btn.top_right, .hbspt-form .hs-submit input.top_right[type=submit],
.hs-form .hs-submit input.top_right[type=submit] {
  border-top-right-radius: 20px;
}
@media (max-width: 991.8px) {
  .btn.top_right, .hbspt-form .hs-submit input.top_right[type=submit],
  .hs-form .hs-submit input.top_right[type=submit] {
    border-top-right-radius: 12px;
  }
}
.btn.bottom_left, .hbspt-form .hs-submit input.bottom_left[type=submit],
.hs-form .hs-submit input.bottom_left[type=submit] {
  border-bottom-left-radius: 20px;
}
@media (max-width: 991.8px) {
  .btn.bottom_left, .hbspt-form .hs-submit input.bottom_left[type=submit],
  .hs-form .hs-submit input.bottom_left[type=submit] {
    border-bottom-left-radius: 12px;
  }
}
.btn.top_left, .hbspt-form .hs-submit input.top_left[type=submit],
.hs-form .hs-submit input.top_left[type=submit] {
  border-top-left-radius: 20px;
}
@media (max-width: 991.8px) {
  .btn.top_left, .hbspt-form .hs-submit input.top_left[type=submit],
  .hs-form .hs-submit input.top_left[type=submit] {
    border-top-left-radius: 12px;
  }
}
.btn.bottom_right, .hbspt-form .hs-submit input.bottom_right[type=submit],
.hs-form .hs-submit input.bottom_right[type=submit] {
  border-bottom-right-radius: 20px;
}
@media (max-width: 991.8px) {
  .btn.bottom_right, .hbspt-form .hs-submit input.bottom_right[type=submit],
  .hs-form .hs-submit input.bottom_right[type=submit] {
    border-bottom-right-radius: 12px;
  }
}

.mob {
  display: none !important;
}
@media (max-width: 991.8px) {
  .mob {
    display: block !important;
  }
}

@media (max-width: 991.8px) {
  .desktop {
    display: none !important;
  }
}
body {
  font-family: "acumin-pro", sans-serif;
  padding-bottom: env(safe-area-inset-bottom);
  color: #212322;
  padding-bottom: 0;
}
body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "RecklessNeue-Regular", sans-serif;
}

.heading_level_two {
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
}

.heading_level_three {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
}

.heading_level_four {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
}

.heading_level_five {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
}

.heading_level_six {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.box_center {
  text-align: center;
}

.box_left {
  text-align: left;
}

.box_right {
  text-align: right;
}

.col_heading {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.col_heading {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .col_heading {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .col_heading {
    font-size: 56px;
  }
}
.col_heading {
  line-height: 40px;
}
@media screen and (min-width: 393px) {
  .col_heading {
    line-height: calc(40px + 22.78 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .col_heading {
    line-height: 62.78px;
  }
}

.paragraph,
.list-item {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  line-height: 26px;
}
.paragraph,
.list-item {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .paragraph,
  .list-item {
    font-size: calc(18px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .paragraph,
  .list-item {
    font-size: 20px;
  }
}
.paragraph,
.list-item {
  line-height: 22px;
}
@media screen and (min-width: 393px) {
  .paragraph,
  .list-item {
    line-height: calc(22px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .paragraph,
  .list-item {
    line-height: 26px;
  }
}

.p_bottom {
  padding-bottom: 40px !important;
}
@media (max-width: 991px) {
  .p_bottom {
    padding-bottom: 20px !important;
  }
}

.p_top {
  padding-top: 40px !important;
}
@media (max-width: 991px) {
  .p_top {
    padding-top: 20px !important;
  }
}

.m_bottom {
  margin-bottom: -1px;
}

.disabled {
  pointer-events: none;
  opacity: 0.8;
}

.justify-left {
  justify-content: flex-start !important;
}

.justify-right {
  justify-content: flex-end !important;
}

.default-thumb {
  height: 26vw;
  max-height: 375px;
  min-height: 221px;
  width: 100%;
  background-color: #b79555;
  background-image: url("../images/paseo.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
}

.image-two-content-block__content-paragraph-slider .slick-slide,
.image-two-content-block__content-heading-container .slick-slide,
.two_col_content_slider .slick-slide {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.slick-slide.custom-fade-out {
  opacity: 0;
}

.slick-slide.custom-fade-in {
  opacity: 0;
  animation: fadeInOnly 1s forwards;
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blurred {
  filter: blur(4px);
}

.hotel .img_left a:hover,
.hotel .img_right a:hover {
  background: rgba(254, 234, 173, 0.8666666667) !important;
  color: #212322 !important;
  border-color: rgba(254, 234, 173, 0.8666666667) !important;
}

button#schedule-tour-popup-button.schedule-tour-popup-button {
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 0px;
  border-top-right-radius: 12px;
  box-shadow: none;
  padding: 10px 35.15px;
}
@media (min-width: 992px) {
  button#schedule-tour-popup-button.schedule-tour-popup-button {
    border-top-right-radius: 20px;
    padding: 14px 35.15px;
  }
}

#schedule-tour-modal .schedule-tour-modal-content .schedule-tour-modal-body .self_schedule_popup_close {
  width: 98%;
}
#schedule-tour-modal .schedule-tour-modal-content .schedule-tour-modal-body .self_schedule_popup_close .schedule_popup_close {
  font-size: 22px;
  margin-top: 3px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.btn, .hbspt-form .hs-submit input[type=submit],
.hs-form .hs-submit input[type=submit] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  background-clip: padding-box;
}

button:active,
button:focus,
.btn:active,
.hbspt-form .hs-submit input[type=submit]:active,
.hs-form .hs-submit input[type=submit]:active,
.btn:focus,
.hbspt-form .hs-submit input[type=submit]:focus,
.hs-form .hs-submit input[type=submit]:focus,
a.btn:active,
a.btn:focus,
button:focus-visible,
.btn:focus-visible,
.hbspt-form .hs-submit input[type=submit]:focus-visible,
.hs-form .hs-submit input[type=submit]:focus-visible,
a.btn:focus-visible {
  -webkit-tap-highlight-color: transparent;
}

.using-keytab .resources-list .resources-card a {
  display: block;
}
.using-keytab a:focus, .using-keytab a:focus-within,
.using-keytab button:focus,
.using-keytab button:focus-within,
.using-keytab input:focus,
.using-keytab input:focus-within,
.using-keytab select:focus,
.using-keytab select:focus-within,
.using-keytab textarea:focus,
.using-keytab textarea:focus-within,
.using-keytab .btn:focus,
.using-keytab .hbspt-form .hs-submit input[type=submit]:focus,
.hbspt-form .hs-submit .using-keytab input[type=submit]:focus,
.using-keytab .hs-form .hs-submit input[type=submit]:focus,
.hs-form .hs-submit .using-keytab input[type=submit]:focus,
.using-keytab .btn:focus-within,
.using-keytab .hbspt-form .hs-submit input[type=submit]:focus-within,
.hbspt-form .hs-submit .using-keytab input[type=submit]:focus-within,
.using-keytab .hs-form .hs-submit input[type=submit]:focus-within,
.hs-form .hs-submit .using-keytab input[type=submit]:focus-within {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 1px #fff, 0 0 0 4px #000 !important;
}
.using-keytab a:has(> button):focus, .using-keytab a:has(> button):focus-within {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 1px #fff, 0 0 0 4px #000 !important;
  display: inline-block;
}
.using-keytab a:has(> button):focus button:focus, .using-keytab a:has(> button):focus button:focus-within, .using-keytab a:has(> button):focus-within button:focus, .using-keytab a:has(> button):focus-within button:focus-within {
  outline: none !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}
.using-keytab a:has(> button):focus button, .using-keytab a:has(> button):focus-within button {
  outline: none !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}
.using-keytab a:has(> button) button:focus, .using-keytab a:has(> button) button:focus-within {
  outline: none !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

.using-keytab .two_col_wrapper .two_col_content,
.using-keytab .fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper,
.using-keytab .faq-accordion__tabs,
.using-keytab .fp-detail-page .fp-detailView .unit-accordion,
.using-keytab .floorplan-search__filter .selectivo__dropdown {
  overflow: visible;
}
.using-keytab .floorplan-listing__image a {
  display: block;
}
.using-keytab .footer__block-item--social a {
  display: inline-block;
}

.using-keytab .section-newsletter form button:focus, .using-keytab .section-newsletter form button:focus-within,
.using-keytab .section-newsletter form input:focus,
.using-keytab .section-newsletter form input:focus-within,
.using-keytab .section-newsletter form textarea:focus,
.using-keytab .section-newsletter form textarea:focus-within,
.using-keytab .section-newsletter form select:focus,
.using-keytab .section-newsletter form select:focus-within {
  outline: 2px solid #f8f7f1 !important;
}

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

.breadcrumb .breadcrumb__list .breadcrumb__list-item {
  display: flex;
}
@media (min-width: 992px) {
  .breadcrumb .breadcrumb__list .breadcrumb__list-item.detailed-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}

.using-keytab .card__content > a,
.using-keytab .card-image-overlay > a {
  display: block;
}
.using-keytab .card__content > a:focus, .using-keytab .card__content > a:focus-within,
.using-keytab .card-image-overlay > a:focus,
.using-keytab .card-image-overlay > a:focus-within {
  outline-offset: -2px !important;
  box-shadow: inset 0 0 0 2px #000, inset 0 0 0 4px #fff !important;
}
.using-keytab .card a:focus,
.using-keytab .card button:focus,
.using-keytab .card [tabindex]:focus {
  outline-offset: -2px !important;
  box-shadow: inset 0 0 0 2px #000, inset 0 0 0 4px #fff !important;
}
.using-keytab .header__logo a {
  display: inline-block;
}

main .property-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  padding: 0 6.45vw 100px;
}
@media (min-width: 992px) {
  main .property-details {
    flex-direction: row;
  }
}
@media (max-width: 991.8px) {
  main .property-details {
    padding: 0 20px 44px;
  }
}
main .property-details a {
  color: currentColor;
  cursor: pointer;
}
main .property-details a:hover, main .property-details a:active {
  color: rgba(254, 234, 173, 0.8666666667);
}
main .property-details > div {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  main .property-details > div {
    margin-bottom: 0;
  }
}
main .property-details > div:last-child {
  margin-bottom: 0;
}
main .property-details .property-detail-heading {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #f8f7f1;
  font-size: 26px;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  main .property-details .property-detail-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
main .property-details .property-detail-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  color: #f8f7f1;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.01em;
}
main .property-details .property-detail-body a:hover {
  color: rgba(254, 234, 173, 0.8666666667);
}
main .property-details .property-detail-extra-text {
  margin-top: 10px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 991.8px) {
  main .property-details .property-detail-extra-text {
    font-size: 13px;
    line-height: 17px;
  }
}

footer .property-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 0;
}
@media (min-width: 992px) {
  footer .property-details {
    flex-direction: row;
    gap: 7.5vw;
    gap: 14.2vw;
    padding-inline: 0;
  }
}
footer .property-details .property-detail-heading {
  color: currentColor;
  font-size: 26px;
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  width: 100%;
  display: inline-block;
  line-height: 1;
  text-align: left;
  margin-bottom: 18px;
}
footer .property-details .property-detail-heading {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  footer .property-details .property-detail-heading {
    font-size: calc(26px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  footer .property-details .property-detail-heading {
    font-size: 28px;
  }
}
footer .property-details .property-detail-heading::before, footer .property-details .property-detail-heading::after {
  display: none;
}
@media (min-width: 992px) {
  footer .property-details .property-detail-heading {
    max-width: 230px;
    width: 100%;
    margin-bottom: 16px;
  }
}
footer .property-details .property-detail-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 992px) {
  footer .property-details .property-detail-body {
    display: contents;
  }
}
footer .property-details .property-detail-body p,
footer .property-details .property-detail-body a {
  color: currentColor;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  line-height: 21px;
  letter-spacing: 0.01rem;
  font-style: normal;
  text-align: var(--footer-text-alignment, "left");
  line-height: 1.125;
  text-align: left;
}
footer .property-details .property-detail-body p,
footer .property-details .property-detail-body a {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  footer .property-details .property-detail-body p,
  footer .property-details .property-detail-body a {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  footer .property-details .property-detail-body p,
  footer .property-details .property-detail-body a {
    font-size: 18px;
  }
}
footer .property-details .property-detail-body a {
  cursor: pointer;
}
footer .property-details .property-detail-body a:hover {
  color: #c47e5a !important;
}
footer .property-details .property-detail-extra-text {
  margin-top: 10px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 991.8px) {
  footer .property-details .property-detail-extra-text {
    font-size: 13px;
    line-height: 17px;
  }
}
@media (max-width: 991.8px) {
  footer .property-details .property-detail-item:last-child .property-detail-body {
    flex-direction: column;
  }
}

header .header__slide-menu-content .header__slide-menu-nav .menu-header-menu-container ul {
  padding-bottom: 47px;
}
header .property-details {
  display: block;
  padding-top: 52px;
}
header .property-details .property-detail-item {
  margin-bottom: 46px;
}
header .property-details .property-detail-item .property-detail-heading {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
header .property-details .property-detail-item .property-detail-body p,
header .property-details .property-detail-item .property-detail-body a {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.03em;
  color: currentColor;
}
header .property-details .property-detail-item .property-detail-body p {
  margin-top: 10px;
}
header .property-details .property-detail-item .property-detail-extra-text {
  margin-top: 10px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 991.8px) {
  header .property-details .property-detail-item .property-detail-extra-text {
    font-size: 13px;
    line-height: 17px;
  }
}

.using-keytab .range-slider .ui-slider .ui-slider-handle:focus {
  outline: 2px solid #000;
}
.using-keytab .slider-preview .slick-list,
.using-keytab .card-swipper-grid .cs-grid-wrapper .grid-card {
  overflow: visible;
}
.using-keytab .card-swipper-grid .cs-grid-wrapper .grid-card > a {
  display: inline-block;
}
.using-keytab #menu-utility-menu a.ui-menu-item-wrapper:focus, .using-keytab #menu-utility-menu a.ui-menu-item-wrapper:focus-within {
  outline: 2px solid #000 !important;
  border: 2px solid #000;
}
.using-keytab .map_wrapper #map_page .gm-style-iw-d,
.using-keytab .gm-style .gm-style-iw {
  overflow: visible !important;
}

.floorplans .floorplan-search #available-filter.floorplan-search__filter .checkbox-clear {
  padding: 0;
  margin-left: 15px;
  margin-bottom: 8px;
}

.floorplan-search__filters .selectivo.selectivo--open .selectivo__dropdown {
  display: block !important;
}

.gallery .gallery-tab-content .promo-block {
  padding: 48px 58px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 991.8px) {
  .gallery .gallery-tab-content .promo-block {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.gallery .gallery-tab-content .promo-block .promo-block__close {
  padding: 0;
  color: #f8f7f1;
  font-size: 0;
  position: absolute;
  top: 49px;
  right: 59px;
  width: 16px;
  height: 16px;
  background-image: url(../images/close.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .gallery .gallery-tab-content .promo-block .promo-block__close {
    top: 22px;
    right: 22px;
  }
}
.gallery .gallery-tab-content .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item {
  min-height: 0;
}
.gallery .gallery-tab-content .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta {
  padding: 0;
  margin: 0;
}
.gallery .gallery-tab-content .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta p {
  margin-bottom: 17px;
  margin-top: 22px;
}
@media (max-width: 991.8px) {
  .gallery .gallery-tab-content .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta p {
    margin-bottom: 15px;
  }
}
.gallery .gallery-tab-content .promo-block .promo-block__content > a {
  margin-top: 5px;
}
.gallery .gallery-tab-content .promo-block .promo-block__button {
  display: inline-block;
}

.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block {
  padding: 93px 56px;
  margin-right: 32px;
  position: relative;
}
@media (max-width: 1600px) and (min-width: 992px) {
  .floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block {
    padding: 6.493vw 3.9vw;
  }
}
@media (max-width: 991.8px) {
  .floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block {
    padding: 30px;
    margin: 0;
  }
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__close {
  padding: 0;
  color: #f8f7f1;
  font-size: 0;
  position: absolute;
  top: 49px;
  right: 59px;
  width: 16px;
  height: 16px;
  background-image: url(../images/close.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__close {
    top: 22px;
    right: 22px;
  }
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item {
  min-height: auto;
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item::after {
  display: none;
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta {
  padding: 0;
  margin: 0;
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta p {
  margin: 30px 0;
}
@media (max-width: 991.8px) {
  .floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .floorplan-listing__grid-item.floorplan-listing__cta-item .floorplan-listing__cta p {
    margin: 20px 0;
  }
}
.floorplans .floorplan-listing__grid-item.floorplan-listing__cta-item .promo-block .promo-block__content .promo-block__button {
  display: inline-block;
  padding: 15px 20px;
}

.promo-block .promo-block__content > a {
  border-width: 3px;
}
.promo-block .promo-block__content > a:hover {
  color: var(--promo_block_cta_hover_text_color, #212322) !important;
  background-color: var(--promo_block_cta_hover_background_color, #f8f7f1) !important;
  border-color: var(--promo_block_cta_hover_border_color, #f8f7f1) !important;
}

.faq .faq-accordion .faq-accordion__container .faq-accordion__content .faq-accordion__item .faq-accordion__answer a {
  padding-top: 0;
}

.no-pois-message {
  margin-top: 20px;
}

.breadcrumb .breadcrumb__list .breadcrumb__list-item a:hover {
  text-decoration: underline;
}

.property-details:has(> .property-detail-item:nth-child(4)) {
  column-gap: 20px;
}

.property-details:not(:has(> div)),
.search-results__list:not(:has(> li)) {
  display: none;
}

.two_col_content_slider {
  width: 100%;
}

@media (min-width: 992px) {
  main .property-details:has(.property-detail-item:nth-child(4)) .property-detail-item {
    max-width: 22.29vw;
  }
}

.using-keytab header .header__nav-wrapper .header__utility .menu-utility-menu-container ul li a:focus, .using-keytab header .header__nav-wrapper .header__utility .menu-utility-menu-container ul li a:focus-within {
  border: 2px solid #333;
}

.hs-error-msgs:first-of-type + .hs-error-msgs {
  margin-top: 13px;
}

.simpleParallax,
.simple-parallax-initialized {
  height: 100%;
}

.zoom-parallax {
  transition: transform 500ms ease-in-out;
}

.header {
  width: 100%;
  color: var(--header-text-color, #ffffff);
  background: var(--header-background-gradient, none);
  background-color: var(--header-background-color, #f8f7f1);
  top: 0;
  padding: 20px;
  z-index: 1000;
  position: fixed;
  inset: 0 0 auto 0;
  --_header-desktop-menu-background-color: none;
  --_header-desktop-menu-label-color: var(--desktop-slide-text-color);
  --_header-desktop-menu-hovered-background-color: none;
  --_header-desktop-menu-hovered-label-color: #b79555;
  --_header-desktop-current-menu-label-color: #b79555;
  --_header-desktop-current-menu-background-color: none;
  --_header-desktop-submenu-current-menu-label-color: #f8f7f1;
  --_header-desktop-submenu-current-menu-background-color: #212322;
  --_header-desktop-submenu-background-color: none;
  --_header-desktop-submenu-label-color:#212322;
  --_header-desktop-submenu-hovered-background-color: #212322;
  --_header-desktop-submenu-hovered-label-color: #f8f7f1;
  --_header-slide-menu-background-color: none;
  --_header-slide-menu-label-color: var(--mobile-slide-text-color);
  --_header-slide-menu-hovered-background-color: none;
  --_header-slide-menu-hovered-label-color: #b79555;
  --_header-slide-menu-current-menu-label-color: #b79555;
  --_header-slide-menu-current-menu-background-color: none;
  --_header-slide-menu-submenu-current-menu-label-color: #b79555;
  --_header-slide-menu-submenu-current-menu-background-color: none;
  --_header-slide-menu-submenu-background-color: none;
  --_header-slide-menu-submenu-label-color: var(--mobile-slide-text-color);
  --_header-slide-menu-submenu-hovered-background-color: none;
  --_header-slide-menu-submenu-hovered-label-color: #b79555;
  /* Slide menu styles – opens top to bottom */
}
@media (min-width: 992px) {
  .header {
    padding-block: 36px;
    padding-inline: 6.458333333vi;
    padding-inline-start: 6.458333333vi;
  }
}
.header__nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "logo logo" "links links" "nav_options nav_options";
  column-gap: clamp(5px, 1vw, 36px);
  row-gap: 20px;
}
@media (min-width: 390px) {
  .header__nav-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo logo" "links nav_options";
  }
}
@media (min-width: 992px) {
  .header__nav-wrapper {
    grid-template-columns: auto auto 1fr auto auto auto;
    grid-template-rows: auto;
    grid-template-areas: "logo tel . links links nav_options";
    row-gap: 19px;
  }
}
@media (min-width: 1400px) {
  .header__nav-wrapper {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: minmax(79px, auto) auto;
    grid-template-areas: "tel logo links" "nav nav nav";
  }
}
.header__nav-wrapper:has(.header__utility) {
  grid-template-areas: "logo utility" "links links" "nav_options nav_options";
}
.header__nav-wrapper:has(.header__utility) .header__logo {
  place-self: start;
  align-self: center;
}
.header__nav-wrapper:has(.header__utility) .header__utility {
  place-self: end;
  align-self: center;
  overflow: auto;
}
.header__nav-wrapper:has(.header__utility) .header__utility ul {
  flex-direction: column;
}
@media (min-width: 390px) {
  .header__nav-wrapper:has(.header__utility) {
    grid-template-areas: "logo utility" "links nav_options";
  }
  .header__nav-wrapper:has(.header__utility) .header__utility ul {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .header__nav-wrapper:has(.header__utility) .header__utility ul {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .header__nav-wrapper:has(.header__utility) {
    grid-template-areas: "logo utility tel links links nav_options";
  }
  .header__nav-wrapper:has(.header__utility) .header__utility ul {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .header__nav-wrapper:has(.header__utility) {
    grid-template-areas: "utility logo links" "nav nav nav";
  }
  .header__nav-wrapper:has(.header__utility) .header__utility {
    place-self: start;
    align-self: center;
  }
}
.header__logo {
  grid-area: logo;
  place-self: center;
}
.header__logo .sticky-logo {
  display: none;
}
.header__logo picture,
.header__logo img {
  height: 29px;
}
@media (min-width: 992px) {
  .header__logo picture,
  .header__logo img {
    width: 150px;
    display: inline-block;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .header__logo picture,
  .header__logo img {
    width: auto;
    height: 54px;
  }
}
.header__tel {
  visibility: hidden;
  grid-area: tel;
  display: none;
  place-content: center;
}
@media (min-width: 992px) {
  .header__tel {
    display: block;
  }
}
.header__tel a {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.94px;
  letter-spacing: 0.02em;
  font-style: normal;
  color: var(--contact-text-color, #212322);
}
.header__tel a:hover {
  color: #b79555;
}
.header__links {
  grid-area: links;
  place-content: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (min-width: 390px) {
  .header__links {
    justify-content: start;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .header__links {
    gap: 6px;
    justify-content: end;
  }
}
.header__links .btn, .header__links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__links input[type=submit],
.header__links .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .header__links input[type=submit], .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  display: inline-block;
  padding: 8px 14px;
  color: var(--button-text-color, #f8f7f1);
  background-color: var(--button-background-color, #b79555);
  line-height: normal;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0.32px;
}
@media (min-width: 992px) {
  .header__links .btn, .header__links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__links input[type=submit],
  .header__links .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .header__links input[type=submit], .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    padding: 10.5px 35.5px;
  }
}
.header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  padding: 8px 14px;
}
@media (min-width: 992px) {
  .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    border-bottom-left-radius: 20px;
    padding: 10.5px 35px;
  }
}
.header__links .fill_btn {
  border-color: var(--button-background-color, #b79555);
  background-color: var(--button-background-color, #b79555);
  color: var(--button-text-color, #f8f7f1);
}
.header__links .fill_btn:hover {
  color: #f8f7f1;
  background-color: #212322;
  border-color: #212322;
}
.header__links .transparent_btn,
.header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-width: 1.5px;
  border-style: solid;
  background-color: transparent;
  border-color: var(--button-text-color, #212322);
  color: var(--button-text-color, #212322);
}
.header__links .transparent_btn:hover,
.header__links #schedule-tour-popup-button.schedule-tour-popup-button:hover {
  color: #f8f7f1;
  border-color: #212322;
  background-color: #212322;
}
.header__search {
  display: none;
  place-content: center;
}
@media (min-width: 992px) {
  .header__search {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
  }
}
.header__search-icon {
  display: inline-block;
  line-height: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.header__search-icon svg {
  stroke: #212322;
}
.header__nav {
  display: none;
  grid-area: nav;
  place-content: center;
}
@media (min-width: 1400px) {
  .header__nav {
    display: block;
  }
}
.header__nav .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.header__nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: 10px;
  padding-block-start: 10px;
  padding-block-end: 5px;
  background-color: var(--_header-desktop-menu-background-color);
  color: var(--_header-desktop-menu-label-color);
}
.header__nav .menu > li > a:hover, .header__nav .menu > li > a:active {
  background-color: var(--_header-desktop-menu-hovered-background-color);
  color: var(--_header-desktop-menu-hovered-label-color);
}
.header__nav .menu > li.menu-item-has-children > .sub-menu {
  margin-block-start: 2px;
  inset-inline-start: 0 !important;
}
.header__nav .menu li.menu-item.current-menu-item a, .header__nav .menu .header li.current-menu-item.header__slide-menu-nav-search a, .header .header__nav .menu li.current-menu-item.header__slide-menu-nav-search a {
  background-color: var(--_header-desktop-current-menu-background-color);
  color: var(--_header-desktop-current-menu-label-color);
}
.header__nav .menu li.menu-item-has-children .sub-menu li.current-menu-item a {
  background-color: var(--_header-desktop-submenu-current-menu-background-color);
  color: var(--_header-desktop-submenu-current-menu-label-color);
}
.header__nav .menu li.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.header__nav .menu li.menu-item-has-children.menu-item--open {
  z-index: 2;
}
.header__nav .menu li.menu-item-has-children a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
  padding-inline-end: 0;
}
.header__nav .menu li.menu-item-has-children a .menu-arrow {
  display: inline-block;
  box-sizing: content-box;
  padding-inline: 10px;
  width: 12px;
  align-self: stretch;
  background-color: currentColor;
  mask: url("../images/dropdown.svg") no-repeat center;
  mask-size: 12px 7px;
  -webkit-mask: url("../images/dropdown.svg") no-repeat center;
  -webkit-mask-size: 12px 7px;
  transform: rotate(0deg);
  transition: transform 200ms ease-in-out;
}
.header__nav .menu li.menu-item-has-children.menu-item--open > a .menu-arrow {
  transform: rotate(180deg);
}
.header__nav .menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  background-color: var(--header-background-color);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-block: 10px;
  padding-inline: 10px;
  min-width: 240px;
  list-style-type: none;
}
.header__nav .menu li.menu-item-has-children > .sub-menu li a {
  padding-block: 10px;
  padding-inline: 10px;
  color: var(--_header-desktop-submenu-label-color);
  background-color: var(--_header-desktop-submenu-background-color);
}
.header__nav .menu li.menu-item-has-children > .sub-menu li a:hover {
  color: var(--_header-desktop-submenu-hovered-label-color);
  background-color: var(--_header-desktop-submenu-hovered-background-color);
}
.header__nav .menu li.menu-item-has-children > .sub-menu li.menu-item-has-children {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.header__nav .menu li.menu-item-has-children > .sub-menu li.menu-item-has-children a {
  padding-inline-end: 0;
}
.header__nav-options {
  grid-area: nav_options;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 390px) {
  .header__nav-options {
    justify-content: end;
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .header__nav-options {
    display: none;
  }
}
@media (max-width: 389.8px) {
  .header__nav-options .mob {
    order: 1;
  }
}
.header__nav-options .mob img {
  width: 21px;
  height: 21px;
  max-width: none;
}
.header__nav-options .menu-toggle {
  width: auto;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  background: transparent;
  border-radius: 3px;
  transition: all 0.2s linear;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 389.8px) {
  .header__nav-options .menu-toggle {
    order: 0;
  }
}
.header__nav-options .menu-toggle span {
  width: 26px;
  height: 1px;
  background-color: #212322;
  transition: all 0.8s linear;
}
.header__nav-options .menu-toggle span:first-child {
  margin-block-end: 5px;
}
.header__nav-options .menu-toggle span:nth-child(2) {
  margin-block-end: 6px;
}
@media (min-width: 1400px) {
  .header.header_theme2 .header__nav-wrapper {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: "logo logo logo" "nav links links";
  }
}
@media (min-width: 1400px) {
  .header.header_theme2 .header__tel {
    display: none;
  }
}
@media (min-width: 1400px) {
  .header.header_theme2 .header__nav-options {
    display: none;
  }
}
@media (min-width: 992px) {
  .header.header_theme2 {
    padding: 12.5px 36px 14.5px;
  }
}
@media (min-width: 1400px) {
  .header.header_theme3 .header__nav-wrapper {
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
    grid-template-areas: "logo nav links links";
  }
}
@media (min-width: 1400px) {
  .header.header_theme3 .header__tel {
    display: none;
  }
}
@media (min-width: 1400px) {
  .header.header_theme3 .header__logo {
    grid-area: logo;
    place-self: center;
  }
}
@media (min-width: 1400px) {
  .header.header_theme3 .header__logo picture,
  .header.header_theme3 .header__logo img {
    display: inline-block;
    width: 150px;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .header.header_theme3 .header__nav-options {
    display: none;
  }
}
.header .header__slide-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--desktop-slide-menu-background-color);
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 200;
  padding: 23px 0px;
  color: var(--mobile-slide-text-color);
}
@media (min-width: 992px) {
  .header .header__slide-menu {
    padding: 50px 0;
    background-color: var(--desktop-slide-menu-background-color);
    color: var(--desktop-slide-text-color);
  }
}
.header .header__slide-menu[data-open=true] {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.header .header__slide-menu-content {
  padding-inline: 65px;
  padding-block-start: 30px;
  flex: 1;
}
@media (min-width: 576px) {
  .header .header__slide-menu-content {
    max-width: 20%;
    min-width: 263px;
    width: max-content;
    margin-inline: auto;
    padding-inline: 0;
  }
}
.header .header__slide-menu-header {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-inline: 30px;
  gap: 6px;
}
@media (min-width: 992px) {
  .header .header__slide-menu-header {
    width: 100%;
    top: 0;
    gap: 20px;
  }
}
.header .header__slide-menu-search {
  display: none;
}
@media (min-width: 992px) {
  .header .header__slide-menu-search {
    display: block;
  }
}
.header .header__slide-menu-search-icon {
  display: inline-block;
  line-height: 0;
  padding-block: 4.5px;
  padding-inline: 4.5px;
  cursor: pointer;
}
.header .header__slide-menu-search-icon svg {
  width: 20px;
  height: 20px;
  stroke: #f8f7f1;
}
.header .header__slide-menu-links {
  display: none;
}
@media (min-width: 992px) {
  .header .header__slide-menu-links {
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}
.header .header__slide-menu-links .btn, .header .header__slide-menu-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header .header__slide-menu-links input[type=submit],
.header .header__slide-menu-links .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .header .header__slide-menu-links input[type=submit] {
  display: inline-block;
  height: 39px;
  padding: 13px 20px 7px;
  color: var(--button-text-color, #f8f7f1);
  background-color: var(--button-background-color, #c47e5a);
  line-height: 0.64;
}
@media (min-width: 992px) {
  .header .header__slide-menu-links .btn, .header .header__slide-menu-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header .header__slide-menu-links input[type=submit],
  .header .header__slide-menu-links .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .header .header__slide-menu-links input[type=submit] {
    padding: 12.5px 36px 14.5px;
    height: 41px;
  }
}
.header .header__slide-menu-links .fill_btn {
  border-color: var(--button-background-color, #c47e5a);
  line-height: 0.64;
}
.header .header__slide-menu-links .fill_btn:hover {
  color: #f8f7f1;
  background-color: #212322;
  border-color: #212322;
}
.header .header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button {
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
}
.header .header__slide-menu-links .transparent_btn,
.header .header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button {
  border-width: 1px !important;
  border-style: solid !important;
  background-color: transparent;
  border-color: var(--button-text-color, #f8f7f1);
  color: var(--button-text-color, #f8f7f1);
  padding: 9.5px 23px 11.5px;
  line-height: 1;
  letter-spacing: 0.367px;
}
@media (min-width: 992px) {
  .header .header__slide-menu-links .transparent_btn,
  .header .header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button {
    padding: 11px 34px 12px 38px;
  }
}
.header .header__slide-menu-links .transparent_btn:hover,
.header .header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button:hover {
  color: #f8f7f1;
  border-color: #212322;
  background-color: #212322;
}
.header .header__slide-menu-close-button {
  color: var(--mobile-slide-text-color, #f8f7f1);
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 992px) {
  .header .header__slide-menu-close-button {
    color: var(--desktop-slide-text-color, #f8f7f1);
  }
}
.header .header__slide-menu-close-button svg {
  width: 16px;
  height: 16px;
  fill: #f8f7f1;
}
@media (min-width: 992px) {
  .header .header__slide-menu-close-button svg {
    width: 16px;
    height: 16px;
  }
}
.header .header__slide-menu-nav {
  display: flex;
  align-items: center;
  border-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .header .header__slide-menu-nav {
    justify-content: center;
  }
}
.header .header__slide-menu-nav .menu-header-menu-container {
  width: 100%;
  border-bottom: 1px solid var(--mobile-slide-text-color);
}
@media (max-width: 991.8px) {
  .header .header__slide-menu-nav .menu-header-menu-container {
    width: 100%;
  }
}
.header .header__slide-menu .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.header .header__slide-menu .menu li.menu-item.current-menu-item > a, .header .header__slide-menu .menu li.current-menu-item.header__slide-menu-nav-search > a {
  background-color: var(--_header-slide-menu-current-menu-background-color);
  color: var(--_header-slide-menu-current-menu-label-color);
}
.header .header__slide-menu .menu li.menu-item-has-children .sub-menu li.current-menu-item > a {
  background-color: var(--_header-slide-menu-submenu-current-menu-background-color);
  color: var(--_header-slide-menu-submenu-current-menu-label-color);
}
.header .header__slide-menu .menu li.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.header .header__slide-menu .menu li.menu-item-has-children.menu-item--open {
  z-index: 2;
}
.header .header__slide-menu .menu li.menu-item-has-children a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
  padding-inline-end: 0;
}
.header .header__slide-menu .menu li.menu-item-has-children a .menu-arrow {
  display: inline-block;
  box-sizing: content-box;
  padding-inline: 10px;
  width: 12px;
  align-self: stretch;
  background-color: currentColor;
  mask: url("../images/dropdown.svg") no-repeat center;
  mask-size: 12px 7px;
  -webkit-mask: url("../images/dropdown.svg") no-repeat center;
  -webkit-mask-size: 12px 7px;
  transform: rotate(0deg);
  transition: transform 200ms ease-in-out;
}
.header .header__slide-menu .menu li.menu-item-has-children.menu-item--open > a .menu-arrow {
  transform: rotate(180deg);
}
.header .header__slide-menu .menu li.menu-item-has-children > .sub-menu {
  background-color: none;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-block-start: 20px;
  padding-block-end: 10px;
  padding-inline-start: 10px;
  padding-inline-end: 10px;
  list-style-type: none;
}
.header .header__slide-menu .menu li.menu-item-has-children > .sub-menu li a {
  padding-block: 10px;
  padding-inline: 10px;
  color: var(--_header-slide-menu-submenu-label-color);
  background-color: var(--_header-slide-menu-submenu-background-color);
}
.header .header__slide-menu .menu li.menu-item-has-children > .sub-menu li a:hover {
  color: var(--_header-slide-menu-submenu-hovered-label-color);
  background-color: var(--_header-slide-menu-submenu-hovered-background-color);
}
.header .header__slide-menu .menu li.menu-item-has-children > .sub-menu li.menu-item-has-children {
  width: 100%;
}
.header .header__slide-menu .menu li.menu-item-has-children > .sub-menu li.menu-item-has-children a {
  padding-inline-end: 0;
}
.header .header__slide-menu .menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline-start: 10px;
  padding-inline-end: 10px;
  padding-block-start: 15px;
  padding-block-end: 15px;
  background-color: var(--_header-slide-menu-background-color);
  color: var(--_header-slide-menu-label-color);
}
.header .header__slide-menu .menu > li > a:hover, .header .header__slide-menu .menu > li > a:active {
  background-color: var(--_header-slide-menu-hovered-background-color);
  color: var(--_header-slide-menu-hovered-label-color);
}
.header .header__slide-menu .menu > li.menu-item-has-children > .sub-menu {
  inset-inline-start: 0;
  inset-inline-end: 10px;
  padding-inline-end: 10px;
  padding-block-end: 10px;
}
.header .header__slide-menu-nav-search {
  margin-top: 20px;
  display: none;
}
.header .header__slide-menu-nav-search a {
  display: flex;
  align-items: center;
}
.header .header__slide-menu-nav-search-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
}
.header .header__slide-menu-nav-search svg {
  width: 100%;
  height: 100%;
  color: currentColor;
  stroke: currentColor;
}
.header .header__slide-menu-extra-info {
  width: min-content;
  margin: 0;
  padding-top: 52px;
  border-width: 1px 0 0 0;
  border-style: solid;
}
@media (min-width: 576px) {
  .header .header__slide-menu-extra-info {
    margin: 0 auto;
  }
}
.header .header__slide-menu-extra-info .column {
  margin-bottom: 30px;
}
.header .header__slide-menu-extra-info h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--desktop-slide-text-color, #f8f7f1);
}
.header .header__slide-menu-extra-info p,
.header .header__slide-menu-extra-info a {
  font-family: "acumin-pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  color: var(--desktop-slide-text-color, #f8f7f1);
}
.header .header__slide-menu-extra-info p {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] {
    width: 100%;
    background: transparent;
    top: 0px;
    z-index: 1000;
  }
}
@media (min-width: 1400px) {
  .header[data-transparent-in-desktop=true] .header__utility ul {
    padding-inline-start: 10px;
  }
}
.header[data-transparent-in-desktop=true] .header__utility ul li a {
  color: #f8f7f1;
  border-bottom: 1px solid #f8f7f1;
}
@media (max-width: 991.8px) {
  .header[data-transparent-in-desktop=true] .header__utility ul li a {
    color: #212322;
    border-color: #212322;
  }
}
.header[data-transparent-in-desktop=true] .header__utility ul li a::after {
  display: inline-block;
  content: "";
  width: 23px;
  height: 12px;
  background-color: currentColor;
  mask: url("../images/arrow-left.svg") no-repeat center;
  mask-size: 100% 100%;
  -webkit-mask: url("../images/arrow-left.svg") no-repeat center;
  -webkit-mask-size: 100% 100%;
}
.header[data-transparent-in-desktop=true] .header__utility ul li a:hover {
  color: #b79555;
  border-color: #b79555;
}
.header[data-transparent-in-desktop=true] .header__utility ul li a:hover::after {
  background-color: #b79555 !important;
}
.header[data-transparent-in-desktop=true] .header__nav .menu-item a, .header[data-transparent-in-desktop=true] .header__nav .header__slide-menu-nav-search a {
  color: #f8f7f1;
}
.header[data-transparent-in-desktop=true] .header__nav .menu-item a:hover, .header[data-transparent-in-desktop=true] .header__nav .header__slide-menu-nav-search a:hover {
  color: #b79555;
}
.header[data-transparent-in-desktop=true] .header__nav .menu-item.current-menu-item a, .header[data-transparent-in-desktop=true] .header__nav .current-menu-item.header__slide-menu-nav-search a {
  color: #b79555;
}
.header[data-transparent-in-desktop=true] .header__tel a {
  color: var(--contact-text-color, #212322);
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__tel a {
    color: var(--contact-text-color, #f8f7f1);
  }
}
.header[data-transparent-in-desktop=true] .header__tel a:hover {
  color: #b79555;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__links .btn, .header[data-transparent-in-desktop=true] .header__links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header[data-transparent-in-desktop=true] .header__links input[type=submit],
  .header[data-transparent-in-desktop=true] .header__links .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .header[data-transparent-in-desktop=true] .header__links input[type=submit] {
    color: var(--button-text-color, #f8f7f1);
    background-color: var(--button-background-color, #b79555);
  }
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__links .fill_btn {
    border-color: var(--button-background-color, #b79555);
  }
  .header[data-transparent-in-desktop=true] .header__links .fill_btn:hover {
    color: #212322;
    background-color: #f8f7f1;
    border-color: #f8f7f1;
  }
}
.header[data-transparent-in-desktop=true] .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    border-bottom-left-radius: 20px;
  }
}
.header[data-transparent-in-desktop=true] .header__links .transparent_btn,
.header[data-transparent-in-desktop=true] .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-width: 1px;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__links .transparent_btn,
  .header[data-transparent-in-desktop=true] .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    border-width: 1.5px;
    border-style: solid;
    background-color: transparent;
    border-color: #f8f7f1;
    color: #f8f7f1;
    padding: 10.5px 35px;
  }
  .header[data-transparent-in-desktop=true] .header__links .transparent_btn:hover,
  .header[data-transparent-in-desktop=true] .header__links #schedule-tour-popup-button.schedule-tour-popup-button:hover {
    color: #212322;
    background-color: #f8f7f1;
    border-color: #f8f7f1;
  }
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__nav-options .menu-toggle span {
    background-color: #f8f7f1;
  }
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__search-icon svg {
    stroke: #f8f7f1;
  }
}
@media (min-width: 992px) {
  .header .header__logo .default-logo {
    display: none;
  }
}
.header__utility {
  grid-template-areas: utility;
}
.header__utility ul {
  display: flex;
  list-style: none;
  gap: 16px;
  inline-size: max-content;
  padding-inline-start: 0;
}
@media (min-width: 1400px) {
  .header__utility ul {
    padding-inline-start: 10px;
  }
}
.header__utility ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  color: var(--header-text-color, #212322);
  padding-block-end: 5px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  line-height: 18px;
  border-bottom: 1px solid var(--header-text-color, #212322);
  padding-left: 1px;
  transition: none;
}
@media (max-width: 991.8px) {
  .header__utility ul li a {
    font-size: 13px;
    line-height: 17px;
    padding-block-end: 2px;
    color: #212322;
    gap: 21px;
  }
}
@media (min-width: 992px) {
  .header__utility ul li a::after {
    width: 23px;
    height: 7.3px;
  }
}
.header__utility ul li a:hover {
  color: #b79555;
  border-color: #b79555;
}
.header__utility ul li a:hover::after {
  background-color: #b79555;
}
.header__utility ul li a::after {
  display: inline-block;
  content: "";
  width: 23px;
  height: 12px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2214%22%20viewBox%3D%220%200%2032%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M32%206.47917V7.52083C28.1616%209%2024.8043%2010.8208%2024.8043%2014H22.4934C22.4934%2010.5792%2024.9386%208.65833%2028.5644%207.92083V7.82083H0V6.17917H28.5588V6.07917C24.933%205.3375%2022.4878%203.42083%2022.4878%200H24.7987C24.7987%203.17917%2028.156%205%2031.9944%206.47917H32Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  mask-size: 100% 100%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2214%22%20viewBox%3D%220%200%2032%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M32%206.47917V7.52083C28.1616%209%2024.8043%2010.8208%2024.8043%2014H22.4934C22.4934%2010.5792%2024.9386%208.65833%2028.5644%207.92083V7.82083H0V6.17917H28.5588V6.07917C24.933%205.3375%2022.4878%203.42083%2022.4878%200H24.7987C24.7987%203.17917%2028.156%205%2031.9944%206.47917H32Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  -webkit-mask-size: 100% 100%;
}

@media (min-width: 992px) {
  body:has(.specials-bar) .header[data-transparent-in-desktop=true] {
    top: 45px;
  }
}
@media (min-width: 992px) {
  body:has(.specials-bar.hidden) .header[data-transparent-in-desktop=true] {
    top: 0;
  }
}
@media (min-width: 992px) {
  body:has(#wpadminbar):has(.specials-bar) .header[data-transparent-in-desktop=true] {
    top: 77px;
  }
}
@media (min-width: 992px) {
  body:has(#wpadminbar):has(.specials-bar.hidden) .header[data-transparent-in-desktop=true] {
    top: 32px;
  }
}

/* Search Pop up styles */
.search-pop-up {
  display: block;
  position: fixed;
  inset: 0;
  margin: 0;
  width: 100%;
  background-color: #b79555;
  opacity: 1;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  padding-inline: 40px;
  padding-block: 28px;
  overflow-y: auto;
  z-index: -1;
}
@media (min-width: 992px) {
  .search-pop-up {
    padding-inline: 5.556vi;
  }
}
.search-pop-up.show {
  display: block;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  z-index: 1100;
}
.search-pop-up .search-close {
  margin: 0;
  font-size: 0;
  width: 12px;
  height: 12px;
  background-image: url("../images/close.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 28px;
  inset-block-start: 28px;
}
@media (max-width: 991.8px) {
  .search-pop-up .search-close {
    inset-inline-end: 40px;
  }
}
.search-pop-up #searchform {
  display: flex;
  flex-direction: column;
  margin-block-start: 46px;
}
@media (min-width: 992px) {
  .search-pop-up #searchform {
    margin-block-start: 80px;
  }
}
.search-pop-up #searchform label {
  font-size: 32px;
  color: #f8f7f1;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  line-height: normal;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 991.8px) {
  .search-pop-up #searchform label {
    font-size: 26px;
  }
}
.search-pop-up #searchform .search-input-wrapper {
  position: relative;
  display: block;
  line-height: 0;
}
.search-pop-up #searchform .search-input-wrapper::after {
  position: absolute;
  inset-block-end: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: currentColor;
}
.search-pop-up #searchform input[type=text],
.search-pop-up #searchform textarea {
  border: none;
  font-weight: normal;
  width: 100%;
  overflow: hidden;
  word-break: break-word;
  color: currentColor;
  caret-color: currentColor;
  text-indent: 0;
  position: relative;
  padding-left: 0;
  background-color: transparent;
  font-size: 20px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  border-radius: 0;
  outline: 0;
  padding-inline: 0;
  padding-block: 10px;
  transition: margin-block-start 200ms ease-in-out, height 200ms ease-in-out;
  margin-block-start: 10px;
  resize: none;
}
@media (max-width: 991.8px) {
  .search-pop-up #searchform input[type=text],
  .search-pop-up #searchform textarea {
    font-size: 18px;
    margin-block-start: 34px;
    min-height: 40px;
    padding-inline: 5px;
  }
}
@media (max-width: 991.8px) {
  .search-pop-up #searchform input[type=text]:focus, .search-pop-up #searchform input[type=text]:not(:placeholder-shown),
  .search-pop-up #searchform textarea:focus,
  .search-pop-up #searchform textarea:not(:placeholder-shown) {
    margin-block-start: 34px;
  }
}
.search-pop-up #searchform textarea[type=text] {
  height: 54px;
}

body.resource-thank-you .header__nav-wrapper, body.book-a-tour .header__nav-wrapper, body.resource .header__nav-wrapper {
  grid-template-areas: "logo";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
body.resource-thank-you .header__nav-wrapper > :not(.header__logo), body.book-a-tour .header__nav-wrapper > :not(.header__logo), body.resource .header__nav-wrapper > :not(.header__logo) {
  display: none;
}

@media (max-width: 991.8px) {
  .header {
    padding: 25px 20px;
  }
}
.header .header__nav-wrapper .header__links .header__search .header__search-icon.header__nav-search-icon:hover svg {
  stroke: #b79555;
}

@media (max-width: 991.8px) {
  header.header .header__nav-wrapper .header__logo a img.transparent-logo {
    display: none;
  }
}
/* Styles for the newletter form section in footer */
.section-newsletter {
  --_section-bg-color: var(--section-bg-color, #212322);
  --_section-text-color: var(--section-text-color, #f8f7f1);
  background-color: var(--_section-bg-color);
  color: var(--_section-text-color);
}
.section-newsletter__container {
  display: flex;
  flex-direction: column;
  margin-inline: var(--lr-content-margin);
  padding-block: var(--module-tb-margin);
  padding-block-start: 73px;
  padding-inline: 5px;
  gap: 40px;
}
@media (min-width: 992px) {
  .section-newsletter__container {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 0;
  }
}
.section-newsletter__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: var(--footer-box-alignment, "start");
  flex: 1;
}
@media (min-width: 992px) {
  .section-newsletter__header {
    max-width: 32vi;
    gap: 30px;
  }
}
.section-newsletter__title {
  color: currentColor;
  font-style: normal;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: var(--footer-text-alignment, "left");
}
.section-newsletter__title {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__title {
    font-size: calc(26px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__title {
    font-size: 32px;
  }
}
.section-newsletter__description {
  display: inline-block;
}
.section-newsletter__description p {
  color: currentColor;
  line-height: 26px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  letter-spacing: 0.02rem;
  text-align: var(--footer-text-alignment, "left");
}
.section-newsletter__description p {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__description p {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__description p {
    font-size: 20px;
  }
}
.section-newsletter__description p {
  line-height: 18px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__description p {
    line-height: calc(18px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__description p {
    line-height: 26px;
  }
}
.section-newsletter__form {
  flex: 1;
}
@media (min-width: 992px) {
  .section-newsletter__form {
    max-inline-size: 39.24vi;
  }
}
.section-newsletter__form .hs-form fieldset.form-columns-2 {
  gap: 60px;
}
.section-newsletter__form .hs-form .hs-form-field {
  margin-block-end: 45px;
  margin-bottom: 45px;
}
.section-newsletter__form .hs-form .hs-form-field > label {
  display: inline-block;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  margin-block-end: 10px;
  padding-block-end: 0;
  width: 100%;
  text-transform: capitalize;
}
.section-newsletter__form .hs-form .hs-form-field > label {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__form .hs-form .hs-form-field > label {
    font-size: calc(18px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__form .hs-form .hs-form-field > label {
    font-size: 20px;
  }
}
.section-newsletter__form .hs-form .hs-form-field > label {
  line-height: 22px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__form .hs-form .hs-form-field > label {
    line-height: calc(22px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__form .hs-form .hs-form-field > label {
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .section-newsletter__form .hs-form .hs-form-field > label {
    line-height: 12px;
  }
}
.section-newsletter__form .hs-form .hs-form-field.hs-fieldtype-select label {
  margin-block-end: 30px;
}
@media (min-width: 992px) {
  .section-newsletter__form .hs-form .hs-form-field.hs-fieldtype-select label {
    line-height: 15px;
  }
}
.section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #212322;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.84%201L6.31751%205.52251C6.21213%205.62803%206.06913%205.68732%205.92001%205.68732C5.77088%205.68732%205.62788%205.62803%205.52251%205.52251L0.999992%201%22%20stroke%3D%22%23F8F7F1%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 10px 5px;
  padding-right: 21px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input {
  color: var(--_section-text-color);
  background-color: transparent;
  padding-inline: 0;
  padding-block-start: 5px;
  padding-block-end: 3px;
  border-block-end: 1px solid var(--_section-text-color);
  border-block-start: 0;
  border-inline: 0;
}
.section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:-webkit-autofill, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:autofill,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:-webkit-autofill,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:autofill,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:-webkit-autofill,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:autofill {
  background: transparent !important;
  color: var(--_section-text-color) !important;
  -webkit-text-fill-color: var(--_section-text-color);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
.section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:-webkit-autofill:hover, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:-webkit-autofill:focus, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:-webkit-autofill:focus-within, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:autofill:hover, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:autofill:focus, .section-newsletter__form .hs-form .hs-form-field select.hs-input.hs-input:autofill:focus-within,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:-webkit-autofill:hover,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:-webkit-autofill:focus,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:-webkit-autofill:focus-within,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:autofill:hover,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:autofill:focus,
.section-newsletter__form .hs-form .hs-form-field input[type=email].hs-input.hs-input:autofill:focus-within,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:-webkit-autofill:hover,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:-webkit-autofill:focus,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:-webkit-autofill:focus-within,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:autofill:hover,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:autofill:focus,
.section-newsletter__form .hs-form .hs-form-field input[type=text].hs-input.hs-input:autofill:focus-within {
  background: transparent !important;
  color: var(--_section-text-color) !important;
  -webkit-text-fill-color: var(--_section-text-color);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
.section-newsletter__form .hs-form .hs-error-msgs {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.section-newsletter__form .hs-form .hs-error-msgs .hs-error-msg {
  font-size: 12px;
  color: red;
  margin-block-start: 3px;
  padding-block-end: 0;
}
.section-newsletter__form .hs-form .hs-submit input[type=submit] {
  padding: 13px 36px;
}
.section-newsletter__form .hs-form .submitted-message {
  color: currentColor;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: start;
}
.section-newsletter__form .hs-form .submitted-message {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .section-newsletter__form .hs-form .submitted-message {
    font-size: calc(26px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .section-newsletter__form .hs-form .submitted-message {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .section-newsletter__form .hs-form .submitted-message {
    height: 100%;
  }
}

/* Footer styles */
.footer {
  --_section-bg-color: var(--section-bg-color, #212322);
  --_section-bg: var(--section-bg, none);
  --_section-bg-repeat: var(--section-bg-repeat, no-repeat);
  --_section-bg-size: var(--section-bg-size, cover);
  --_section-hide-air-cta: var(--section-hide-air-cta, flex);
  --_section-text-color: var(--section-text-color, #f8f7f1);
  --_section-text-hovered-color: var(--footer-text-hovered, #f7efd8);
  color: var(--_section-text-color);
  background-image: var(--_section-bg);
  background-repeat: var(--_section-bg-repeat);
  background-size: var(--_section-bg-size);
}
.footer .heading-4 {
  color: var(--_section-text-color);
  margin-bottom: 20px;
}
.footer__block {
  background-color: var(--_section-bg-color);
}
.footer__block-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-inline: var(--lr-content-margin);
  padding-block: var(--module-tb-margin);
  padding-inline: 5px;
}
@media (min-width: 992px) {
  .footer__block-wrapper {
    flex-direction: row;
    gap: 7.5vw;
    gap: 8vi;
    padding-inline: 0;
  }
}
.footer__block-wrapper::before, .footer__block-wrapper::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--_section-text-color);
}
.footer__block-wrapper::before {
  display: none;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.footer__block-wrapper::after {
  inset-inline-start: 0;
  inset-block-end: 0;
}
.footer__block-details ul {
  list-style: none;
  padding-inline-start: 0;
  margin-inline-start: 0;
}
.footer__block-details ul li {
  color: var(--_section-text-color);
}
.footer__block-details p {
  color: var(--_section-text-color);
}
.footer__block-details a {
  color: var(--_section-text-color);
}
.footer__block-details a:hover {
  color: var(--_section-text-hovered-color);
}
.footer__block:first-child .footer__block-wrapper::before {
  display: block;
}
.footer__block:last-child .footer__block-wrapper::after {
  display: none;
}
.footer__block-item--logo {
  max-width: 220px;
}
.footer__block-item--lease .footer__block-title, .footer__block-item--address .footer__block-title, .footer__block-item--contact .footer__block-title, .footer__block-item--business-hours .footer__block-title, .footer__block-item--promo .footer__block-title {
  font-weight: 400;
  font-style: normal;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  color: currentColor;
  margin-bottom: 18px;
  text-align: var(--footer-text-alignment, "left");
  line-height: 1;
}
.footer__block-item--lease .footer__block-title, .footer__block-item--address .footer__block-title, .footer__block-item--contact .footer__block-title, .footer__block-item--business-hours .footer__block-title, .footer__block-item--promo .footer__block-title {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--lease .footer__block-title, .footer__block-item--address .footer__block-title, .footer__block-item--contact .footer__block-title, .footer__block-item--business-hours .footer__block-title, .footer__block-item--promo .footer__block-title {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--lease .footer__block-title, .footer__block-item--address .footer__block-title, .footer__block-item--contact .footer__block-title, .footer__block-item--business-hours .footer__block-title, .footer__block-item--promo .footer__block-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .footer__block-item--lease .footer__block-title, .footer__block-item--address .footer__block-title, .footer__block-item--contact .footer__block-title, .footer__block-item--business-hours .footer__block-title, .footer__block-item--promo .footer__block-title {
    font-family: "RecklessNeue-MediumItalic", sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
  }
}
.footer__block-item--lease a, .footer__block-item--address a, .footer__block-item--contact a, .footer__block-item--business-hours a, .footer__block-item--promo a {
  color: currentColor;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  line-height: 21px;
  letter-spacing: 0.01rem;
  font-style: normal;
  text-align: var(--footer-text-alignment, "left");
  line-height: 1.125;
  cursor: pointer;
}
.footer__block-item--lease a, .footer__block-item--address a, .footer__block-item--contact a, .footer__block-item--business-hours a, .footer__block-item--promo a {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--lease a, .footer__block-item--address a, .footer__block-item--contact a, .footer__block-item--business-hours a, .footer__block-item--promo a {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--lease a, .footer__block-item--address a, .footer__block-item--contact a, .footer__block-item--business-hours a, .footer__block-item--promo a {
    font-size: 18px;
  }
}
.footer__block-item--lease a:hover, .footer__block-item--address a:hover, .footer__block-item--contact a:hover, .footer__block-item--business-hours a:hover, .footer__block-item--promo a:hover {
  color: #c47e5a !important;
}
.footer__block-item--lease ul li, .footer__block-item--address ul li, .footer__block-item--contact ul li, .footer__block-item--business-hours ul li, .footer__block-item--promo ul li {
  line-height: 1.125;
}
.footer__block-item--promo {
  position: relative;
  display: var(--_section-hide-air-cta);
  gap: 10px;
  flex-direction: column;
  max-inline-size: 242px;
}
@media (max-width: 991.8px) {
  .footer__block-item--promo {
    order: 1;
    max-inline-size: 100%;
  }
}
.footer__block-item--promo::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--_section-text-color);
  inset-block-end: 0;
  inset-inline-start: 0;
}
.footer__block-item--promo .footer__block-title {
  color: currentColor;
  font-size: 26px;
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  width: 100%;
  display: inline-block;
  line-height: 1;
  text-align: var(--footer-text-alignment, "left");
}
.footer__block-item--promo .footer__block-title {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--promo .footer__block-title {
    font-size: calc(26px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--promo .footer__block-title {
    font-size: 28px;
  }
}
.footer__block-item--promo .footer__block-title::before, .footer__block-item--promo .footer__block-title::after {
  display: none;
}
@media (min-width: 992px) {
  .footer__block-item--promo .footer__block-title {
    max-width: 230px;
    width: 100%;
  }
}
.footer__block-item--promo a {
  color: currentColor;
  font-weight: 300;
  font-size: 16px;
  font-family: "acumin-pro", sans-serif;
  line-height: 100%;
  letter-spacing: 0.02rem;
  text-align: var(--footer-text-alignment, "left");
  color: inherit;
  cursor: pointer;
}
.footer__block-item--quick-links {
  position: relative;
}
.footer__block-item--quick-links::after {
  inset-block-end: 0;
}
.footer__block-item--quick-links ul {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
  width: unset;
  min-inline-size: 50%;
  max-inline-size: max-content;
}
@media (min-width: 992px) {
  .footer__block-item--quick-links ul {
    width: 100%;
    width: 21ch;
  }
}
.footer__block-item--quick-links ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--_section-text-color);
  padding-block-end: 8px;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  cursor: pointer;
  inline-size: 179px;
  color: var(--_section-text-color);
  transition: none;
  inline-size: 100%;
  word-break: break-all;
  gap: 8px;
}
@media (max-width: 991.8px) {
  .footer__block-item--quick-links ul li a {
    inline-size: unset;
  }
}
.footer__block-item--quick-links ul li a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 12px;
  background-color: var(--_section-text-color);
  mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAyMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyIDYuMDUzNTdWNi45NDY0M0MxOS4zNjExIDguMjE0MjkgMTcuMDUzIDkuNzc1IDE3LjA1MyAxMi41TDE1LjQ2NDIgMTIuNUMxNS40NjQyIDkuNTY3ODYgMTcuMTQ1MyA3LjkyMTQzIDE5LjYzODEgNy4yODkyOVY3LjIwMzU3TDAgNy4yMDM1N0wwIDUuNzk2NDNMMTkuNjM0MiA1Ljc5NjQzVjUuNzEwNzFDMTcuMTQxNSA1LjA3NSAxNS40NjA0IDMuNDMyMTQgMTUuNDYwNCAwLjVMMTcuMDQ5MSAwLjVDMTcuMDQ5MSAzLjIyNSAxOS4zNTcyIDQuNzg1NzEgMjEuOTk2MiA2LjA1MzU3SDIyWiIgZmlsbD0iI0Y4RjdGMSIvPgo8L3N2Zz4K") no-repeat center;
  mask-size: 100% 100%;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAyMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyIDYuMDUzNTdWNi45NDY0M0MxOS4zNjExIDguMjE0MjkgMTcuMDUzIDkuNzc1IDE3LjA1MyAxMi41TDE1LjQ2NDIgMTIuNUMxNS40NjQyIDkuNTY3ODYgMTcuMTQ1MyA3LjkyMTQzIDE5LjYzODEgNy4yODkyOVY3LjIwMzU3TDAgNy4yMDM1N0wwIDUuNzk2NDNMMTkuNjM0MiA1Ljc5NjQzVjUuNzEwNzFDMTcuMTQxNSA1LjA3NSAxNS40NjA0IDMuNDMyMTQgMTUuNDYwNCAwLjVMMTcuMDQ5MSAwLjVDMTcuMDQ5MSAzLjIyNSAxOS4zNTcyIDQuNzg1NzEgMjEuOTk2MiA2LjA1MzU3SDIyWiIgZmlsbD0iI0Y4RjdGMSIvPgo8L3N2Zz4K") no-repeat center;
  -webkit-mask-size: 100% 100%;
}
.footer__block-item--quick-links ul li a:hover {
  border-color: var(--_section-text-hovered-color);
  color: var(--_section-text-hovered-color);
}
.footer__block-item--quick-links ul li a:hover::after {
  background-color: var(--_section-text-hovered-color);
}
.footer__block-item--links {
  position: relative;
  padding-block: 40px;
}
@media (max-width: 991.8px) {
  .footer__block-item--links {
    order: 0;
  }
}
@media (min-width: 992px) {
  .footer__block-item--links {
    display: contents;
  }
}
.footer__block-item--links .footer__block-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer__block-item--links .footer__block-details {
    display: contents;
  }
}
.footer__block-item--links::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--_section-text-color);
  inset-block-end: 0;
  inset-inline-start: 0;
}
.footer__block-item--links ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
}
.footer__block-item--links ul li a {
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  color: currentColor;
  margin-bottom: 36px;
  text-align: var(--footer-text-alignment, "left");
  cursor: pointer;
}
.footer__block-item--links ul li a {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--links ul li a {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--links ul li a {
    font-size: 28px;
  }
}
.footer__block-item--links ul li a:hover {
  color: var(--_section-text-hovered-color);
}
.footer__block-item--social {
  position: relative;
  padding-block: 40px;
}
@media (max-width: 991.8px) {
  .footer__block-item--social {
    order: 3;
  }
}
.footer__block-item--social .footer__block-details {
  justify-content: center;
  inline-size: max-content;
  margin-inline: auto;
}
.footer__block-item--social .footer__block-details > *:last-child {
  margin-block: 0;
}
.footer__block-item--social .footer__block-title {
  text-align: center;
  color: currentColor;
  font-size: 18px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.02rem;
  line-height: 1;
  margin-block-end: 20px;
  margin-inline: auto;
  inline-size: max-content;
}
@media (min-width: 992px) {
  .footer__block-item--social .footer__block-title {
    margin-block-end: 18px;
  }
}
.footer__block-item--social ul {
  display: flex;
  align-items: center;
  flex-direction: row;
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
  inline-size: max-content;
  gap: 38px;
  margin-block-end: 48px;
}
.footer__block-item--social ul li {
  color: currentColor;
  font-size: 20px;
  font-weight: 400;
  font-family: "acumin-pro", sans-serif;
}
.footer__block-item--social ul li img {
  width: 24px;
  height: 24px;
}
.footer__block-item--social a.btn {
  display: inline-block;
  background-color: var(--_section-text-color, #f8f7f1);
  color: #212322;
  cursor: pointer;
}
.footer__block-item--social a.btn:hover {
  background-color: #f7efd8 !important;
}
@media (max-width: 991.8px) {
  .footer__block-item--site-maintenance {
    order: 4;
  }
}
.footer__block-item--site-maintenance ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-inline-start: 0;
  padding-inline-start: 0;
  gap: 8vi;
  justify-self: center;
}
@media (min-width: 992px) {
  .footer__block-item--site-maintenance ul {
    flex-direction: column;
    gap: 34px;
  }
}
.footer__block-item--site-maintenance ul li {
  display: flex;
  flex-direction: column;
  gap: 21px;
  inline-size: max-content;
}
@media (min-width: 992px) {
  .footer__block-item--site-maintenance ul li {
    gap: 10px;
  }
}
.footer__block-item--site-maintenance ul li h4 {
  display: inline-block;
  color: currentColor;
  font-size: 18px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.01em;
  font-style: normal;
}
.footer__block-item--disclaimer-icons ul {
  display: flex;
  flex-direction: row;
  gap: 42px;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  inline-size: max-content;
  margin-inline: auto;
  align-items: center;
}
.footer__block-item--disclaimer-icons ul li img {
  width: 32px;
  height: 32px;
}
.footer__block-item--disclaimer p,
.footer__block-item--disclaimer a {
  font-family: "acumin-pro", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}
.footer__block-item--disclaimer p,
.footer__block-item--disclaimer a {
  font-size: 15px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--disclaimer p,
  .footer__block-item--disclaimer a {
    font-size: calc(15px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--disclaimer p,
  .footer__block-item--disclaimer a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer p,
  .footer__block-item--disclaimer a {
    font-weight: 300;
    letter-spacing: 0.01em;
  }
}
.footer__block-item--disclaimer p {
  text-align: center;
}
.footer__block-item--disclaimer a {
  cursor: pointer;
  text-decoration: underline;
}
.footer__block-item--disclaimer ul {
  display: flex;
  flex-direction: column;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul {
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul[data-length="2"] li:first-child {
    padding-inline-start: 1.468253968%;
    padding-inline-end: 8.571428571%;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul[data-length="2"] li:last-child {
    padding-inline-start: 8.571428571%;
    padding-inline-end: 1.468253968%;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul[data-length="1"] li {
    padding-inline: 0;
    padding-block: 0;
  }
}
.footer__block-item--disclaimer ul li {
  position: relative;
  letter-spacing: 0;
  place-content: center;
  text-align: center;
  font-family: "acumin-pro", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}
.footer__block-item--disclaimer ul li {
  font-size: 15px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--disclaimer ul li {
    font-size: calc(15px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--disclaimer ul li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul li {
    font-weight: 300;
    letter-spacing: 0.01em;
    padding-block: 0;
    padding-inline: 2.3809524%;
    flex: 1;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul li:first-child {
    padding-inline-start: 0;
  }
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul li:last-child {
    padding-inline-end: 0;
  }
}
.footer__block-item--disclaimer ul li:last-child::after {
  display: none;
}
.footer__block-item--disclaimer ul li::after {
  display: none;
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: currentColor;
  right: 0;
  top: 0;
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul li::after {
    display: inline-block;
  }
}
.footer__block-item--disclaimer ul li a {
  font-family: "acumin-pro", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: currentColor;
  text-decoration: underline;
  margin-inline: auto;
  cursor: pointer;
}
.footer__block-item--disclaimer ul li a {
  font-size: 15px;
}
@media screen and (min-width: 393px) {
  .footer__block-item--disclaimer ul li a {
    font-size: calc(15px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__block-item--disclaimer ul li a {
    font-size: 16px;
  }
}
.footer__block-item--disclaimer ul li a:hover {
  color: var(--_section-text-hovered-color);
}
@media (min-width: 992px) {
  .footer__block-item--disclaimer ul li a {
    font-weight: 300;
    letter-spacing: 0.01em;
  }
}
.footer__block-item--copyright p,
.footer__block-item--copyright a {
  color: currentColor;
  font-weight: 300;
  font-size: 16px;
  line-height: 19.2px;
}
.footer__block-item--copyright p {
  text-align: center;
}
.footer__block-item--copyright a {
  text-decoration: underline;
  cursor: pointer;
}
.footer__block-item--copyright a:hover {
  color: var(--_section-text-hovered-color);
}
@media (min-width: 992px) {
  .footer__top .footer__block-wrapper > div:first-child {
    margin-right: 2.03%;
  }
}
.footer__top .footer__block-item {
  inline-size: max-content;
}
@media (max-width: 991.8px) {
  .footer__top .footer__block-item {
    inline-size: unset;
  }
}
.footer__top .footer__block-title {
  margin-block-end: 16px;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-size: 24px;
}
@media (min-width: 992px) {
  .footer__middle {
    --module-tb-margin: 80px;
  }
}
.footer__middle .footer__block-wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 0;
  gap: 0;
  padding-inline: 0;
}
@media (min-width: 992px) {
  .footer__middle .footer__block-wrapper {
    flex-direction: row;
    gap: 5vi;
    padding-block: var(--module-tb-margin);
  }
}
@media (min-width: 1200px) {
  .footer__middle .footer__block-wrapper {
    flex-direction: row;
    gap: 8vi;
    padding-block: var(--module-tb-margin);
  }
  .footer__middle .footer__block-wrapper::after {
    display: none;
  }
}
.footer__middle .footer__block-item {
  padding-block: var(--module-tb-margin);
}
@media (min-width: 992px) {
  .footer__middle .footer__block-item {
    padding-block: 0;
  }
}
@media (max-width: 991.8px) {
  .footer__middle .footer__block-item {
    padding-inline: 5px;
  }
}
.footer__middle .footer__block-item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--_section-text-color);
  inset-inline-end: 0;
}
@media (min-width: 992px) {
  .footer__middle .footer__block-item::after {
    display: none;
  }
}
@media (max-width: 991.8px) {
  .footer__middle .footer__block-item.footer__block-item--social::after {
    display: none;
  }
}
@media (max-width: 991.8px) {
  .footer__middle .footer__block-item.footer__block-item--site-maintenance {
    padding-block-start: 10px;
  }
  .footer__middle .footer__block-item.footer__block-item--site-maintenance::after {
    display: none;
  }
}
.footer__bottom {
  background-color: var(--_section-bg-color);
}
@media (min-width: 992px) {
  .footer__bottom {
    --module-tb-margin: 80px;
  }
}
.footer__bottom .footer__block-wrapper {
  display: flex;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer__bottom .footer__block-wrapper {
    flex-direction: column;
    padding-inline: 10.5px;
    padding-block-end: 73px;
    padding-block-start: 20px;
  }
}
.footer__bottom p {
  color: var(--_section-text-color);
}

footer .footer__container .footer__block.footer__middle .footer__block-wrapper .footer__block-item--social .footer__block-details ul li div a svg {
  height: 24px;
  width: auto;
}
footer .footer__container .footer__block.footer__middle .footer__block-wrapper .footer__block-item--social .footer__block-details ul li div a:hover svg path {
  fill: var(--social_media_icon_hover_color, #f7efd8);
}
footer .footer__container .footer__block.footer__middle .footer__block-wrapper .footer__block-item--site-maintenance ul li.footer-managed-by a:hover svg {
  stroke: var(--managed_by_logo_hover_color, #f7efd8);
}
footer .footer__container .footer__block.footer__middle .footer__block-wrapper .footer__block-item--site-maintenance ul li.footer-managed-by a:hover svg polygon,
footer .footer__container .footer__block.footer__middle .footer__block-wrapper .footer__block-item--site-maintenance ul li.footer-managed-by a:hover svg path {
  fill: var(--managed_by_logo_hover_color, #f7efd8) !important;
}
.specials-bar {
  position: relative;
  background: var(--section-background, #b79555);
  flex-direction: column;
  padding: 12.5px 20px;
  z-index: 100;
  position: fixed;
  inset: 0 0 auto 0;
}
@media (min-width: 992px) {
  .specials-bar {
    padding: 10px 1.319vw 10px;
  }
}
.specials-bar__slide-wrap {
  margin: 0 auto;
  position: relative;
  align-items: center;
  line-height: 18px;
  font-size: 13px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  margin-block: -4.5px;
}
@media (min-width: 992px) {
  .specials-bar__slide-wrap {
    font-size: 14px;
    margin-block-start: -1px;
    margin-block-end: -3px;
  }
}
.specials-bar__column1 {
  flex: 1;
}
@media (min-width: 992px) {
  .specials-bar__column1 {
    flex: unset;
  }
}
.specials-bar__column1 a {
  font-family: "acumin-pro", sans-serif;
  text-decoration-skip-ink: none;
  color: var(--specials-link-color, currentColor);
}
.specials-bar__column1 a:hover {
  color: var(--specials-link-color-hover);
}
.specials-bar__column2 {
  position: absolute;
  right: 0;
}
@media (min-width: 992px) {
  .specials-bar__column2 {
    position: unset;
    right: unset;
  }
}
.specials-bar__column2__text {
  display: none;
}
@media (min-width: 1024px) {
  .specials-bar__column2__text {
    display: flex;
  }
}
.specials-bar__column2__text a {
  padding-left: 5px;
}
.specials-bar__column2__text a:hover {
  color: var(--specials-link-color-hover) !important;
}
.specials-bar__column2 button {
  cursor: pointer;
  margin-left: 20px;
  padding: 0px;
}
.specials-bar__column2 button svg {
  width: 10px;
  height: 10px;
}

.banner {
  --_banner-cta1-button-background-color: var(--banner-cta1-button-background-color,
          transparent);
  --_banner-cta1-button-label-color: var(--banner-cta1-button-label-color, #f8f7f1);
  --_banner-cta1-button-border-color: var(--banner-cta1-button-border-color, #b79555);
  --_banner-cta1-button-border-radius: var(--banner-cta1-button-border-radius,
          0 20px 0 0);
  --_banner-cta1-button-hovered-background-color: var(--banner-cta1-button-hovered-background-color, #b79555);
  --_banner-cta1-button-hovered-label-color: var(--banner-cta1-button-hovered-label-color, #212322);
  --_banner-cta1-button-hovered-border-color: var(--banner-cta1-button-hovered-border-color, #b79555);
  --_banner-cta2-button-background-color: var(--banner-cta2-button-background-color,
          transparent);
  --_banner-cta2-button-label-color: var(--banner-cta2-button-label-color, #f8f7f1);
  --_banner-cta2-button-border-color: var(--banner-cta2-button-border-color, #b79555);
  --_banner-cta2-button-border-radius: var(--banner-cta2-button-border-radius,
          0 20px 0 0);
  --_banner-cta2-button-hovered-background-color: var(--banner-cta2-button-hovered-background-color, #b79555);
  --_banner-cta2-button-hovered-label-color: var(--banner-cta2-button-hovered-label-color, #212322);
  --_banner-cta2-button-hovered-border-color: var(--banner-cta2-button-hovered-border-color, #b79555);
  position: relative;
  padding: 0px 5.55vw;
  min-height: 454px;
}
@media (min-width: 992px) {
  .banner {
    min-height: 800px;
  }
}
@media (min-width: 1920px) {
  .banner {
    aspect-ratio: 16/9;
    min-height: 920px;
  }
}
@media (min-width: 1920px) {
  .banner.noimage {
    aspect-ratio: unset;
  }
}
.banner__media {
  display: block;
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
}
.banner__media::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: var(--overlay-color, #212322);
  opacity: var(--overlay);
  z-index: 3;
  pointer-events: none;
}
.banner__media wistia-player {
  height: 100%;
}
.banner__media video,
.banner__media img,
.banner__media .banner__slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__media .banner__slider,
.banner__media .banner__slider div {
  height: 100%;
}
.banner__media .slider_control_btn {
  position: absolute;
  z-index: 3;
  right: 55px;
  bottom: 60px;
}
.banner__media .slider_control_btn button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.banner__media .slider_control_btn button::before, .banner__media .slider_control_btn button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner__media .slider_control_btn button::before {
  background: url(../images/pause.svg) no-repeat center center;
  background-size: contain;
}
.banner__media .slider_control_btn button::after {
  opacity: 0;
  background: url(../images/play.svg) no-repeat center center;
  background-size: contain;
}
.banner__media .slider_control_btn button.paused::before {
  opacity: 0;
}
.banner__media .slider_control_btn button.paused::after {
  opacity: 1;
}
.banner__media.top_left {
  border-top-left-radius: 192px;
}
@media (max-width: 991.8px) {
  .banner__media.top_left {
    border-top-left-radius: 60px;
  }
}
.banner__media.top_right {
  border-top-right-radius: 192px;
}
@media (max-width: 991.8px) {
  .banner__media.top_right {
    border-top-right-radius: 60px;
  }
}
.banner__media.bottom_left {
  border-bottom-left-radius: 192px;
}
@media (max-width: 991.8px) {
  .banner__media.bottom_left {
    border-bottom-left-radius: 60px;
  }
}
.banner__media.bottom_right {
  border-bottom-right-radius: 192px;
}
@media (max-width: 991.8px) {
  .banner__media.bottom_right {
    border-bottom-right-radius: 60px;
  }
}
.banner__text-container {
  max-width: 840px;
  color: #ffffff;
  height: 100%;
  min-height: 874px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 991px) {
  .banner__text-container {
    max-width: 100%;
    height: auto;
    min-height: fit-content;
    padding: 100px 0;
  }
}
.banner__text-container h2 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.banner__text-container .banner__author {
  width: 100%;
  margin-top: 20px;
}
.banner__text-container .banner-tag,
.banner__text-container .blog-tag {
  font-family: "acumin-pro", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  margin-bottom: 10px;
}
@media (max-width: 991.8px) {
  .banner__text-container .banner-tag,
  .banner__text-container .blog-tag {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01rem;
  }
}
.banner__text-container h2 {
  margin-bottom: 20px;
}
.banner__text-container h2 {
  font-size: 48px;
}
@media screen and (min-width: 390px) {
  .banner__text-container h2 {
    font-size: calc(48px + 48 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .banner__text-container h2 {
    font-size: 96px;
  }
}
.banner__text-container h2 {
  line-height: 48px;
}
@media screen and (min-width: 390px) {
  .banner__text-container h2 {
    line-height: calc(48px + 48 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .banner__text-container h2 {
    line-height: 96px;
  }
}
.banner__text-container .heading_level_five {
  font-family: "RecklessNeue-Light", sans-serif;
  margin-top: 0px;
  margin-bottom: 30px;
}
.banner__text-container .heading_level_six {
  font-family: "acumin-pro", sans-serif;
  margin-bottom: 8px;
}
.banner__text-container .btn, .banner__text-container .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .banner__text-container input[type=submit],
.banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .banner__text-container input[type=submit] {
  margin-top: 30px;
}
.banner__text-container .banner__cta-1 {
  border-color: var(--_banner-cta1-button-border-color);
  color: var(--_banner-cta1-button-label-color);
  background-color: var(--_banner-cta1-button-background-color);
}
.banner__text-container .banner__cta-1:hover {
  border-color: var(--_banner-cta1-button-hovered-border-color);
  color: var(--_banner-cta1-button-hovered-label-color);
  background-color: var(--_banner-cta1-button-hovered-background-color);
}
.banner__text-container .banner__cta-2 {
  border-color: var(--_banner-cta2-button-border-color);
  color: var(--_banner-cta2-button-label-color);
  background-color: var(--_banner-cta2-button-background-color);
}
@media (max-width: 991.8px) {
  .banner__text-container .banner__cta-2 {
    margin-top: 10px;
  }
}
.banner__text-container .banner__cta-2:hover {
  border-color: var(--_banner-cta2-button-hovered-border-color);
  color: var(--_banner-cta2-button-hovered-label-color);
  background-color: var(--_banner-cta2-button-hovered-background-color);
}
.banner__text-container #schedule-tour-popup-button {
  background-color: var(--_banner-cta1-button-background-color);
  color: var(--_banner-cta1-button-label-color);
  border: 1px solid var(--_banner-cta1-button-border-color) !important;
  border-radius: var(--_banner-cta1-button-border-radius) !important;
}
.banner__text-container .heading_icon {
  margin-bottom: 30px;
}
.banner__text-container > *:last-child {
  margin-bottom: 0;
}
.banner__layout-center {
  display: flex;
  justify-content: center;
}
.banner__layout-center .banner__text-container {
  align-items: center;
  text-align: center;
}
.banner__layout-left, .banner__layout-center {
  height: 100%;
}
.banner__layout-right {
  display: flex;
  justify-content: right;
}
.banner.noimage {
  min-height: auto;
  padding: 110px 6.38vw;
}
.banner.noimage .banner__media::before {
  display: none;
}
@media (max-width: 991.8px) {
  .banner.noimage .banner__media {
    border-radius: 0px !important;
  }
}
.banner.noimage .banner__text-container {
  margin: 0;
  height: auto !important;
  min-height: auto;
  padding: 0;
}
.banner__contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .banner__contact-info {
    flex-direction: row;
  }
}
.banner__contact-info a {
  color: currentColor;
  cursor: pointer;
}
.banner__contact-info a:hover, .banner__contact-info a:active {
  color: rgba(254, 234, 173, 0.8666666667);
}
.banner__contact-info > div {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .banner__contact-info > div {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .banner__contact-info > div:nth-child(2) {
    text-align: center;
  }
}
.banner__contact-info > div:nth-child(2):hover a {
  color: rgba(254, 234, 173, 0.8666666667);
}
.banner__contact-info > div:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .banner__contact-info > div:last-child {
    text-align: right;
  }
}
.banner__contact-info-heading {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #f8f7f1;
  font-size: 26px;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .banner__contact-info-heading {
    font-size: 28px;
  }
}
.banner__contact-info-paragraph {
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  color: #f8f7f1;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.01em;
}
.banner__contact-info-paragraph a:hover {
  color: rgba(254, 234, 173, 0.8666666667);
}
.banner__separator {
  margin-block-end: 30px;
}

.video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.video-embed .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-embed .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}

.video-embed iframe,
.banner__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.8px) {
  .banner__text-container .banner-tag,
  .banner__text-container h2,
  .banner__text-container p,
  .banner__text-container .heading_level_five {
    margin-bottom: 30px;
  }
  .banner__text-container a,
  .banner__text-container .btn,
  .banner__text-container .hbspt-form .hs-submit input[type=submit],
  .hbspt-form .hs-submit .banner__text-container input[type=submit],
  .banner__text-container .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .banner__text-container input[type=submit] {
    margin-top: 0;
  }
}

.banner__cta-container {
  display: flex;
  column-gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}
.banner__cta-container a {
  white-space: break-spaces;
  min-inline-size: auto;
}
@media (max-width: 991.8px) {
  .banner__cta-container {
    margin-top: 30px;
  }
}

@media (max-width: 991.8px) {
  .siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo {
    width: 100%;
  }
}
.siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__label {
  border-color: #212322;
  text-align: left;
  background: url(../images/arrow_down.svg) no-repeat center right;
  background-position: 96% 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 991.8px) {
  .siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__label {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__dropdown {
  background-color: #f8f7f1;
  border: 1px solid #212322;
}
.siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__dropdown .selectivo__option {
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 991.8px) {
  .siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__dropdown .selectivo__option {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__dropdown .selectivo__option:first-child {
  background: none;
  position: relative;
}
.siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__dropdown .selectivo__option:first-child::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 15px;
  height: 15px;
  background: url(../images/arrow_down.svg) no-repeat center right;
  transform: rotate(180deg);
  right: 15px;
}

@media (max-width: 991.8px) {
  .banner .banner__layout-center .banner__text-container .banner-tag {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.8px) {
  .banner .banner__layout-center .banner__text-container .banner__cta-container {
    margin-top: 30px;
  }
}

.card-swipper-section {
  padding: 50px 0;
  --_section-cta-button-label-color: var(--section-cta-button-label-color, #212322);
  --_section-cta-button-hovered-label-color: var(--section-cta-button-hovered-label-color, #b79555);
  --_section-card-cta-button-label-color: var(--section--card-cta-button-label-color, #b79555);
  --_section-card-cta-button-hovered-label-color: var(--section-card-cta-button-hovered-label-color, #212322);
  --_section-card-title-color: var(--section-card-title-color, #212322);
  --_section-card-subtitle-color: var(--section-card-subtitle-color, #212322);
}

.card-swipper-header {
  margin: 0 auto;
  padding: 0 6.45vw 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-swipper-header .card-swipper-header-icon {
  display: flex;
  column-gap: 20px;
}
.card-swipper-header img {
  max-height: 62px;
  width: auto;
}
.card-swipper-header .card-swipper-link {
  color: var(--_section-cta-button-label-color);
}
.card-swipper-header .card-swipper-link:hover {
  color: var(--_section-cta-button-hovered-label-color);
}

.card-swipper-sub-title {
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 8px;
  font-family: "acumin-pro", sans-serif;
}

.card-swipper-title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #212322;
}
.card-swipper-title {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .card-swipper-title {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-title {
    font-size: 56px;
  }
}
.card-swipper-title {
  line-height: 40px;
}
@media screen and (min-width: 393px) {
  .card-swipper-title {
    line-height: calc(40px + 22.78 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-title {
    line-height: 62.78px;
  }
}

.card-swipper-link {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 31.39px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.card-swipper-link {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .card-swipper-link {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-link {
    font-size: 28px;
  }
}
.card-swipper-link {
  line-height: 22.42px;
}
@media screen and (min-width: 393px) {
  .card-swipper-link {
    line-height: calc(22.42px + 8.97 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-link {
    line-height: 31.39px;
  }
}

.card-swipper {
  position: relative;
  width: 100%;
  padding: 20px 80px;
  overflow: hidden;
}
@media (max-width: 991.8px) {
  .card-swipper {
    padding: 20px;
  }
}
.card-swipper__container {
  overflow: hidden;
}
.card-swipper__wrapper {
  transition: transform 0.3s ease-in-out;
}
.card-swipper__wrapper .slick-list {
  overflow: visible;
}
.card-swipper__wrapper .slick-slide {
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .card-swipper__wrapper .slick-slide {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.card-swipper__wrapper .slick-slide.slick-active.slick-center, .card-swipper__wrapper .slick-slide.slick-active.slick-center + .slick-slide {
  transform: scale(1);
  opacity: 1;
}
@media (min-width: 992px) {
  .card-swipper__wrapper.left-aligned-slide .card-swipper__slide {
    max-width: 33.33%;
  }
}
@media (min-width: 992px) {
  .card-swipper:not(.card-swipper-no-margin) .card-swipper__wrapper.left-aligned-slide .slick-track .card-swipper__slide:first-child {
    padding-left: 0;
  }
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide {
  margin-bottom: 20px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card {
  height: auto !important;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card img {
  flex: 0 0 35%;
  width: 35%;
  max-height: 83px;
  background-size: contain;
  max-width: 79px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card .default-thumb {
  flex: 0 0 35%;
  width: 35%;
  max-height: 83px;
  min-height: unset;
  background-size: contain;
  max-width: 79px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card .card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card .card__content .card-swipper-sub-title {
  margin: 0px;
}
@media (max-width: 991.8px) {
  .card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card > a {
    display: flex;
  }
  .card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card > a .default-thumb {
    width: 100%;
    flex: 0 0 100%;
    min-width: 79px;
  }
  .card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card > a img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    min-width: 79px;
  }
}
.card-swipper__mob-wrapper.left-aligned-slide .slick-track {
  margin-left: 0px;
  margin-right: 0px;
}
.card-swipper__slide {
  transition: all 0.3s ease;
}
@media (max-width: 991.8px) {
  .card-swipper__slide {
    padding: 0;
  }
}
.card-swipper__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  border: solid var(--_section-card-title-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.card-swipper__nav--prev {
  left: 3.5vw;
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
}
@media (max-width: 991.8px) {
  .card-swipper__nav--prev {
    display: none !important;
  }
}
.card-swipper__nav--next {
  right: 3.5vw;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 991.8px) {
  .card-swipper__nav--next {
    display: none !important;
  }
}
.card-swipper__nav svg {
  display: none;
}
.card-swipper__nav:hover {
  background: transparent;
}
.card-swipper__nav.disabled {
  cursor: not-allowed;
  pointer-events: none;
  border-color: #a0a0a0;
}
.card-swipper.card-swipper-no-margin {
  padding: 0px 0px;
}
.card-swipper.card-swipper-no-margin .card-swipper__nav {
  display: none;
}

.card {
  overflow: hidden;
  border: 2px solid;
}
.card.top_right {
  border-top-right-radius: 20px;
}
@media (max-width: 991.8px) {
  .card.top_right {
    border-top-right-radius: 12px;
  }
}
.card.bottom_left {
  border-bottom-left-radius: 20px;
}
@media (max-width: 991.8px) {
  .card.bottom_left {
    border-bottom-left-radius: 12px;
  }
}
.card.top_left {
  border-top-left-radius: 20px;
}
@media (max-width: 991.8px) {
  .card.top_left {
    border-top-left-radius: 12px;
  }
}
.card.bottom_right {
  border-bottom-right-radius: 20px;
}
@media (max-width: 991.8px) {
  .card.bottom_right {
    border-bottom-right-radius: 12px;
  }
}
.card__slide {
  padding: 0 20px;
  transition: all 0.3s ease;
}
@media (max-width: 991.8px) {
  .card__slide {
    display: flex;
    column-gap: 12px;
  }
}
.card__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  border: solid #212322;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.card__nav--prev {
  left: 20px;
  transform: rotate(135deg) translateY(-50%);
  -webkit-transform: rotate(135deg) translateY(-50%);
}
@media (max-width: 991.8px) {
  .card__nav--prev {
    display: none !important;
  }
}
.card__nav--next {
  right: 20px;
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
}
@media (max-width: 991.8px) {
  .card__nav--next {
    display: none !important;
  }
}
.card__nav svg {
  display: none;
}
.card__nav:hover {
  background: transparent;
}
.card__nav.disabled {
  cursor: not-allowed;
  pointer-events: none;
  border-color: #a0a0a0;
}
.card.card-swipper-no-margin {
  padding: 20px 0;
}
.card.card-swipper-no-margin .card-swipper__nav {
  display: none;
}

.card {
  overflow: hidden;
  border: 2px solid;
}
@media (max-width: 991.8px) {
  .card {
    display: flex;
    column-gap: 12px;
  }
}
.card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 221px;
  aspect-ratio: 4/2.94;
}
@media (max-width: 991.8px) {
  .card__image {
    max-height: 100px;
    min-height: unset;
  }
}
.card .default-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/2.94;
  max-height: unset;
}
@media (max-width: 991.8px) {
  .card .default-thumb {
    background-size: contain;
  }
}
.card__content {
  padding: 20px 0px 12px;
}
@media (max-width: 991.8px) {
  .card__content {
    padding: 0;
    padding-right: 10px;
  }
  .card-swipper__wrapper.desktop .card__content {
    padding-top: 20px;
  }
}
.card__title {
  margin: 0 0 15px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  color: #212322;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__title {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .card__title {
    font-size: calc(20px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card__title {
    font-size: 24px;
  }
}
.card__title {
  line-height: 22.42px;
}
@media screen and (min-width: 393px) {
  .card__title {
    line-height: calc(22.42px + 4.48 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card__title {
    line-height: 26.9px;
  }
}
.card__link {
  color: var(--_section-card-cta-button-label-color);
  text-decoration: none;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
}
.card__link:hover {
  color: var(--_section-card-cta-button-hovered-label-color);
}
.card__link.active_btn {
  color: #a0a0a0;
}
.card__link.active_btn:hover {
  color: var(--_section-card-cta-button-hovered-label-color);
}

.card-image-overlay {
  position: relative;
}
.card-image-overlay .content-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f8f7f1;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
  padding: 5px 33px 5px 5px;
}
.card-image-overlay .content-overlay {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .card-image-overlay .content-overlay {
    font-size: calc(20px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-image-overlay .content-overlay {
    font-size: 24px;
  }
}
.card-image-overlay .content-overlay {
  line-height: 22.42px;
}
@media screen and (min-width: 393px) {
  .card-image-overlay .content-overlay {
    line-height: calc(22.42px + 4.48 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-image-overlay .content-overlay {
    line-height: 26.9px;
  }
}
.card-image-overlay .overlay-close {
  margin: 0;
  font-size: 0;
  width: 15px;
  height: 15px;
  background-image: url("../images/close.svg");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  border: none;
  outline: 0;
  background-color: transparent;
}
.card-image-overlay__link {
  color: #b79555;
  text-decoration: none;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  display: none !important;
}
.card-image-overlay__link:before {
  content: "";
  display: block;
  height: 40px;
}
.card-image-overlay__link::-webkit-scrollbar {
  width: 6px;
}
.card-image-overlay__link::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.card-image-overlay__link::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

@media (max-width: 991.8px) {
  .card-swipper-section {
    padding: 40px 0;
  }
  .card-swipper-header {
    margin-bottom: 30px;
    flex-direction: column;
    text-align: left;
    gap: 15px;
    align-items: flex-start;
    padding: 0 20px;
  }
  .card-swipper__nav--prev {
    left: 10px;
  }
  .card-swipper__nav--next {
    right: 10px;
  }
  .card-swipper__wrapper .slick-slide {
    opacity: 1;
  }
  .card-swipper__wrapper .slick-slide.slick-active {
    opacity: 1;
  }
  .card-swipper__wrapper .slick-slide.slick-active:first-child, .card-swipper__wrapper .slick-slide.slick-active:last-child {
    opacity: 1;
  }
}
.card_swipper-cta {
  margin: 0 auto 40px;
  padding: 0 5.55vw;
  width: 100%;
  display: block;
}
.card_swipper-cta.bottom_center_cta {
  text-align: center;
}
.card_swipper-cta.bottom_right_cta {
  text-align: right;
}
.card_swipper-cta.bottom_left_cta {
  text-align: left;
}

.card-swipper-grid .cs-grid-wrapper {
  padding: 20px 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  grid-row-gap: 5px;
}
.card-swipper-grid .cs-grid-wrapper .grid-card {
  overflow-y: hidden;
  border: 2px solid transparent;
}
@media (max-width: 1024.8px) {
  .card-swipper-grid .cs-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.8px) {
  .card-swipper-grid .cs-grid-wrapper {
    padding: 20px;
  }
  .card-swipper-grid .cs-grid-wrapper .card__content {
    padding-top: 20px;
  }
  .card-swipper-grid .cs-grid-wrapper .card__title {
    margin-bottom: 7px;
  }
  .card-swipper-grid .cs-grid-wrapper .card-swipper-sub-title {
    margin-bottom: 3px;
  }
  .card-swipper-grid .cs-grid-wrapper .card__image {
    min-height: 200px;
  }
}
@media (max-width: 767.8px) {
  .card-swipper-grid .cs-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
  }
}
.card-swipper-grid .cs-grid-wrapper .default-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/2.94;
  max-height: unset;
}
@media (max-width: 991.8px) {
  .card-swipper-grid .cs-grid-wrapper .default-thumb {
    background-size: contain;
  }
}

.card-swipper-section.testimonials .card-swipper-title {
  font-size: 34px;
}
@media screen and (min-width: 393px) {
  .card-swipper-section.testimonials .card-swipper-title {
    font-size: calc(34px + 14 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-section.testimonials .card-swipper-title {
    font-size: 48px;
  }
}
.card-swipper-section.testimonials .card-swipper-title {
  line-height: 48px;
}
@media screen and (min-width: 393px) {
  .card-swipper-section.testimonials .card-swipper-title {
    line-height: calc(48px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-section.testimonials .card-swipper-title {
    line-height: 56px;
  }
}
.card-swipper-section.testimonials .card__title {
  font-size: 22px;
}
@media screen and (min-width: 393px) {
  .card-swipper-section.testimonials .card__title {
    font-size: calc(22px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .card-swipper-section.testimonials .card__title {
    font-size: 28px;
  }
}
.card-swipper-section.testimonials .card-image-overlay .content-overlay {
  font-family: var(--font-primary);
  color: #eee9d6;
  font-size: 20px;
  line-height: 25px;
  padding: 10px 20px;
  overflow-y: auto;
}
.card-swipper-section.testimonials .card-image-overlay .content-overlay::before {
  content: "";
  display: block;
  height: 40px;
}
.card-swipper-section.testimonials .card-image-overlay .content-overlay::-webkit-scrollbar {
  width: 6px;
}
.card-swipper-section.testimonials .card-image-overlay .content-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.card-swipper-section.testimonials .card-image-overlay .content-overlay::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.card-swipper-section.testimonials .card__image {
  aspect-ratio: 1/1;
}
@media (max-width: 991.8px) {
  .card-swipper-section.testimonials .card-swipper__container .card {
    display: block;
  }
  .card-swipper-section.testimonials .card-swipper__container .card__image {
    max-height: 350px;
  }
  .card-swipper-section.testimonials .card-swipper__container .desktop {
    display: block !important;
  }
  .card-swipper-section.testimonials .card-swipper__container .desktop .card-swipper__slide {
    max-width: 80vw;
  }
  .card-swipper-section.testimonials .card-swipper__container .desktop .card {
    display: block;
  }
  .card-swipper-section.testimonials .card-swipper__container .desktop .card__image {
    max-height: 350px;
  }
  .card-swipper-section.testimonials .card-swipper__container .mob {
    display: none !important;
  }
}

.card-swipper .card-swipper__container .card-swipper__wrapper.desktop .slick-list .slick-track {
  display: flex;
  justify-content: center;
}

.card-swipper-link.bottom_center_cta {
  width: fit-content;
}

@media (min-width: 992px) {
  .card-swipper-section .card-swipper-header {
    position: relative;
  }
  .card-swipper-section .card-swipper-header > .card-swipper-link {
    position: absolute;
    right: 6.45vw;
  }
  .card-swipper-section .card-swipper-header.justify-right > .card-swipper-link {
    position: relative;
    right: auto;
  }
}
.two_col_wrapper {
  display: flex;
  gap: 6.458vw;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  padding: 93px 6.45vw;
  background: var(--section-background);
  background-color: var(--section-background-color);
  --_section-content-text-alignment: var(--section-content-text-alignment, "left");
  --_section-content-text-color: var(--section-content-text-color, #212322);
  --_cta-button-text-color: var(--cta-button-text-color, #f8f7f1);
  --_cta-button-background-color: var(--cta-button-background-color, #b79555);
  --_cta-button-border-color: var(--cta-button-border-color,
          var(--_cta-button-background-color));
  --_cta-button-hovered-text-color: var(--cta-button-hovered-text-color,
      #212322);
  --_cta-button-hovered-background-color: var(--cta-button-hovered-background-color,
      rgba(254, 234, 173, 0.8666666667));
  --_cta-button-hovered-border-color: var(--cta-button-hovered-border-color,
          var(--_cta-button-hovered-background-color));
  --_section-content-background: var(--section-content-background);
  --_section-content-background-image-repeat: var(--section-content-background-image-repeat);
  --_section-content-background-image-position: var(--section-content-background-image-position);
  --_section-content-background-image-size: var(--section-content-background-image-size);
  /* Full bleed block styles */
}
.two_col_wrapper:has(.reduced-horizontal-padding) {
  gap: 0;
}
@media (max-width: 800px) {
  .two_col_wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 20px 40px 20px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.img_left {
    padding: 20px 20px 40px 20px;
  }
}
@media (min-width: 801px) {
  .two_col_wrapper.img_left {
    flex-direction: row-reverse;
  }
}
@media (min-width: 801px) {
  .two_col_wrapper.img_left .two_col_content {
    margin-right: 5.56vw;
    margin-left: 20px;
  }
}
.two_col_wrapper.img_right .two_col_content {
  margin-right: 20px;
}
@media (max-width: 800.8px) {
  .two_col_wrapper.p_top_zero_mob {
    padding-top: 0;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.custom_p_mob {
    padding-top: 40px !important;
  }
}
.two_col_wrapper.zero_margin {
  align-items: normal;
  padding: 0;
}
@media (min-width: 801px) {
  .two_col_wrapper.zero_margin {
    gap: 0;
  }
}
.two_col_wrapper.zero_margin .two_col_content {
  padding: 80px 6.45vw;
  margin: 0;
}
@media (max-width: 800.8px) {
  .two_col_wrapper.zero_margin .two_col_content {
    padding: 40px 20px;
  }
}
.two_col_wrapper.zero_margin .two_col_content h3 {
  margin-bottom: 82px;
}
@media (max-width: 800.8px) {
  .two_col_wrapper.zero_margin .two_col_content h3 {
    margin-bottom: 30px;
  }
}
.two_col_wrapper.zero_margin .two_col_content h2 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
}
.two_col_wrapper.zero_margin .two_col_content h2 {
  font-size: 20px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.zero_margin .two_col_content h2 {
    font-size: calc(20px + 8 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.zero_margin .two_col_content h2 {
    font-size: 28px;
  }
}
.two_col_wrapper.zero_margin .two_col_content p {
  line-height: 22px;
  letter-spacing: 0.18px;
  margin-bottom: 0;
}
.two_col_wrapper.zero_margin .two_col_content p {
  font-size: 16px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.zero_margin .two_col_content p {
    font-size: calc(16px + 2 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.zero_margin .two_col_content p {
    font-size: 18px;
  }
}
.two_col_wrapper.zero_margin .two_col_img img {
  aspect-ratio: 1.0285714;
}
.two_col_wrapper.zero_margin .content_box {
  display: block;
  width: 100%;
  max-width: unset;
}
@media (max-width: 800.8px) {
  .two_col_wrapper.custom_radius .two_col_img img.top_left {
    border-top-left-radius: 100px !important;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.custom_radius .two_col_img img.bottom_right {
    border-bottom-right-radius: 60px !important;
  }
}
.two_col_wrapper .two_col_content {
  align-self: stretch;
  width: var(--custom-width);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.two_col_wrapper .two_col_content.reduced-horizontal-padding {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 !important;
}
@media (min-width: 801px) {
  .two_col_wrapper .two_col_content {
    margin-left: 5.56vw;
    margin-bottom: 20px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper .two_col_content {
    width: 100%;
  }
}
.two_col_wrapper .two_col_content.top-align {
  align-items: flex-start;
}
.two_col_wrapper .two_col_content.center-align {
  align-items: center;
}
.two_col_wrapper .two_col_content.bottom-align {
  align-items: flex-end;
}
.two_col_wrapper .two_col_content .two-col-tag,
.two_col_wrapper .two_col_content p {
  font-weight: 300;
  width: 100%;
}
.two_col_wrapper .two_col_content .two-col-tag {
  font-family: "RecklessNeue-Light", sans-serif;
  width: 100%;
}
.two_col_wrapper .two_col_content .two-col-tag {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper .two_col_content .two-col-tag {
    font-size: calc(30px + 12 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper .two_col_content .two-col-tag {
    font-size: 42px;
  }
}
.two_col_wrapper .two_col_content h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  width: 100%;
}
.two_col_wrapper .two_col_content p {
  font-size: 20px;
  width: 100%;
}
.two_col_wrapper .two_col_content .btn, .two_col_wrapper .two_col_content .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .two_col_wrapper .two_col_content input[type=submit],
.two_col_wrapper .two_col_content .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .two_col_wrapper .two_col_content input[type=submit] {
  display: inline-block;
}
.two_col_wrapper .two_col_content span {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
}
.two_col_wrapper .two_col_content .content_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media (min-width: 801px) {
  .two_col_wrapper .two_col_content .content_box {
    max-width: 34.722vw;
    width: 100%;
    gap: 20px;
  }
}
.two_col_wrapper .two_col_content .content_box .content_icon,
.two_col_wrapper .two_col_content .content_box .separator {
  height: 48px;
  width: auto;
}
.two_col_wrapper .two_col_content .content_box h2 {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.two_col_wrapper .two_col_content .content_box p {
  color: var(--_section-content-text-color);
  text-align: var(--_section-content-text-alignment);
}
.two_col_wrapper .two_col_content .content_box .btn, .two_col_wrapper .two_col_content .content_box .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit],
.two_col_wrapper .two_col_content .content_box .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit] {
  width: max-content;
  border: 1px solid;
  padding: 14px 36px;
  background-color: var(--_cta-button-background-color);
  border-color: var(--_cta-button-border-color);
  color: var(--_cta-button-text-color);
}
.two_col_wrapper .two_col_content .content_box .btn:hover, .two_col_wrapper .two_col_content .content_box .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit]:hover,
.two_col_wrapper .two_col_content .content_box .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit]:hover {
  background-color: var(--_cta-button-hovered-background-color) !important;
  border-color: var(--_cta-button-hovered-border-color) !important;
  color: var(--_cta-button-hovered-text-color) !important;
}
.two_col_wrapper .two_col_content .content_box .rich-text-content {
  width: 100%;
}
.two_col_wrapper .two_col_img {
  position: relative;
  position: relative;
}
@media (max-width: 800.8px) {
  .two_col_wrapper .two_col_img {
    width: 100% !important;
    height: 373px;
    padding: 0;
  }
}
.two_col_wrapper .two_col_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.two_col_wrapper .two_col_img img.top_left {
  border-top-left-radius: 140px;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.top_left {
    border-top-left-radius: 60px !important;
  }
}
.two_col_wrapper .two_col_img img.top_right {
  border-top-right-radius: 75px;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.top_right {
    border-top-right-radius: 60px !important;
  }
}
.two_col_wrapper .two_col_img img.bottom_left {
  border-bottom-left-radius: 80px;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.bottom_left {
    border-bottom-left-radius: 100px !important;
  }
}
.two_col_wrapper .two_col_img img.bottom_right {
  border-bottom-right-radius: 140px;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.bottom_right {
    border-bottom-right-radius: 100px !important;
  }
}
.two_col_wrapper .two_col_img div {
  height: 100%;
}
.two_col_wrapper .two_col_img_slider {
  position: static;
}
.two_col_wrapper .two_col_img_slider_controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img_slider_controls {
    margin-top: 30px;
  }
}
.two_col_wrapper .two_col_img_slider_prev, .two_col_wrapper .two_col_img_slider_next {
  cursor: pointer;
  padding: 0px;
}
.two_col_wrapper .two_col_img_slider_prev.slick-disabled, .two_col_wrapper .two_col_img_slider_next.slick-disabled {
  pointer-events: none;
  pointer-events: none;
}
.two_col_wrapper .two_col_img_slider_prev.slick-disabled svg, .two_col_wrapper .two_col_img_slider_next.slick-disabled svg {
  fill: rgba(254, 234, 173, 0.8666666667);
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img_slider_prev svg, .two_col_wrapper .two_col_img_slider_next svg {
    width: 22px;
    height: 10px;
  }
}
.two_col_wrapper .two_col_img .slider_control_btn {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 10px;
  height: auto;
}
.two_col_wrapper .two_col_img .slider_control_btn button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.two_col_wrapper .two_col_img .slider_control_btn button::before, .two_col_wrapper .two_col_img .slider_control_btn button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.two_col_wrapper .two_col_img .slider_control_btn button::before {
  background: url(../images/pause.svg) no-repeat center center;
  background-size: contain;
}
.two_col_wrapper .two_col_img .slider_control_btn button::after {
  opacity: 0;
  background: url(../images/play.svg) no-repeat center center;
  background-size: contain;
}
.two_col_wrapper .two_col_img .slider_control_btn button.paused::before {
  opacity: 0;
}
.two_col_wrapper .two_col_img .slider_control_btn button.paused::after {
  opacity: 1;
}
@media (max-width: 800px) {
  .two_col_wrapper.custom_radius .two_col_img img.top_left {
    border-top-left-radius: 100px !important;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper.custom_radius .two_col_img img.bottom_right {
    border-bottom-right-radius: 60px !important;
  }
}
.two_col_wrapper .two_col_content {
  align-self: stretch;
  width: var(--custom-width);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.two_col_wrapper .two_col_content.reduced-horizontal-padding {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 !important;
}
@media (min-width: 801px) {
  .two_col_wrapper .two_col_content {
    margin-left: 5.56vw;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_content {
    width: 100%;
  }
}
.two_col_wrapper .two_col_content .content_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 801px) {
  .two_col_wrapper .two_col_content .content_box {
    max-width: 34.722vw;
    width: 100%;
    gap: 20px;
  }
}
.two_col_wrapper .two_col_content .content_box .btn, .two_col_wrapper .two_col_content .content_box .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit],
.two_col_wrapper .two_col_content .content_box .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit] {
  width: max-content;
  border: 1px solid;
  background-color: var(--_cta-button-background-color);
  border-color: var(--_cta-button-border-color);
  color: var(--_cta-button-text-color);
  padding: 14px 36px;
}
.two_col_wrapper .two_col_content .content_box .btn:hover, .two_col_wrapper .two_col_content .content_box .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit]:hover,
.two_col_wrapper .two_col_content .content_box .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .two_col_wrapper .two_col_content .content_box input[type=submit]:hover {
  background-color: var(--_cta-button-hovered-background-color) !important;
  border-color: var(--_cta-button-hovered-border-color) !important;
  color: var(--_cta-button-hovered-text-color) !important;
}
.two_col_wrapper .two_col_content .two-col-tag,
.two_col_wrapper .two_col_content p {
  font-weight: 300;
  width: 100%;
}
.two_col_wrapper .two_col_content .two-col-tag {
  font-family: "RecklessNeue-Light", sans-serif;
  width: 100%;
}
.two_col_wrapper .two_col_content .two-col-tag {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper .two_col_content .two-col-tag {
    font-size: calc(30px + 12 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper .two_col_content .two-col-tag {
    font-size: 42px;
  }
}
@media (min-width: 801px) {
  .two_col_wrapper .two_col_content .two-col-tag {
    margin: 10px 0;
  }
}
.two_col_wrapper .two_col_content h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  width: 100%;
}
.two_col_wrapper .two_col_content p {
  font-size: 20px;
  width: 100%;
}
.two_col_wrapper .two_col_content .btn, .two_col_wrapper .two_col_content .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .two_col_wrapper .two_col_content input[type=submit],
.two_col_wrapper .two_col_content .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .two_col_wrapper .two_col_content input[type=submit] {
  display: inline-block;
}
.two_col_wrapper .two_col_content span {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
}
@media (min-width: 801px) {
  .two_col_wrapper.img_left {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
@media (min-width: 801px) {
  .two_col_wrapper.img_left .two_col_content {
    margin-right: 5.56vw;
    margin-left: 20px;
  }
}
.two_col_wrapper.img_right .two_col_content {
  margin-right: 20px;
}
@media (max-width: 800px) {
  .two_col_wrapper.p_top_zero_mob {
    padding-top: 0px;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper.custom_p_mob {
    padding-top: 40px !important;
  }
}
.two_col_wrapper.zero_margin {
  align-items: normal;
  padding: 0px;
}
@media (min-width: 801px) {
  .two_col_wrapper.zero_margin {
    gap: 0;
  }
}
.two_col_wrapper.zero_margin .two_col_content {
  padding: 80px 6.45vw;
  margin: 0px;
}
@media (max-width: 991px) {
  .two_col_wrapper.zero_margin .two_col_content {
    padding: 40px 20px;
  }
}
.two_col_wrapper.zero_margin .two_col_content h3 {
  margin-bottom: 82px;
}
@media (max-width: 991px) {
  .two_col_wrapper.zero_margin .two_col_content h3 {
    margin-bottom: 30px;
  }
}
.two_col_wrapper.zero_margin .two_col_content h2 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
}
.two_col_wrapper.zero_margin .two_col_content h2 {
  font-size: 20px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.zero_margin .two_col_content h2 {
    font-size: calc(20px + 8 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.zero_margin .two_col_content h2 {
    font-size: 28px;
  }
}
.two_col_wrapper.zero_margin .two_col_content p {
  line-height: 22px;
  letter-spacing: 0.18px;
  margin-bottom: 0px;
}
.two_col_wrapper.zero_margin .two_col_content p {
  font-size: 16px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.zero_margin .two_col_content p {
    font-size: calc(16px + 2 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.zero_margin .two_col_content p {
    font-size: 18px;
  }
}
.two_col_wrapper.zero_margin .two_col_img img {
  height: 100%;
  aspect-ratio: 1;
}
.two_col_wrapper.zero_margin .content_box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: unset;
}

.two_col_wrapper {
  align-items: normal;
}
.two_col_wrapper .top-align {
  align-items: flex-start;
}
.two_col_wrapper .center-align {
  align-items: center;
}
.two_col_wrapper .bottom-align {
  align-items: flex-end;
}

.two_col_wrapper .two_col_content .content_box .content_icon,
.two_col_wrapper .two_col_content .content_box .separator {
  height: 48px;
  width: auto;
}
.two_col_wrapper .two_col_content .content_box h2 {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.two_col_wrapper.two-column-slider .two_col_content .content_box .two-col-tag,
.two_col_wrapper.two-column-slider .two_col_content .content_box h2,
.two_col_wrapper.two-column-slider .two_col_content .content_box p,
.two_col_wrapper.two-column-slider .two_col_content .content_box a.btn {
  order: unset;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box p {
  text-align: var(--_section-content-text-alignment);
  color: var(--_section-content-text-color);
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls {
  gap: 16px;
}
@media (min-width: 801px) {
  .two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls {
    gap: 10px;
    align-self: flex-end;
    order: unset;
    width: 100%;
    display: flex;
  }
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next {
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 24px;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev.slick-disabled,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next.slick-disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev.slick-disabled svg,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next.slick-disabled svg {
  stroke: #a0a0a0;
  fill: #a0a0a0;
  stroke: none;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev svg,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next svg {
  stroke: var(--two-column-cnt-arrow-color, #212322) !important;
  fill: var(--two-column-cnt-arrow-color, #212322) !important;
  stroke-width: 1px;
  stroke: none !important;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev svg,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next svg {
  width: 100%;
  height: 100%;
}
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev svg g path,
.two_col_wrapper.two-column-slider .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next svg g path {
  fill: var(--two-column-cnt-arrow-color, #212322) !important;
}

.two_col_wrapper {
  /* styles for fifty-fity slider block */
}
.two_col_wrapper.fifty-fifty-slider {
  gap: 64px;
}
@media (max-width: 800.8px) {
  .two_col_wrapper.fifty-fifty-slider {
    gap: 40px;
    padding: 40px 20px;
  }
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box {
  gap: 0px;
}
@media (min-width: 800px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box {
    padding: 93px 0;
  }
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box span {
  display: inline-block;
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box .two-col-tag {
  line-height: 35px;
  margin-bottom: 60px;
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box .two-col-tag {
  font-size: 25px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box .two-col-tag {
    font-size: calc(25px + 7 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box .two-col-tag {
    font-size: 32px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box .two-col-tag {
    line-height: 28px;
    margin-bottom: 35px;
  }
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 {
  font-weight: 800;
  line-height: normal;
  margin-bottom: 51px;
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 {
  font-size: 22px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 {
    font-size: calc(22px + 6 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 {
    font-size: 28px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 {
    margin-bottom: 25px;
  }
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 span {
  font-weight: 500;
  line-height: normal;
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 span {
  font-size: 16px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 span {
    font-size: calc(16px + 4 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 span {
    font-size: 20px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box h2 span {
    line-height: 20px;
    margin-bottom: 15px;
  }
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box p {
  font-weight: 400;
  line-height: normal;
  margin-bottom: 41px;
  text-align: var(--_section-content-text-alignment);
  color: var(--_section-content-text-color);
}
.two_col_wrapper.fifty-fifty-slider .two_col_content .content_box p {
  font-size: 16px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box p {
    font-size: calc(16px + 4 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box p {
    font-size: 20px;
  }
}
@media (max-width: 800.8px) {
  .two_col_wrapper.fifty-fifty-slider .two_col_content .content_box p {
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 25px;
    padding: 0px;
  }
}

.amenities_list_wrapper {
  padding: 100px 16.18vw 50px;
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper {
    padding: 40px 20px 20px;
  }
}
.amenities_list_wrapper .col_heading {
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 33px;
  text-align: center;
}
.amenities_list_wrapper .col_heading {
  font-size: 25px;
}
@media screen and (min-width: 393px) {
  .amenities_list_wrapper .col_heading {
    font-size: calc(25px + 7 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .amenities_list_wrapper .col_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper .col_heading {
    line-height: 28px;
    margin-bottom: 40px;
  }
}
.amenities_list_wrapper .heading_level_four {
  line-height: 32px;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
}
.amenities_list_wrapper .heading_level_four {
  font-size: 25px;
}
@media screen and (min-width: 393px) {
  .amenities_list_wrapper .heading_level_four {
    font-size: calc(25px + 3 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .amenities_list_wrapper .heading_level_four {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper .heading_level_four {
    line-height: 28px;
  }
}
.amenities_list_wrapper ul {
  list-style-type: none;
  padding: 0px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.amenities_list_wrapper ul .list-item {
  font-size: 16px;
  padding: 10px 0;
}
.amenities_list_wrapper ul .list-item:first-child {
  padding-top: 0px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper ul .list-item {
    padding: 0;
    padding-bottom: 16px;
  }
}
.amenities_list_wrapper ul .list-item.bordered_list {
  border-bottom: 1px solid;
}
.amenities_list_wrapper ul .bordered_list.amenities-bordered-separator {
  border-bottom: 1px solid #a0a0a0;
}
.amenities_list_wrapper .amenties_list_disclaimer {
  margin-block-start: 38px;
}
@media (min-width: 992px) {
  .amenities_list_wrapper .amenties_list_disclaimer {
    padding-bottom: 20px;
  }
}
.amenities_list_wrapper .column_wrapper {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 26px;
  row-gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper .column_wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.amenities_list_wrapper .amenitiles_border_consecutive {
  padding: 50px 100px;
}
.amenities_list_wrapper.two-column-subject-list {
  padding: 100px 6.45vw;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-list {
    padding: 40px 20px;
  }
}
.amenities_list_wrapper.two-column-subject-list .col_heading {
  line-height: 50px;
  margin-bottom: 70px;
}
.amenities_list_wrapper.two-column-subject-list .column_wrapper {
  column-gap: 56px;
}
.amenities_list_wrapper.two-column-subject-list .heading_level_four {
  padding: 10px 0px 10px 20px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-list .heading_level_four {
    padding: 0px;
  }
}
.amenities_list_wrapper.two-column-subject-list ul .list-item {
  padding: 20px 0;
  border-bottom: 1px solid #a0a0a0;
}
.amenities_list_wrapper.two-column-subject-list ul .list-item:first-child {
  padding-top: 10px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-list ul .list-item:first-child {
    padding-top: 0px;
  }
}
.amenities_list_wrapper.two-column-subject-paragraph {
  padding: 60px 6.45vw;
}
.amenities_list_wrapper.two-column-subject-paragraph .heading_level_two {
  text-align: center;
  line-height: 50px;
  margin-bottom: 56px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-paragraph .heading_level_two {
    margin-bottom: 40px;
    line-height: 34px;
  }
}
.amenities_list_wrapper.two-column-subject-paragraph .column_wrapper {
  column-gap: 62px;
}
@media (min-width: 992px) {
  .amenities_list_wrapper.two-column-subject-paragraph .column_wrapper {
    row-gap: 36px;
  }
}
.amenities_list_wrapper.two-column-subject-paragraph .heading_level_four {
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-paragraph .heading_level_four {
    margin-bottom: 20px;
  }
}
.amenities_list_wrapper.two-column-subject-paragraph .paragraph {
  font-weight: 400;
  line-height: normal;
}
.amenities_list_wrapper.two-column-subject-paragraph .paragraph {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .amenities_list_wrapper.two-column-subject-paragraph .paragraph {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .amenities_list_wrapper.two-column-subject-paragraph .paragraph {
    font-size: 20px;
  }
}
@media (max-width: 991.8px) {
  .amenities_list_wrapper.two-column-subject-paragraph .paragraph {
    font-weight: 500;
    line-height: 20px;
  }
}

.availability-wrapper {
  padding: 60px 5.55vw;
  margin: 0 auto;
}
.availability-wrapper .col_heading {
  margin-bottom: 15px;
}
.availability-wrapper .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.availability-wrapper .paragraph {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .availability-wrapper .paragraph {
    font-size: calc(18px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .availability-wrapper .paragraph {
    font-size: 20px;
  }
}
.availability-wrapper .paragraph {
  line-height: 22px;
}
@media screen and (min-width: 393px) {
  .availability-wrapper .paragraph {
    line-height: calc(22px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .availability-wrapper .paragraph {
    line-height: 26px;
  }
}
.availability-wrapper .dropdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.availability-wrapper #apartment-type {
  display: flex;
  width: 100%;
  background: transparent;
  justify-content: center;
  width: 100%;
  max-width: 353px;
}
@media (min-width: 992px) {
  .availability-wrapper #apartment-type {
    max-width: 392px;
  }
}
.availability-wrapper #apartment-type .selectivo__label {
  border: 1px solid #afd6dd;
  background: #2a5b57;
  padding: 13px 30px 13px 12px;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 17.94px;
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/down.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
}
.availability-wrapper #apartment-type .selectivo__dropdown {
  background-color: #2a5b57;
  border: 1px solid #afd6dd;
  max-height: 303px;
  overflow-y: auto;
}
.availability-wrapper #apartment-type .selectivo__dropdown .selectivo__option {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.94px;
  letter-spacing: 0.02em;
  text-align: left;
  border: unset;
}
.availability-wrapper #apartment-type .selectivo__dropdown .selectivo__option:first-child {
  background: none;
  position: relative;
}
.availability-wrapper #apartment-type .selectivo__dropdown .selectivo__option:first-child::after {
  content: "";
  position: absolute;
  right: 10px;
  background-image: url(../images/down.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 16px;
  height: 13px;
  top: calc(50% - 8px);
}
.availability-wrapper #apartment-type .selectivo__dropdown .selectivo__option:first-child.selectivo__option--selected {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.availability-wrapper #apartment-type .selectivo__dropdown .selectivo__option.selectivo__option--selected {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: italic;
  font-weight: 700;
}
.availability-wrapper.box_left .paragraph {
  text-align: left;
  margin-left: unset;
  margin-right: unset;
}
.availability-wrapper.box_left .dropdown-container {
  align-items: flex-start;
}
.availability-wrapper.box_left #apartment-type {
  justify-content: flex-start;
}
.availability-wrapper.box_right .paragraph {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.availability-wrapper.box_right .dropdown-container {
  align-items: flex-end;
}
.availability-wrapper.box_right #apartment-type {
  justify-content: flex-end;
}

.faq-accordion {
  padding: 40px 20px;
  --_section-text-color: var(--section-text-color, #b79555);
  --_section-background-color: var(--section-background-color, #f8f7f1);
}
@media (min-width: 992px) {
  .faq-accordion {
    padding: 100px 5.28vw;
  }
}
.faq-accordion__container {
  padding: 0 5.55vw;
  display: flex;
  gap: 60px;
  position: relative;
}
.faq-accordion__container:has(.faq-accordion__tabs) {
  padding: 0px;
}
@media (max-width: 991.8px) {
  .faq-accordion__container {
    flex-direction: column;
    gap: 30px;
    row-gap: 0;
  }
}
.faq-accordion__tabs {
  flex: 0 0 333px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  align-self: flex-start;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transition: top 0.3s ease;
}
@media (max-width: 991.8px) {
  .faq-accordion__tabs {
    flex: none;
    margin-bottom: 40px;
    position: relative;
    top: 0 !important;
    max-height: none;
    overflow: visible;
    width: 100%;
  }
}
.faq-accordion__tabs::-webkit-scrollbar {
  width: 6px;
}
.faq-accordion__tabs::-webkit-scrollbar-track {
  background: #212322;
  border-radius: 3px;
}
.faq-accordion__tabs::-webkit-scrollbar-thumb {
  background: #212322;
  border-radius: 3px;
}
.faq-accordion__tabs::-webkit-scrollbar-thumb:hover {
  background: #212322;
}
.faq-accordion__tabs + .faq-accordion__content {
  margin: 0 0 0 auto;
}
.faq-accordion__tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991.8px) {
  .faq-accordion__tab-list {
    display: none;
  }
}
@media (max-width: 991.8px) {
  .faq-accordion__tab-list.desktop {
    display: none;
  }
}
.faq-accordion__mobile-select {
  display: none;
}
@media (max-width: 991.8px) {
  .faq-accordion__mobile-select {
    display: block;
    width: 100%;
  }
  .faq-accordion__mobile-select.selectivo {
    display: block;
  }
  .faq-accordion__mobile-select .selectivo__label {
    font-family: "RecklessNeue-Light", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26.9px;
    padding: 14px 12px;
    background: #f8f7f1;
    border: 1px solid var(--_section-text-color);
    color: var(--_section-text-color);
    width: 100%;
    text-align: left;
    background-image: url(../images/down_ebony.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
  }
  .faq-accordion__mobile-select .selectivo__dropdown {
    border: 1px solid var(--_section-text-color);
    border-top: none;
    top: 1px;
    width: 100%;
    background-color: #f8f7f1;
    padding: 14px 0px 0px 12px;
    z-index: 9;
  }
  .faq-accordion__mobile-select .selectivo__dropdown .selectivo__option:nth-child(2) {
    background: none;
    position: relative;
  }
  .faq-accordion__mobile-select .selectivo__dropdown .selectivo__option:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 12px;
    background-image: url(../images/down_ebony.svg);
    background-repeat: no-repeat;
    transform: rotate(180deg);
    width: 16px;
    height: 13px;
    top: calc(50% - 20px);
  }
  .faq-accordion__mobile-select .selectivo__option {
    font-family: "RecklessNeue-Light", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 26.9px;
    padding: 0px 20px 20px 0px;
    color: var(--_section-text-color);
    width: 100%;
    text-align: left;
    outline: none;
  }
  .faq-accordion__mobile-select .selectivo__option:focus {
    outline: none;
  }
  .faq-accordion__mobile-select .selectivo__option:last-child {
    border-bottom: none;
  }
  .faq-accordion__mobile-select .selectivo__option:hover {
    color: #b79555;
  }
  .faq-accordion__mobile-select .selectivo__option.selectivo__option--selected {
    font-family: "RecklessNeue-Light", sans-serif;
    font-style: italic;
    color: #b79555;
    font-style: normal;
  }
}
@media (min-width: 992px) {
  .faq-accordion__mobile-select {
    display: none;
  }
  .faq-accordion__mobile-select.selectivo,
  .faq-accordion__mobile-select .selectivo__dropdown,
  .faq-accordion__mobile-select .selectivo__label {
    display: none;
  }
}
@media (max-width: 991.8px) {
  .faq-accordion__current-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid var(--_section-text-color);
    font-family: "RecklessNeue-Light", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 26.9px;
    cursor: pointer;
  }
  .faq-accordion__current-tab:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--_section-text-color);
    border-bottom: 2px solid var(--_section-text-color);
    transform: rotate(45deg);
    margin-top: -4px;
    transition: all 0.3s ease;
  }
}
.faq-accordion__tab {
  padding: 10px 10px 5px 10px;
  text-align: left;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--_section-text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  line-height: normal;
}
.faq-accordion__tab:hover {
  color: #b79555;
}
@media (max-width: 991.8px) {
  .faq-accordion__tab {
    padding: 15px 20px;
    border-bottom: 1px solid var(--_section-text-color);
  }
  .faq-accordion__tab:last-child {
    border-bottom: none;
  }
  .faq-accordion__tab.active {
    background: rgba(183, 149, 85, 0.1);
  }
}
.faq-accordion__content {
  flex: 1;
  max-width: 819px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 991.8px) {
  .faq-accordion__content {
    gap: 40px;
  }
}
@media (min-width: 1600px) {
  .faq-accordion__content {
    max-width: 1072px;
  }
}
.faq-accordion__panel {
  --_section-text-color: var(--section-text-color, #b79555);
  --_section-background-color: var(--section-background-color, #f8f7f1);
  display: block;
}
.faq-accordion__panel.active {
  display: block;
}
.faq-accordion__title {
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding-bottom: 24px;
  color: var(--_section-text-color);
}
.faq-accordion__title {
  font-size: 22px;
}
@media screen and (min-width: 393px) {
  .faq-accordion__title {
    font-size: calc(22px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .faq-accordion__title {
    font-size: 28px;
  }
}
.faq-accordion__title--spacing {
  margin-top: 60px;
  color: var(--_section-text-color);
}
@media (max-width: 991.8px) {
  .faq-accordion__title {
    padding-bottom: 20px;
    margin-top: 0px;
  }
}
@media (max-width: 575.8px) {
  .faq-accordion__title {
    font-size: 1.75rem;
  }
}
.faq-accordion__item {
  padding: 10px 0;
  border-bottom: 1px solid var(--_section-text-color);
}
.faq-accordion__item:first-of-type {
  border-top: 1px solid var(--_section-text-color);
}
@media (max-width: 991.8px) {
  .faq-accordion__item {
    padding: 20px 0;
  }
}
.faq-accordion__question {
  width: 100%;
  padding: 0 30px 0 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--_section-text-color);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-accordion__question {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .faq-accordion__question {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .faq-accordion__question {
    font-size: 20px;
  }
}
@media (max-width: 991.8px) {
  .faq-accordion__question {
    line-height: 20px;
  }
}
.faq-accordion__question:hover {
  color: var(--_section-text-color);
}
.faq-accordion__question svg {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 5px;
}
.faq-accordion__question svg path {
  stroke: var(--_section-text-color);
}
.faq-accordion__question .svg-minus {
  display: none;
}
.faq-accordion__question.active .svg-plus {
  display: none;
}
.faq-accordion__question.active .svg-minus {
  display: block;
}
.faq-accordion__answer {
  display: none;
  padding-top: 6px;
  color: var(--_section-text-color);
  font-size: 1rem;
  line-height: 1.6;
  will-change: height;
}
@media (max-width: 991.8px) {
  .faq-accordion__answer {
    padding-bottom: 22px;
  }
}
.faq-accordion__answer p {
  margin-top: 6px;
  font-weight: 500;
  line-height: 25px;
  opacity: 1;
  transform: none;
}
.faq-accordion__answer p {
  font-size: 15px;
}
@media screen and (min-width: 393px) {
  .faq-accordion__answer p {
    font-size: calc(15px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .faq-accordion__answer p {
    font-size: 16px;
  }
}
.faq-accordion__answer p:last-child {
  margin: 0;
}
@media (max-width: 991.8px) {
  .faq-accordion__answer p {
    line-height: normal;
  }
}
.faq-accordion__answer strong {
  font-weight: 600;
}
.faq-accordion__answer a {
  color: #b79555;
  text-decoration: underline;
}
.faq-accordion__answer a:hover {
  opacity: 0.7;
}
.faq-accordion__answer ul,
.faq-accordion__answer ol {
  opacity: 1;
  transform: none;
}
.faq-accordion__answer ul li,
.faq-accordion__answer ol li {
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
}
.faq-accordion .open .faq-accordion__answer p,
.faq-accordion .open .faq-accordion__answer ul,
.faq-accordion .open .faq-accordion__answer ol {
  opacity: 1;
}

.grid_two_col_wrapper {
  --_section-cta-button-background-color: var(--section-cta-button-background-color);
  --_section-cta-button-label-color: var(--section-cta-button-label-color);
  --_section-cta-button-border-color: var(--section-cta-button-border-color);
  --_section-cta-button-hovered-background-color: var(--section-cta-button-hovered-background-color);
  --_section-cta-button-hovered-label-color: var(--section-cta-button-hovered-label-color);
  --_section-cta-button-hovered-border-color: var(--section-cta-button-hovered-border-color);
  --_section-background-color: var(--section-background-color);
  --_section-text-color: var(--section-text-color);
  background-color: var(--_section-background-color);
  padding: 100px 6.45vw;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper {
    padding: 40px 20px;
    grid-template-columns: none;
  }
}
.grid_two_col_wrapper .grid_two_col {
  display: grid;
  column-gap: 60px;
  margin: 0 auto;
  row-gap: 40px;
}
@media (min-width: 576px) {
  .grid_two_col_wrapper .grid_two_col {
    row-gap: 50px;
    grid-template-columns: repeat(2, calc(50% - 30px));
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item {
  text-align: left;
}
.grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
  margin: 24px 0 20px;
  color: var(--_section-text-color);
}
.grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
    font-size: calc(26px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
    margin: 23px 0 10px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item img {
  width: 100%;
  height: 392px;
  object-fit: cover;
  aspect-ratio: 1.522959184;
}
.grid_two_col_wrapper .grid_two_col .grid_item img.top_left {
  border-top-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_item img.top_left {
    border-top-left-radius: 30px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item img.top_right {
  border-top-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_item img.top_right {
    border-top-right-radius: 30px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item img.bottom_left {
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_item img.bottom_left {
    border-bottom-left-radius: 30px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item img.bottom_right {
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_item img.bottom_right {
    border-bottom-right-radius: 30px;
  }
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_item img {
    height: 253px;
    aspect-ratio: 1.23715415;
  }
}
@media (min-width: 992px) {
  .grid_two_col_wrapper .grid_two_col .grid_item .grid_item_content {
    padding: 0px 10px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item p,
.grid_two_col_wrapper .grid_two_col .grid_item .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  color: var(--_section-text-color);
}
.grid_two_col_wrapper .grid_two_col .grid_item p,
.grid_two_col_wrapper .grid_two_col .grid_item .paragraph {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .grid_two_col_wrapper .grid_two_col .grid_item p,
  .grid_two_col_wrapper .grid_two_col .grid_item .paragraph {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .grid_two_col_wrapper .grid_two_col .grid_item p,
  .grid_two_col_wrapper .grid_two_col .grid_item .paragraph {
    font-size: 20px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item a,
.grid_two_col_wrapper .grid_two_col .grid_item a.btn {
  display: inline-block;
  background-color: var(--_section-cta-button-background-color);
  border-color: var(--_section-cta-button-border-color);
  color: var(--_section-cta-button-label-color);
  padding: 15px 20px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .grid_two_col_wrapper .grid_two_col .grid_item a,
  .grid_two_col_wrapper .grid_two_col .grid_item a.btn {
    margin-bottom: 10px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item a:hover,
.grid_two_col_wrapper .grid_two_col .grid_item a.btn:hover {
  background-color: var(--_section-cta-button-hovered-background-color);
  border-color: var(--_section-cta-button-hovered-border-color);
  color: var(--_section-cta-button-hovered-label-color);
}
.grid_two_col_wrapper .grid_two_col .grid_item > *:last-child {
  margin-block-end: 0;
}

.grid_bordered_list {
  display: flex;
  column-gap: 60px;
  padding: 100px 6.45vw 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list {
    flex-direction: column-reverse !important;
    padding: 40px 20px;
    row-gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .grid_bordered_list.is-slider {
    flex-direction: column;
  }
}
.grid_bordered_list.is-slider > div:last-child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .grid_bordered_list.is-slider > div:last-child {
    width: 63%;
  }
}
@media screen and (min-width: 991px) {
  .grid_bordered_list .col-bordered-list {
    width: 25vw;
  }
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 10px 0;
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    font-size: calc(30px + 12 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    padding: 0px;
    margin-bottom: 30px;
  }
}
.grid_bordered_list .col-bordered-list .bordered_list {
  padding: 0;
  list-style-type: none;
}
.grid_bordered_list .col-bordered-list .bordered_list li {
  font-size: 18px;
  font-weight: 300;
  border-bottom: 0.5px solid #a0a0a0;
  padding: 5px 0;
}
.grid_bordered_list .col-bordered-list .bordered_list li:first-child {
  padding-top: 0px;
}
.grid_bordered_list .col-bordered-list .bordered_list li :last-child {
  padding-bottom: 0px;
}
@media (max-width: 991.8px) {
  .grid_bordered_list .col-bordered-list .bordered_list li {
    padding: 12px 0;
  }
}
.grid_bordered_list .grid_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}
.grid_bordered_list .grid_item img.top_left {
  border-top-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.top_left {
    border-top-left-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.top_right {
  border-top-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.top_right {
    border-top-right-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.bottom_left {
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.bottom_left {
    border-bottom-left-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.bottom_right {
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.bottom_right {
    border-bottom-right-radius: 30px;
  }
}
.grid_bordered_list .grid_item_image {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.grid_bordered_list .grid_item_image .image-caption {
  font-family: "acumin-pro", sans-serif;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}
@media (min-width: 992px) {
  .grid_bordered_list .grid_item_image .image-caption {
    margin-top: 20px;
  }
}
.grid_bordered_list .grid-item__slider {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .grid_bordered_list .grid-item__slider {
    height: auto;
  }
}
.grid_bordered_list .grid-item__slider .slick-list {
  width: 100%;
  height: 100%;
}
.grid_bordered_list .grid-item__slider-item {
  width: 100%;
  height: 100%;
}
.grid_bordered_list .grid-item__slider-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 24px;
}
@media (min-width: 1025px) {
  .grid_bordered_list .grid-item__slider-controls {
    justify-content: end;
  }
}
.grid_bordered_list .grid-item__slider-controls--next, .grid_bordered_list .grid-item__slider-controls--prev {
  padding: 0;
  cursor: pointer;
}
.grid_bordered_list .grid-item__slider-controls--next svg path, .grid_bordered_list .grid-item__slider-controls--prev svg path {
  stroke: var(--color-primary, #4e5e3d);
}
.grid_bordered_list .grid-item__slider-controls--next.slick-disabled, .grid_bordered_list .grid-item__slider-controls--prev.slick-disabled {
  opacity: 0.35;
}

.map_wrapper {
  display: flex;
  justify-content: space-between;
  --_section-content-background-color: var(--section-content-background-color, #2a5b57);
  --_section-content-text-color:var(--section-content-text-color, #f8f7f1);
}
@media screen and (max-width: 991px) {
  .map_wrapper {
    flex-direction: column-reverse;
  }
}
.map_wrapper .map_container {
  background-color: beige;
}
@media screen and (min-width: 991px) {
  .map_wrapper .map_container {
    flex: 1;
  }
}
.map_wrapper .map_container > div {
  min-height: 804px;
  height: 100% !important;
}
@media (max-width: 991.8px) {
  .map_wrapper .map_container > div {
    height: 347px !important;
    min-height: auto;
  }
}
.map_wrapper .col_poi_list {
  padding: 40px 40px 20px;
}
@media screen and (min-width: 991px) {
  .map_wrapper .col_poi_list {
    width: 33.61%;
    padding: 38px 40px 38px 40px;
  }
}
.map_wrapper .col_poi_list .heading_level_three {
  margin-bottom: 24px;
}
@media screen and (min-width: 991px) {
  .map_wrapper .col_poi_list .heading_level_three {
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .map_wrapper .col_poi_list .heading_level_three {
    font-size: 26px;
    margin-bottom: 14px;
  }
}
.map_wrapper .col_poi_list .heading_level_five {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 14px 0 16px;
  border-bottom: 1px solid #f8f7f1;
}
.map_wrapper .col_poi_list .heading_level_five {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .map_wrapper .col_poi_list .heading_level_five {
    font-size: calc(18px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .map_wrapper .col_poi_list .heading_level_five {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .map_wrapper .col_poi_list .heading_level_five {
    padding: 16px 0 18px;
  }
}
@media screen and (max-width: 991px) {
  .map_wrapper .col_poi_list .heading_level_five svg {
    width: 18px;
    height: 18px;
  }
}
.map_wrapper .col_poi_list .heading_level_five .svg-minus {
  display: none;
}
.map_wrapper .col_poi_list .heading_level_five.active .svg-plus {
  display: none;
}
.map_wrapper .col_poi_list .heading_level_five.active .svg-minus {
  display: block;
}
.map_wrapper .col_poi_list .heading_level_five .cat-icon {
  display: inline-block;
  margin-right: 16px;
}
.map_wrapper .col_poi_list .poi_content {
  display: none;
  max-height: 200px;
  margin: 16px 0;
}
.map_wrapper .col_poi_list .poi_content ul {
  list-style-type: none;
  padding: 0;
}
.map_wrapper .col_poi_list .poi_content ul li {
  cursor: pointer;
  padding: 10px;
}
.map_wrapper .col_poi_list .poi_content ul li:hover, .map_wrapper .col_poi_list .poi_content ul li.active {
  background-color: #d9f4c7;
  color: #2a5b57;
}
.map_wrapper .col_poi_list .poi_content .mCS-poi-theme.mCSB_scrollTools .mCSB_dragger_bar {
  width: 6px;
  border-radius: 8px 8px 8px 8px;
  background-color: #f8f7f1;
}
.map_wrapper .col_poi_list .poi_content .mCS-poi-theme.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: transparent;
}
.map_wrapper #map_page .gm-style-iw {
  padding: 18px 20px 20px !important;
  background-color: var(--_section-content-background-color);
  width: 273px !important;
  overflow: visible;
  max-height: unset !important;
}
.map_wrapper #map_page .gm-style .gm-style-iw-tc::after {
  background: var(--_section-content-background-color);
}
.map_wrapper #map_page .gm-style-iw-chr {
  display: none !important;
}
.map_wrapper #map_page .gm-style-iw-d {
  overflow: hidden !important;
}
.map_wrapper #map_page .map-popup .popup-close-icon {
  cursor: pointer;
  position: absolute;
  right: 11px;
  top: 10px;
}
.map_wrapper #map_page .map-popup .popup-close-icon svg {
  fill: var(--_section-content-text-color);
}
.map_wrapper #map_page #content-sect {
  width: 90%;
}
.map_wrapper #map_page #content-sect,
.map_wrapper #map_page #content-sect a {
  color: var(--_section-content-text-color);
}
.map_wrapper #map_page #content-sect h3 {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}
.map_wrapper #map_page #content-sect h3 {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .map_wrapper #map_page #content-sect h3 {
    font-size: calc(20px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .map_wrapper #map_page #content-sect h3 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .map_wrapper #map_page #content-sect h3 {
    margin-bottom: 10px;
  }
}
.map_wrapper #map_page #content-sect .map-address {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .map_wrapper #map_page #content-sect .map-address {
    margin-bottom: 10px;
  }
}
.map_wrapper #map_page #content-sect .map-btns {
  line-height: 0;
}
.map_wrapper #map_page #content-sect .map-btns a {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  color: var(--_section-content-text-color);
  font-size: 16px;
  display: flex;
  gap: 3px;
  width: max-content;
  align-items: center;
  line-height: 18px;
}
.map_wrapper #map_page #content-sect .map-btns a::after {
  display: inline-block;
  content: "";
  width: 22px;
  height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  line-height: normal;
  margin-top: 2px;
}
.map_wrapper #map_page .tooltip {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  border-radius: 4px;
  background: var(--_section-content-background-color);
  transform: rotate(45deg) translateX(-50%) translateY(4px);
}

.neighborhood .availability-wrapper #apartment-type {
  width: 100%;
  max-width: 392px;
}
@media (max-width: 991.8px) {
  .neighborhood .availability-wrapper #apartment-type {
    max-width: 353px;
  }
}
.neighborhood .availability-wrapper #apartment-type .selectivo__label {
  height: 48px;
}
@media (max-width: 991.8px) {
  .neighborhood .availability-wrapper #apartment-type .selectivo__label {
    max-width: 353px;
    height: 44px;
  }
}
.neighborhood .availability-wrapper #find-apartment {
  width: 100%;
  height: 41px;
  margin: 0 auto;
  max-width: 266px;
}
@media (max-width: 991.8px) {
  .neighborhood .availability-wrapper #find-apartment {
    padding: 16px 28px;
    max-width: 250px;
    height: 43px;
  }
}
.neighborhood .availability-wrapper .btn:hover, .neighborhood .availability-wrapper .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .neighborhood .availability-wrapper input[type=submit]:hover,
.neighborhood .availability-wrapper .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .neighborhood .availability-wrapper input[type=submit]:hover {
  background-color: #f8f7f1 !important;
  color: #212322 !important;
  border-color: #f8f7f1 !important;
}
.neighborhood .media-banner-with-content__container {
  padding-bottom: 40px;
}
.neighborhood .map_container {
  position: relative;
}
.neighborhood #map-loader {
  position: absolute;
  inset: 0;
  background: #f8f7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.neighborhood #map-loader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.8px) {
  body.neighborhood .availability-wrapper .paragraph br {
    display: none;
  }
}

.grid_bordered_list {
  display: flex;
  column-gap: 60px;
  padding: 100px 6.45vw 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list {
    flex-direction: column-reverse !important;
    padding: 40px 20px;
    row-gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .grid_bordered_list.is-slider {
    flex-direction: column;
  }
}
.grid_bordered_list.is-slider > div:last-child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .grid_bordered_list.is-slider > div:last-child {
    width: 63%;
  }
}
@media screen and (min-width: 991px) {
  .grid_bordered_list .col-bordered-list {
    width: 25vw;
  }
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 10px 0;
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    font-size: calc(30px + 12 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .col-bordered-list .heading_level_two {
    padding: 0px;
    margin-bottom: 30px;
  }
}
.grid_bordered_list .col-bordered-list .bordered_list {
  padding: 0;
  list-style-type: none;
}
.grid_bordered_list .col-bordered-list .bordered_list li {
  font-size: 18px;
  font-weight: 300;
  border-bottom: 0.5px solid #a0a0a0;
  padding: 5px 0;
}
.grid_bordered_list .col-bordered-list .bordered_list li:first-child {
  padding-top: 0px;
}
.grid_bordered_list .col-bordered-list .bordered_list li :last-child {
  padding-bottom: 0px;
}
@media (max-width: 991.8px) {
  .grid_bordered_list .col-bordered-list .bordered_list li {
    padding: 12px 0;
  }
}
.grid_bordered_list .grid_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}
.grid_bordered_list .grid_item img.top_left {
  border-top-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.top_left {
    border-top-left-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.top_right {
  border-top-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.top_right {
    border-top-right-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.bottom_left {
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.bottom_left {
    border-bottom-left-radius: 30px;
  }
}
.grid_bordered_list .grid_item img.bottom_right {
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list .grid_item img.bottom_right {
    border-bottom-right-radius: 30px;
  }
}
.grid_bordered_list .grid_item_image {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.grid_bordered_list .grid_item_image .image-caption {
  font-family: "acumin-pro", sans-serif;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}
@media (min-width: 992px) {
  .grid_bordered_list .grid_item_image .image-caption {
    margin-top: 20px;
  }
}
.grid_bordered_list .grid-item__slider {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .grid_bordered_list .grid-item__slider {
    height: auto;
  }
}
.grid_bordered_list .grid-item__slider .slick-list {
  width: 100%;
  height: 100%;
}
.grid_bordered_list .grid-item__slider-item {
  width: 100%;
  height: 100%;
}
.grid_bordered_list .grid-item__slider-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 24px;
}
@media (min-width: 1025px) {
  .grid_bordered_list .grid-item__slider-controls {
    justify-content: end;
  }
}
.grid_bordered_list .grid-item__slider-controls--next, .grid_bordered_list .grid-item__slider-controls--prev {
  padding: 0;
  cursor: pointer;
}
.grid_bordered_list .grid-item__slider-controls--next svg path, .grid_bordered_list .grid-item__slider-controls--prev svg path {
  stroke: var(--color-primary, #4e5e3d);
}
.grid_bordered_list .grid-item__slider-controls--next.slick-disabled, .grid_bordered_list .grid-item__slider-controls--prev.slick-disabled {
  opacity: 0.35;
}

.media-banner-with-content {
  --_cta1-button-label-color: var(--cta1-button-label-color, #f8f7f1);
  --_cta1-button-background-color: var(--cta1-button-background-color, #b79555);
  --_cta1-button-border-color: var(--cta1-button-border-color, #b79555);
  --_cta1-button-hovered-label-color: var(--cta1-button-hovered-label-color, #212322);
  --_cta1-button-hovered-background-color: var(--cta1-button-hovered-background-color, #b79555);
  --_cta1-button-hovered-border-color: var(--cta1-button-hovered-border-color, #b79555);
  --_cta2-button-label-color: var(--cta2-button-label-color, #f8f7f1);
  --_cta2-button-background-color: var(--cta2-button-background-color, #b79555);
  --_cta2-button-border-color: var(--cta2-button-border-color, #b79555);
  --_cta2-button-hovered-label-color: var(--cta2-button-hovered-label-color, #212322);
  --_cta2-button-hovered-background-color: var(--cta2-button-hovered-background-color, #b79555);
  --_cta2-button-hovered-border-color: var(--cta2-button-hovered-border-color, #b79555);
}
.media-banner-with-content__container {
  width: 100%;
  padding: 40px 20px 30px;
}
@media (min-width: 992px) {
  .media-banner-with-content__container {
    padding: 110px 15vw 60px;
  }
}
.media-banner-with-content__container .media-banner-with-content__content {
  max-width: 1008px;
}
@media (max-width: 991.8px) {
  .media-banner-with-content__container .media-banner-with-content__content {
    max-width: 100%;
  }
}
.media-banner-with-content__content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .media-banner-with-content__content {
    max-width: 940px;
  }
}
.media-banner-with-content__heading {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-style: normal;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  color: #212322;
}
.media-banner-with-content__heading {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .media-banner-with-content__heading {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .media-banner-with-content__heading {
    font-size: 56px;
  }
}
.media-banner-with-content__heading {
  line-height: 40.36px;
}
@media screen and (min-width: 393px) {
  .media-banner-with-content__heading {
    line-height: calc(40.36px + 22.42 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .media-banner-with-content__heading {
    line-height: 62.78px;
  }
}
@media (min-width: 992px) {
  .media-banner-with-content__heading {
    margin-bottom: 30px;
  }
}
.media-banner-with-content__paragraph {
  font-size: 18px;
  text-align: center;
  font-family: "acumin-pro", sans-serif;
  color: #212322;
  font-weight: 300;
  line-height: 21.6px;
}
.media-banner-with-content__paragraph .btn, .media-banner-with-content__paragraph .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .media-banner-with-content__paragraph input[type=submit],
.media-banner-with-content__paragraph .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .media-banner-with-content__paragraph input[type=submit] {
  display: inline-block;
  padding: 12px 17px;
  width: fit-content;
  margin-top: 30px;
}
.media-banner-with-content__media {
  line-height: 0;
  padding: 20px;
}
@media (min-width: 992px) {
  .media-banner-with-content__media {
    padding: 47px 11.458vw 66px;
  }
}
.media-banner-with-content__media-container {
  position: relative;
  height: 43.34vw;
  width: 100%;
}
@media (min-width: 2200px) {
  .media-banner-with-content__media-container {
    height: auto;
  }
}
.media-banner-with-content__image-container {
  width: 100%;
  height: 100%;
}
.media-banner-with-content__image {
  width: 100%;
  height: 100%;
}
.media-banner-with-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-banner-with-content__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Stretch video to container width */
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.media-banner-with-content__video.playing + .video-banner-with-content__video-control {
  display: none;
}
.media-banner-with-content__video-container {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .media-banner-with-content__video-container {
    max-width: 1256px;
    margin: 0 auto;
  }
}
@media (min-width: 2200px) {
  .media-banner-with-content__video-container {
    max-width: 100%;
  }
}
.media-banner-with-content__video-container .video-wrapper, .media-banner-with-content__video-container .video-wrapper video {
  width: 100%;
  height: 100%;
}
.media-banner-with-content wistia-player {
  width: 100%;
  height: 100%;
}
@media (min-width: 2200px) {
  .media-banner-with-content wistia-player {
    max-width: 1256px;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
}
.media-banner-with-content__video-control {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 32px;
  background-color: rgba(196, 126, 90, 0.8);
  opacity: 0.8;
  transform: translate(-32px, -16px);
  cursor: pointer;
}
@media (min-width: 992px) {
  .media-banner-with-content__video-control {
    width: 100px;
    height: 64px;
    transform: translate(-50px, -32px);
  }
}
.media-banner-with-content__video-control-symbol {
  display: inline-block;
  width: clamp(0.8rem, -0.25rem + 5vw, 32px);
}
.media-banner-with-content__video-control-symbol svg {
  width: 100%;
  height: 100%;
  fill: #f8f7f1;
}
.media-banner-with-content__video-control-label {
  display: none;
}
.media-banner-with-content .btn.cta1, .media-banner-with-content .hbspt-form .hs-submit input.cta1[type=submit], .hbspt-form .hs-submit .media-banner-with-content input.cta1[type=submit],
.media-banner-with-content .hs-form .hs-submit input.cta1[type=submit],
.hs-form .hs-submit .media-banner-with-content input.cta1[type=submit] {
  color: var(--_cta1-button-label-color);
  background-color: var(--_cta1-button-background-color);
  border-color: var(--_cta1-button-border-color);
}
.media-banner-with-content .btn.cta1:hover, .media-banner-with-content .hbspt-form .hs-submit input.cta1[type=submit]:hover, .hbspt-form .hs-submit .media-banner-with-content input.cta1[type=submit]:hover,
.media-banner-with-content .hs-form .hs-submit input.cta1[type=submit]:hover,
.hs-form .hs-submit .media-banner-with-content input.cta1[type=submit]:hover {
  color: var(--_cta1-button-hovered-label-color);
  background-color: var(--_cta1-button-hovered-background-color);
  border-color: var(--_cta1-button-hovered-border-color);
}
.media-banner-with-content .btn.cta2, .media-banner-with-content .hbspt-form .hs-submit input.cta2[type=submit], .hbspt-form .hs-submit .media-banner-with-content input.cta2[type=submit],
.media-banner-with-content .hs-form .hs-submit input.cta2[type=submit],
.hs-form .hs-submit .media-banner-with-content input.cta2[type=submit] {
  color: var(--_cta2-button-label-color);
  background-color: var(--_cta2-button-background-color);
  border-color: var(--_cta2-button-border-color);
}
.media-banner-with-content .btn.cta2:hover, .media-banner-with-content .hbspt-form .hs-submit input.cta2[type=submit]:hover, .hbspt-form .hs-submit .media-banner-with-content input.cta2[type=submit]:hover,
.media-banner-with-content .hs-form .hs-submit input.cta2[type=submit]:hover,
.hs-form .hs-submit .media-banner-with-content input.cta2[type=submit]:hover {
  color: var(--_cta2-button-hovered-label-color);
  background-color: var(--_cta2-button-hovered-background-color);
  border-color: var(--_cta2-button-hovered-border-color);
}

.media-banner-with-content .media-banner-with-content__container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__paragraph a {
  margin-top: 30px;
}
@media (max-width: 991.8px) {
  .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__paragraph a {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__paragraph a:last-child {
    margin-top: 6px;
  }
}
.media-banner-with-content .media-banner-with-content__media {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.image-two-content-block {
  background: var(--section-background, "none");
  --_section-slider-control-color: var(--section-slider-control-color, #000);
  --_section-cta-button-background-color: var(--section-cta-button-background-color, #f7efd8);
  --_section-cta-button-label-color: var(--section-cta-button-label-color, #212322);
  --_section-cta-button-border-color: var(--section-cta-button-border-color, #f7efd8);
  --_section-cta-button-hovered-background-color: var(--section-cta-button-hovered-background-color, #212322);
  --_section-cta-button-hovered-label-color: var(--section-cta-button-hovered-label-color, #212322);
  --_section-cta-button-hovered-border-color: var(--section-cta-button-hovered-border-color, #f8f7f1);
}
.image-two-content-block__container {
  width: 100%;
}
.image-two-content-block__content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 30px;
  background: var(--content-background);
}
@media (min-width: 992px) {
  .image-two-content-block__content {
    flex-direction: row;
    padding: 60px 6.45vw;
    gap: 0;
  }
}
.image-two-content-block__content .image-two-content-block__col {
  color: #f8f7f1;
  display: contents;
  gap: 30px;
}
@media (min-width: 992px) {
  .image-two-content-block__content .image-two-content-block__col:nth-child(2) {
    max-width: 470px;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content .image-two-content-block__col {
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 50%;
    width: 50%;
  }
}
.image-two-content-block__content-heading-container {
  order: 0;
}
@media (min-width: 992px) {
  .image-two-content-block__content-heading-container {
    order: unset;
  }
}
.image-two-content-block__content-paragraph-container {
  order: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .image-two-content-block__content-paragraph-container {
    display: flex;
    justify-content: end;
    order: unset;
    align-self: end;
  }
}
.image-two-content-block__content .slick-initialized .image-two-content-block__content-paragraph-slider-item.slick-slide {
  display: flex;
  width: 100%;
}
.image-two-content-block__content-heading {
  font-style: normal;
  font-weight: 400;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  color: var(--heading-color, rgba(254, 234, 173, 0.8666666667));
  word-wrap: break-word;
}
.image-two-content-block__content-heading {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .image-two-content-block__content-heading {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .image-two-content-block__content-heading {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content-heading {
    line-height: 1.2;
    max-width: 40rem;
  }
}
.image-two-content-block__content-paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  color: var(--paragraph-color, rgba(254, 234, 173, 0.8666666667));
  word-wrap: break-word;
  overflow: hidden;
  font-weight: 400;
}
.image-two-content-block__content-paragraph {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .image-two-content-block__content-paragraph {
    font-size: calc(18px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .image-two-content-block__content-paragraph {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content-paragraph {
    line-height: 26px;
    max-width: 470px;
    font-weight: 300;
  }
}
.image-two-content-block__content-cta-button-container {
  order: 3;
}
.image-two-content-block__content-cta-button-container button,
.image-two-content-block__content-cta-button-container a {
  display: inline-block;
  text-transform: capitalize;
  border-color: var(--_section-cta-button-border-color);
  color: var(--_section-cta-button-label-color);
  background-color: var(--_section-cta-button-background-color);
  border-style: solid;
  border-width: 1px;
  padding: 10px 20px;
}
.image-two-content-block__content-cta-button-container button:hover,
.image-two-content-block__content-cta-button-container a:hover {
  border-color: var(--_section-cta-button-hovered-border-color);
  color: var(--_section-cta-button-hovered-label-color);
  background-color: var(--_section-cta-button-hovered-background-color);
}
@media (min-width: 992px) {
  .image-two-content-block__content-cta-button-container {
    order: unset;
  }
}
.image-two-content-block__content-slider-controls {
  order: 2;
  gap: 16px;
}
@media (min-width: 992px) {
  .image-two-content-block__content-slider-controls {
    gap: 10px;
    align-self: flex-end;
    order: unset;
    width: 100%;
    display: flex;
  }
}
.image-two-content-block__content-slider-controls--next, .image-two-content-block__content-slider-controls--prev {
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 24px;
}
.image-two-content-block__content-slider-controls--next.slick-disabled, .image-two-content-block__content-slider-controls--prev.slick-disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.image-two-content-block__content-slider-controls--next.slick-disabled svg, .image-two-content-block__content-slider-controls--prev.slick-disabled svg {
  opacity: 0.5;
}
.image-two-content-block__content-slider-controls--next svg, .image-two-content-block__content-slider-controls--prev svg {
  width: 100%;
  height: 100%;
  fill: var(--_section-slider-control-color);
  stroke-width: 1px;
}
.image-two-content-block__content-slider-controls--next svg path, .image-two-content-block__content-slider-controls--prev svg path {
  fill: var(--_section-slider-control-color);
}
.image-two-content-block__media {
  line-height: 0;
}
.image-two-content-block__media_slider {
  overflow: hidden;
  height: clamp(292px, 55.5556vw, 800px);
}
@media (min-width: 1920px) {
  .image-two-content-block__media_slider {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.image-two-content-block__media_slider .slick-list {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-two-content-block__media_slider .slick-track {
  width: 100%;
  height: 100%;
}
.image-two-content-block__media_slider_item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}
.image-two-content-block__media_slider_item:focus-visible {
  outline: 1px solid #f8f7f1;
  outline-offset: 5px;
}
.image-two-content-block__media_slider_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.image-two-content-block__media_container {
  position: relative;
}
.image-two-content-block .slider_control_btn {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  height: auto;
}
.image-two-content-block .slider_control_btn button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.image-two-content-block .slider_control_btn button::before, .image-two-content-block .slider_control_btn button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image-two-content-block .slider_control_btn button::before {
  background: url(../images/pause.svg) no-repeat center center;
  background-size: contain;
}
.image-two-content-block .slider_control_btn button::after {
  opacity: 0;
  background: url(../images/play.svg) no-repeat center center;
  background-size: contain;
}
.image-two-content-block .slider_control_btn button.paused::before {
  opacity: 0;
}
.image-two-content-block .slider_control_btn button.paused::after {
  opacity: 1;
}

@media (min-width: 992px) {
  .image-two-content-block__content .image-two-content-block__content-paragraph-container .image-two-content-block__content-paragraph-slider {
    max-width: 100%;
  }
}
.instagram-feed__container {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 30px;
}
@media (min-width: 992px) {
  .instagram-feed__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 54px;
    padding: 50px 6.45vw 100px;
  }
}
.instagram-feed__col {
  flex: 1;
}
.instagram-feed__col:first-child {
  flex-grow: 0;
}
@media (min-width: 992px) {
  .instagram-feed__col:first-child {
    align-self: center;
  }
}
.instagram-feed__col:first-child > a:hover {
  background-color: var(--instagram_feed_cta_hover_background_color, #212322) !important;
  border-color: var(--instagram_feed_cta_hover_border_color, #212322) !important;
}
.instagram-feed__col:first-child > a:hover span {
  color: var(--instagram_feed_cta_hover_color, #f8f7f1) !important;
}
@media (min-width: 992px) {
  .instagram-feed__col:nth-child(2) {
    grid-column: span 3;
  }
}
.instagram-feed__heading {
  font-style: normal;
  margin-bottom: 30px;
}
.instagram-feed__heading {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .instagram-feed__heading {
    font-size: calc(30px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .instagram-feed__heading {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .instagram-feed__heading {
    margin-bottom: 16px;
  }
}
.instagram-feed__paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 30px;
}
.instagram-feed__paragraph {
  font-size: 18px;
}
@media screen and (min-width: 393px) {
  .instagram-feed__paragraph {
    font-size: calc(18px + -2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .instagram-feed__paragraph {
    font-size: 16px;
  }
}
.instagram-feed__paragraph + a {
  display: inline-block;
  padding: 15px 20px;
  border-style: solid;
  border-width: 3px;
}
@media (max-width: 991.8px) {
  .instagram-feed__paragraph + a {
    padding: 10px 20px;
    border-width: 2px;
  }
}
.instagram-feed__follow-along {
  line-height: normal;
  text-transform: uppercase;
}
.instagram-feed #sb_instagram {
  padding: 0 !important;
}
.instagram-feed #sb_instagram #sbi_images {
  padding: 0;
  gap: 25px !important;
}
@media (min-width: 992px) {
  .instagram-feed #sb_instagram #sbi_images {
    gap: 10px !important;
  }
}
@media (min-width: 1400px) {
  .instagram-feed #sb_instagram .sbi_item,
  .instagram-feed #sb_instagram .sbi_inner_wrap,
  .instagram-feed #sb_instagram .sbi_photo_wrap,
  .instagram-feed #sb_instagram .sbi_photo {
    min-width: 284px;
    min-height: 283px;
  }
}
.instagram-feed #sb_instagram .sbi_item:has(a.sbi_photo:focus-visible), .instagram-feed #sb_instagram .sbi_item:has(a.sbi_photo:focus) {
  outline: 2px solid #212322;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 4px #212322;
}

.using-keytab #sb_instagram .sbi_photo {
  display: block;
}
.using-keytab #sb_instagram .sbi_photo:focus, .using-keytab #sb_instagram .sbi_photo:focus-visible {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 1px #fff, 0 0 0 4px #000 !important;
}
.using-keytab #sb_instagram .sbi_photo_wrap {
  overflow: visible;
}
.using-keytab #sb_instagram .sbi_photo,
.using-keytab #sb_instagram .sbi_link_area {
  position: relative;
  z-index: 1;
}
.using-keytab #sb_instagram .sbi_photo:focus::after,
.using-keytab #sb_instagram .sbi_photo:focus-visible::after,
.using-keytab #sb_instagram .sbi_link_area:focus::after,
.using-keytab #sb_instagram .sbi_link_area:focus-visible::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumb__list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__list-item {
  width: max-content;
}
.breadcrumb__list-item a {
  color: #b79555;
}
.breadcrumb__list-item::after {
  content: ">";
  margin: 0 10px;
}
.breadcrumb__list-item:last-child::after {
  content: "";
  display: none;
}

body.article .breadcrumb,
body.topic-filter-page .breadcrumb,
body.individual-fp .breadcrumb {
  background-color: #f7f8f1;
  color: #b79555;
}
body.article .breadcrumb__list,
body.topic-filter-page .breadcrumb__list,
body.individual-fp .breadcrumb__list {
  padding: 20px 5.55vw;
}
@media (max-width: 991.8px) {
  body.article .breadcrumb__list,
  body.topic-filter-page .breadcrumb__list,
  body.individual-fp .breadcrumb__list {
    padding: 20px;
  }
}
body.article .breadcrumb__list li,
body.topic-filter-page .breadcrumb__list li,
body.individual-fp .breadcrumb__list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.hs-form-field-input-autofill:-webkit-autofill, .hbspt-form .hs-form-field input[type=text].hs-input:-webkit-autofill, .hbspt-form .hs-form-field input[type=email].hs-input:-webkit-autofill, .hbspt-form .hs-form-field input[type=tel].hs-input:-webkit-autofill, .hbspt-form .hs-form-field select.hs-input:-webkit-autofill,
.hs-form .hs-form-field input[type=text].hs-input:-webkit-autofill,
.hs-form .hs-form-field input[type=email].hs-input:-webkit-autofill,
.hs-form .hs-form-field input[type=tel].hs-input:-webkit-autofill,
.hs-form .hs-form-field select.hs-input:-webkit-autofill, .hs-form-field-input-autofill:autofill, .hbspt-form .hs-form-field input[type=text].hs-input:autofill, .hbspt-form .hs-form-field input[type=email].hs-input:autofill, .hbspt-form .hs-form-field input[type=tel].hs-input:autofill, .hbspt-form .hs-form-field select.hs-input:autofill,
.hs-form .hs-form-field input[type=text].hs-input:autofill,
.hs-form .hs-form-field input[type=email].hs-input:autofill,
.hs-form .hs-form-field input[type=tel].hs-input:autofill,
.hs-form .hs-form-field select.hs-input:autofill {
  background: transparent !important;
  color: var(--text-color) !important;
  -webkit-text-fill-color: var(--text-color);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
.hs-form-field-input-autofill:-webkit-autofill:hover, .hbspt-form .hs-form-field input[type=text].hs-input:-webkit-autofill:hover, .hbspt-form .hs-form-field input[type=email].hs-input:-webkit-autofill:hover, .hbspt-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:hover, .hbspt-form .hs-form-field select.hs-input:-webkit-autofill:hover,
.hs-form .hs-form-field input[type=text].hs-input:-webkit-autofill:hover,
.hs-form .hs-form-field input[type=email].hs-input:-webkit-autofill:hover,
.hs-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:hover,
.hs-form .hs-form-field select.hs-input:-webkit-autofill:hover, .hs-form-field-input-autofill:-webkit-autofill:focus, .hbspt-form .hs-form-field input[type=text].hs-input:-webkit-autofill:focus, .hbspt-form .hs-form-field input[type=email].hs-input:-webkit-autofill:focus, .hbspt-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:focus, .hbspt-form .hs-form-field select.hs-input:-webkit-autofill:focus,
.hs-form .hs-form-field input[type=text].hs-input:-webkit-autofill:focus,
.hs-form .hs-form-field input[type=email].hs-input:-webkit-autofill:focus,
.hs-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:focus,
.hs-form .hs-form-field select.hs-input:-webkit-autofill:focus, .hs-form-field-input-autofill:-webkit-autofill:focus-within, .hbspt-form .hs-form-field input[type=text].hs-input:-webkit-autofill:focus-within, .hbspt-form .hs-form-field input[type=email].hs-input:-webkit-autofill:focus-within, .hbspt-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:focus-within, .hbspt-form .hs-form-field select.hs-input:-webkit-autofill:focus-within,
.hs-form .hs-form-field input[type=text].hs-input:-webkit-autofill:focus-within,
.hs-form .hs-form-field input[type=email].hs-input:-webkit-autofill:focus-within,
.hs-form .hs-form-field input[type=tel].hs-input:-webkit-autofill:focus-within,
.hs-form .hs-form-field select.hs-input:-webkit-autofill:focus-within, .hs-form-field-input-autofill:autofill:hover, .hbspt-form .hs-form-field input[type=text].hs-input:autofill:hover, .hbspt-form .hs-form-field input[type=email].hs-input:autofill:hover, .hbspt-form .hs-form-field input[type=tel].hs-input:autofill:hover, .hbspt-form .hs-form-field select.hs-input:autofill:hover,
.hs-form .hs-form-field input[type=text].hs-input:autofill:hover,
.hs-form .hs-form-field input[type=email].hs-input:autofill:hover,
.hs-form .hs-form-field input[type=tel].hs-input:autofill:hover,
.hs-form .hs-form-field select.hs-input:autofill:hover, .hs-form-field-input-autofill:autofill:focus, .hbspt-form .hs-form-field input[type=text].hs-input:autofill:focus, .hbspt-form .hs-form-field input[type=email].hs-input:autofill:focus, .hbspt-form .hs-form-field input[type=tel].hs-input:autofill:focus, .hbspt-form .hs-form-field select.hs-input:autofill:focus,
.hs-form .hs-form-field input[type=text].hs-input:autofill:focus,
.hs-form .hs-form-field input[type=email].hs-input:autofill:focus,
.hs-form .hs-form-field input[type=tel].hs-input:autofill:focus,
.hs-form .hs-form-field select.hs-input:autofill:focus, .hs-form-field-input-autofill:autofill:focus-within, .hbspt-form .hs-form-field input[type=text].hs-input:autofill:focus-within, .hbspt-form .hs-form-field input[type=email].hs-input:autofill:focus-within, .hbspt-form .hs-form-field input[type=tel].hs-input:autofill:focus-within, .hbspt-form .hs-form-field select.hs-input:autofill:focus-within,
.hs-form .hs-form-field input[type=text].hs-input:autofill:focus-within,
.hs-form .hs-form-field input[type=email].hs-input:autofill:focus-within,
.hs-form .hs-form-field input[type=tel].hs-input:autofill:focus-within,
.hs-form .hs-form-field select.hs-input:autofill:focus-within {
  background: transparent !important;
  color: var(--text-color) !important;
  -webkit-text-fill-color: var(--text-color);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.hbspt-form,
.hs-form {
  display: flex;
  flex-direction: column;
  --box-aligment: start;
  --text-color: var(var(--text-color), #f8f7f1);
  --select-background-color: #212322;
  --select-text-color: #f8f7f1;
  --submit-text-color: #212322;
  --submit-bg-color: #f8f7f1;
  --submit-hover-text-color: #212322;
  --submit-hover-bg-color: #f7efd8;
}
.hbspt-form.dark-theme,
.hs-form.dark-theme {
  --box-alignment: center;
  --text-color: var(var(--text-color), #212322);
  --select-background-color: #f8f7f1;
  --select-text-color: #212322;
  --submit-text-color: #f8f7f1;
  --submit-bg-color: #212322;
  --submit-hover-text-color: #f8f7f1;
  --submit-hover-bg-color: #b79555;
}
.hbspt-form.light-theme,
.hs-form.light-theme {
  --box-aligment: start;
  --text-color: var(var(--text-color), #f8f7f1);
  --select-background-color: #212322;
  --select-text-color: #f8f7f1;
  --submit-text-color: #212322;
  --submit-bg-color: #f8f7f1;
  --submit-hover-text-color: #212322;
  --submit-hover-bg-color: #f7efd8;
}
.hbspt-form fieldset.form-columns-2, .hbspt-form fieldset.form-columns-1,
.hs-form fieldset.form-columns-2,
.hs-form fieldset.form-columns-1 {
  max-width: 100%;
}
@media (min-width: 992px) {
  .hbspt-form fieldset.form-columns-2,
  .hs-form fieldset.form-columns-2 {
    display: flex;
    gap: 20px;
  }
}
.hbspt-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field {
  width: 100% !important;
}
@media (min-width: 992px) {
  .hbspt-form fieldset.form-columns-2 .hs-form-field,
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
  }
}
.hbspt-form fieldset.form-columns-2 .hs-form-field .hs-input,
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input {
  width: 100% !important;
}
.hbspt-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
@media (min-width: 992px) {
  .hbspt-form fieldset.form-columns-2 .hs-form-field,
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
  }
}
.hbspt-form .input,
.hs-form .input {
  margin-right: 0 !important;
}
.hbspt-form .hs-form-field,
.hs-form .hs-form-field {
  position: relative;
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .hbspt-form .hs-form-field,
  .hs-form .hs-form-field {
    grid-column: span 2;
  }
}
.hbspt-form .hs-form-field label,
.hs-form .hs-form-field label {
  display: block;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 34px;
}
@media (min-width: 992px) {
  .hbspt-form .hs-form-field label,
  .hs-form .hs-form-field label {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    padding-bottom: 34px;
    padding-bottom: 22px;
  }
}
.hbspt-form .hs-form-field.hs-fieldtype-select label,
.hs-form .hs-form-field.hs-fieldtype-select label {
  text-transform: none;
}
.hbspt-form .hs-form-field input[type=text].hs-input.hs-input, .hbspt-form .hs-form-field input[type=email].hs-input.hs-input, .hbspt-form .hs-form-field input[type=tel].hs-input.hs-input, .hbspt-form .hs-form-field select.hs-input.hs-input,
.hs-form .hs-form-field input[type=text].hs-input.hs-input,
.hs-form .hs-form-field input[type=email].hs-input.hs-input,
.hs-form .hs-form-field input[type=tel].hs-input.hs-input,
.hs-form .hs-form-field select.hs-input.hs-input {
  border: 0;
  color: var(--text-color);
  border-bottom: 1px solid var(--text-color);
  outline: none;
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  padding: 0 0 4px 0 !important;
  background: transparent;
}
@media (max-width: 991.8px) {
  .hbspt-form .hs-form-field input[type=text].hs-input.hs-input, .hbspt-form .hs-form-field input[type=email].hs-input.hs-input, .hbspt-form .hs-form-field input[type=tel].hs-input.hs-input, .hbspt-form .hs-form-field select.hs-input.hs-input,
  .hs-form .hs-form-field input[type=text].hs-input.hs-input,
  .hs-form .hs-form-field input[type=email].hs-input.hs-input,
  .hs-form .hs-form-field input[type=tel].hs-input.hs-input,
  .hs-form .hs-form-field select.hs-input.hs-input {
    margin-right: 0;
  }
}
.hbspt-form .hs-form-field .hs-input.hs-fieldtype-intl-phone,
.hs-form .hs-form-field .hs-input.hs-fieldtype-intl-phone {
  width: 100%;
}
.hbspt-form .hs-form-field textarea.hs-input,
.hs-form .hs-form-field textarea.hs-input {
  background: transparent;
  padding: 12px;
}
.hbspt-form .hs-form-field--firstname, .hbspt-form .hs-form-field--lastname,
.hs-form .hs-form-field--firstname,
.hs-form .hs-form-field--lastname {
  grid-column: span 1;
}
.hbspt-form .hs-form-field.hs-fieldtype-checkbox .inputs-list,
.hs-form .hs-form-field.hs-fieldtype-checkbox .inputs-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hbspt-form .hs-form-field.hs-email .hs-error-msgs,
.hs-form .hs-form-field.hs-email .hs-error-msgs {
  display: none;
}
.hbspt-form .hs-form-field.hs-email .hs-error-msgs:first-of-type,
.hs-form .hs-form-field.hs-email .hs-error-msgs:first-of-type {
  display: block;
}
.hbspt-form .hs-form-field select,
.hs-form .hs-form-field select {
  color: var(--text-color);
  background-color: transparent;
  line-height: 18px;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.hbspt-form .hs-form-field select > option,
.hs-form .hs-form-field select > option {
  background: var(--select-background-color);
  color: var(--select-text-color);
}
.hbspt-form .hs-form-field select > option:checked,
.hs-form .hs-form-field select > option:checked {
  box-shadow: none;
}
.hbspt-form .hs-form-field textarea,
.hs-form .hs-form-field textarea {
  border: 1px solid var(--text-color, #212322);
  height: 160px;
  font-family: "acumin-pro", sans-serif;
  width: 100% !important;
  padding: 5px 12px 5px 12px;
}
.hbspt-form .hs-form-field .hs-error-msgs,
.hs-form .hs-form-field .hs-error-msgs {
  position: absolute;
}
.hbspt-form .hs-form-field input[type=text].hs-input.hs-input, .hbspt-form .hs-form-field input[type=email].hs-input.hs-input, .hbspt-form .hs-form-field input[type=tel].hs-input.hs-input, .hbspt-form .hs-form-field select.hs-input.hs-input, .hbspt-form .hs-form-field textarea.hs-input,
.hs-form .hs-form-field input[type=text].hs-input.hs-input,
.hs-form .hs-form-field input[type=email].hs-input.hs-input,
.hs-form .hs-form-field input[type=tel].hs-input.hs-input,
.hs-form .hs-form-field select.hs-input.hs-input,
.hs-form .hs-form-field textarea.hs-input {
  border-radius: 0;
  /* removes rounded corners */
  -webkit-appearance: none;
  /* removes iOS default styling */
  appearance: none;
  outline: none;
}
.hbspt-form .hs-form-checkbox label,
.hs-form .hs-form-checkbox label {
  cursor: pointer;
  width: max-content;
}
.hbspt-form .hs-form-checkbox input,
.hs-form .hs-form-checkbox input {
  width: 13px;
  height: 13px;
  accent-color: var(--text-color);
  margin-right: 10px;
}
.hbspt-form .hs-form-radio-display input,
.hs-form .hs-form-radio-display input {
  margin-right: 10px;
}
.hbspt-form .hs-fieldtype-booleancheckbox .inputs-list,
.hs-form .hs-fieldtype-booleancheckbox .inputs-list {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.hbspt-form .hs-fieldtype-booleancheckbox .inputs-list input[type=checkbox].hs-input.hs-input,
.hs-form .hs-fieldtype-booleancheckbox .inputs-list input[type=checkbox].hs-input.hs-input {
  width: 13px;
  height: 13px;
  accent-color: var(--text-color);
  margin-right: 12px;
}
.hbspt-form .hs-fieldtype-booleancheckbox .inputs-list label,
.hs-form .hs-fieldtype-booleancheckbox .inputs-list label {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.01rem;
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 22px;
}
@media (min-width: 992px) {
  .hbspt-form .hs-fieldtype-booleancheckbox .inputs-list label,
  .hs-form .hs-fieldtype-booleancheckbox .inputs-list label {
    align-items: center;
  }
}
.hbspt-form .hs-submit .actions,
.hs-form .hs-submit .actions {
  display: flex;
  justify-content: var(--box-alignment, "start");
}
.hbspt-form .hs-submit input[type=submit],
.hs-form .hs-submit input[type=submit] {
  border-radius: 0;
  border-top-right-radius: 12px;
  margin-bottom: 0;
  cursor: pointer;
  border: 1px solid var(--text-color);
  background-color: var(--submit-bg-color);
  color: var(--submit-text-color);
  padding: 16px 28px;
}
@media (min-width: 992px) {
  .hbspt-form .hs-submit input[type=submit],
  .hs-form .hs-submit input[type=submit] {
    padding: 15px 36px;
    border-top-right-radius: 20px;
  }
}
.hbspt-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit input[type=submit]:hover {
  background-color: var(--submit-hover-bg-color);
  color: var(--submit-hover-text-color);
  border: 1px solid #f8f7f1;
}
.hbspt-form .hs_error_rollup,
.hs-form .hs_error_rollup {
  display: none;
}
.hbspt-form .hs-error-msgs,
.hs-form .hs-error-msgs {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: red;
  list-style-type: none;
  position: absolute;
}
.hbspt-form .hs-error-msgs .hs-error-msg,
.hs-form .hs-error-msgs .hs-error-msg {
  font-size: 12px;
  color: red;
}
.hbspt-form .submitted-message p,
.hs-form .submitted-message p {
  text-align: center;
}

/* contact and waitlist form styling */
.contact-form .hs-fieldtype-booleancheckbox.hs_sms_opt_in {
  margin-bottom: 18px;
}

@media (max-width: 991.8px) {
  .resources-two-col-container.contact-form, .resources-two-col-container.waitlist-form {
    padding: 40px 20px;
  }
  .resources-two-col-container.contact-form .hs-form .hs-form-field, .resources-two-col-container.waitlist-form .hs-form .hs-form-field {
    margin-bottom: 45px;
  }
  .resources-two-col-container.contact-form .hs-form .hs-form-field label, .resources-two-col-container.waitlist-form .hs-form .hs-form-field label {
    padding-bottom: 0px;
  }
}
.resources-two-col-container.contact-form .hs-form .hs-form-field.hs-fieldtype-textarea .input textarea, .resources-two-col-container.waitlist-form .hs-form .hs-form-field.hs-fieldtype-textarea .input textarea {
  min-height: 160px !important;
}
.resources-two-col-container.contact-form .hs-form .hs-form-field.hs_phone label, .resources-two-col-container.waitlist-form .hs-form .hs-form-field.hs_phone label {
  padding-bottom: 18px;
}
.resources-two-col-container.contact-form .resources-left-section, .resources-two-col-container.waitlist-form .resources-left-section {
  padding: 0px;
}
.resources-two-col-container.contact-form .resources-left-section .heading_level_three, .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
  font-weight: 700;
}
.resources-two-col-container.contact-form .resources-left-section .paragraph, .resources-two-col-container.waitlist-form .resources-left-section .paragraph {
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 30px;
}
.resources-two-col-container.contact-form .resources-left-section .paragraph, .resources-two-col-container.waitlist-form .resources-left-section .paragraph {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .resources-two-col-container.contact-form .resources-left-section .paragraph, .resources-two-col-container.waitlist-form .resources-left-section .paragraph {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .resources-two-col-container.contact-form .resources-left-section .paragraph, .resources-two-col-container.waitlist-form .resources-left-section .paragraph {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .resources-two-col-container.contact-form .resources-left-section .paragraph, .resources-two-col-container.waitlist-form .resources-left-section .paragraph {
    line-height: normal;
    margin-bottom: 35px;
  }
}
.resources-two-col-container.contact-form .resources-left-section .hsl-form__container .submitted-message, .resources-two-col-container.waitlist-form .resources-left-section .hsl-form__container .submitted-message {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .resources-two-col-container.contact-form:not(.full-width-form) .resources-left-section, .resources-two-col-container.waitlist-form:not(.full-width-form) .resources-left-section {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .resources-two-col-container.contact-form {
    padding: 60px 25.65vw 50px;
  }
}
.resources-two-col-container.contact-form .resources-left-section .heading_level_three {
  margin-bottom: 20px;
  line-height: 50px;
}
.resources-two-col-container.contact-form .resources-left-section .heading_level_three {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .resources-two-col-container.contact-form .resources-left-section .heading_level_three {
    font-size: calc(30px + 14 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .resources-two-col-container.contact-form .resources-left-section .heading_level_three {
    font-size: 44px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container.contact-form .resources-left-section .heading_level_three {
    margin-bottom: 30px;
    line-height: 34px;
  }
}
.resources-two-col-container.contact-form .resources-left-section .hs-form .hs-form-field input[type=text] {
  height: 18px;
  padding: 0 0 5px 0 !important;
}
.resources-two-col-container.contact-form .resources-left-section .hs-form .hs-form-field label {
  padding-bottom: 26px;
}
.resources-two-col-container.contact-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-select label {
  padding-bottom: 23.5px;
}
.resources-two-col-container.contact-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-textarea label {
  padding-bottom: 18px;
}
@media (min-width: 992px) {
  .resources-two-col-container.waitlist-form {
    padding: 100px 22.01vw;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
  text-transform: capitalize;
  text-align: center;
  line-height: 35px;
  margin-bottom: 90px;
}
.resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
  font-size: 25px;
}
@media screen and (min-width: 393px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
    font-size: calc(25px + 7 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
    font-size: 32px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three {
    line-height: 28px;
    margin-bottom: 60px;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .heading_level_three span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-top: 27px;
}
.resources-two-col-container.waitlist-form .resources-left-section .heading_level_three span {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three span {
    font-size: calc(16px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three span {
    font-size: 24px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container.waitlist-form .resources-left-section .heading_level_three span {
    margin-top: 30px;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-checkbox label {
  padding-bottom: 18px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-checkbox label {
    margin-bottom: 20px;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-booleancheckbox[class*=hs_newsletter_] {
  margin-bottom: 18px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-booleancheckbox[class*=hs_newsletter_] {
    margin-bottom: 30px;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-checkbox[class*=floorplan_of_interest_] {
  margin-bottom: 18px;
}
.resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-checkbox[class*=floorplan_of_interest_] .hs-form-checkbox-display {
  padding-bottom: 8px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-checkbox[class*=floorplan_of_interest_] .hs-form-checkbox-display {
    padding-bottom: 0px;
  }
}
.resources-two-col-container.waitlist-form .resources-left-section .hs-form .hs-form-field.hs-fieldtype-text[class*=hs_budget_] label {
  padding-bottom: 30px;
}

.floorplan-listing {
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-card-text-color: var(--section-card-text-color, #212322);
  --_section-card-view-background-color: var(--section-card-view-background-color,
          none);
  --_section-card-view-text-color: var(--section-card-view-text-color,
      #b79555);
  --_section-pagination-active-color: var(--section-pagination-active-color,
      #b79555);
  --_section-cta-background-color: var(--section-cta-background-color,
      #c47e5a);
  --_section-cta-text-color: var(--section-cta-text-color, #f8f7f1);
  --_section-cta-button-label-color: var(--section-cta-button-label-color,
      #212322);
  --_section-cta-button-background-color: var(--section-cta-button-background-color,
      #f7efd8);
  --_section-cta-button-border-color: var(--section-cta-button-border-color,
      #f7efd8);
  --_section-cta-button-hovered-label-color: var(--section-cta-button-hovered-label-color,
      #f8f7f1);
  --_section-cta-button-hovered-background-color: var(--section-cta-button-hovered-background-color,
      #212322);
  --_section-cta-button-hovered-border-color: var(--section-cta-button-hovered-border-color,
      #212322);
  --_section-padding-top: var(--section-padding-top, 0);
  --_section-padding-bottom: var(--section-padding-bottom, 20px);
  --_section-padding-left: var(--section-padding-left, 20px);
  --_section-padding-right: var(--section-padding-right, 20px);
  --_section-card-padding-top: var(--section-card-padding-top, 0);
  --_section-card-padding-bottom: var(--section-card-padding-bottom, 0);
  --_section-card-padding-left: var(--section-card-padding-left, 0);
  --_section-card-padding-right: var(--section-card-padding-right, 0);
  --_section-card-background-color: var(--section-card-background-color,
          none);
  --_section-card-border-color: var(--section-card-border-color, none);
  background: var(--_section-background-color);
  position: relative;
  /* Floorplans item tags */
}
.floorplan-listing__container {
  margin: 0 auto;
  padding-top: var(--_section-padding-top);
  padding-bottom: var(--_section-padding-bottom);
  padding-left: var(--_section-padding-left);
  padding-right: var(--_section-padding-right);
}
@media (min-width: 992px) {
  .floorplan-listing__container {
    --_section-padding-bottom: var(--section-padding-bottom, 40px);
    --_section-padding-left: var(--section-padding-left, 5.555558vw);
    --_section-padding-right: var(--section-padding-right, 5.555558vw);
  }
}
.floorplan-listing__total-result {
  text-align: center;
  padding: 20px 40px 40px 40px;
  color: #a0a0a0;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 16px;
  font-size: 16px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .floorplan-listing__total-result {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.floorplan-listing__content-wrapper {
  display: contents;
}
.floorplan-listing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 0;
}
@media (min-width: 768px) {
  .floorplan-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .floorplan-listing__grid {
    grid-template-columns: 1fr 38.438% 1fr;
    gap: 59px 0;
  }
}
@media (min-width: 1920px) {
  .floorplan-listing__grid {
    grid-template-columns: 1fr 27.765% 27.765% 1fr;
  }
}
.floorplan-listing__grid-item {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  border-color: var(--_section-card-border-color);
  min-height: 400px;
}
.floorplan-listing__grid-item::after {
  display: block;
  position: absolute;
  bottom: 0;
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--_section-card-border-color);
}
.floorplan-listing__grid-item:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.floorplan-listing__grid-item:last-of-type::after {
  display: none;
}
@media (min-width: 768px) {
  .floorplan-listing__grid-item {
    border-bottom: 0;
    padding-bottom: 0;
    border-color: var(--_section-card-border-color);
  }
  .floorplan-listing__grid-item::after {
    display: block;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    bottom: unset;
  }
  .floorplan-listing__grid-item:nth-of-type(2n)::after {
    display: none;
  }
  .floorplan-listing__grid-item:last-of-type {
    border-right: 0;
  }
}
@media (min-width: 1200px) {
  .floorplan-listing__grid-item {
    border-bottom: 0;
    border-color: var(--_section-card-border-color);
  }
  .floorplan-listing__grid-item:nth-of-type(3n-1) {
    padding-left: 15.92%;
    padding-right: 15.92%;
    border-color: var(--_section-card-border-color);
  }
  .floorplan-listing__grid-item:nth-of-type(3n-1)::after {
    display: block;
  }
  .floorplan-listing__grid-item:nth-of-type(3n) {
    padding-left: 20.94%;
    padding-right: 0;
    border-right: 0;
  }
  .floorplan-listing__grid-item:nth-of-type(3n)::after {
    display: none;
  }
  .floorplan-listing__grid-item:nth-of-type(3n + 1) {
    padding-left: 0;
    padding-right: 20.94%;
  }
  .floorplan-listing__grid-item:nth-of-type(3n + 1)::after {
    display: block;
  }
  .floorplan-listing__grid-item:last-of-type {
    border: none;
  }
}
@media (min-width: 1400px) {
  .floorplan-listing__grid-item:nth-of-type(3n-1) {
    padding-left: 19.92%;
    padding-right: 19.92%;
  }
  .floorplan-listing__grid-item:nth-of-type(3n) {
    padding-left: 24.94%;
    padding-right: 0;
  }
  .floorplan-listing__grid-item:nth-of-type(3n + 1) {
    padding-left: 0;
    padding-right: 24.94%;
  }
}
@media (min-width: 1920px) {
  .floorplan-listing__grid-item:nth-of-type(n) {
    padding-left: 19.92%;
    padding-right: 19.92%;
  }
  .floorplan-listing__grid-item:nth-of-type(n)::after {
    display: block;
  }
  .floorplan-listing__grid-item:nth-of-type(4n) {
    padding-left: 24.94%;
    padding-right: 0;
  }
  .floorplan-listing__grid-item:nth-of-type(4n)::after {
    display: none;
  }
  .floorplan-listing__grid-item:nth-of-type(4n + 1) {
    padding-left: 0;
    padding-right: 24.94%;
  }
  .floorplan-listing__grid-item:last-of-type::after {
    display: none;
  }
}
.floorplan-listing__grid-item.floorplan-listing__cta-item {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 991.8px) {
  .floorplan-listing .floorplan-listing__grid > .floorplan-listing__cta-item {
    padding-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .floorplan-listing .floorplan-listing__grid > .floorplan-listing__cta-item .promo-block .promo-block__content {
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
  .floorplan-listing .floorplan-listing__grid > .floorplan-listing__cta-item .promo-block .promo-block__content a.promo-block__button {
    width: fit-content;
    min-width: 167px;
    text-align: center;
    padding: 12px 20px;
  }
}
.floorplan-listing__grid-wrapper {
  display: contents;
}
.floorplan-listing__title {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-size: 26px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 100%;
}
@media (min-width: 992px) {
  .floorplan-listing__title {
    font-size: 28px;
  }
}
.floorplan-listing__text {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.floorplan-listing #schedule-tour-popup-butt on {
  align-self: flex-start;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.floorplan-listing #schedule-tour-popup-butt on a {
  color: #212322;
}
.floorplan-listing #schedule-tour-popup-butt on:hover {
  background: #212322 !important;
  color: #f8f7f1 !important;
}
.floorplan-listing__button, .floorplan-listing__button.fill_btn {
  align-self: flex-start;
  background: #f8f7f1;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.floorplan-listing__button a, .floorplan-listing__button.fill_btn a {
  color: #212322;
}
.floorplan-listing__button:hover, .floorplan-listing__button.fill_btn:hover {
  background: #212322;
  color: #f8f7f1;
}
.floorplan-listing__cta {
  background-color: var(--_section-cta-background-color);
  color: var(--_section-cta-text-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .floorplan-listing__cta {
    margin-right: 32px;
  }
}
.floorplan-listing__cta .btn, .floorplan-listing__cta .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .floorplan-listing__cta input[type=submit],
.floorplan-listing__cta .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .floorplan-listing__cta input[type=submit],
.floorplan-listing__cta #schedule-tour-popup-button {
  background-color: var(--_section-cta-button-background-color);
  color: var(--_section-cta-button-label-color);
  border-color: var(--_section-cta-button-background-color);
  padding: 14px 35.15px;
}
.floorplan-listing__cta .btn a, .floorplan-listing__cta .hbspt-form .hs-submit input[type=submit] a, .hbspt-form .hs-submit .floorplan-listing__cta input[type=submit] a,
.floorplan-listing__cta .hs-form .hs-submit input[type=submit] a,
.hs-form .hs-submit .floorplan-listing__cta input[type=submit] a,
.floorplan-listing__cta #schedule-tour-popup-button a {
  color: var(--_section-cta-button-label-color);
}
.floorplan-listing__cta .btn:hover, .floorplan-listing__cta .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .floorplan-listing__cta input[type=submit]:hover,
.floorplan-listing__cta .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .floorplan-listing__cta input[type=submit]:hover,
.floorplan-listing__cta #schedule-tour-popup-button:hover {
  background-color: var(--_section-cta-button-hovered-background-color);
  border-color: var(--_section-cta-button-hovered-border-color);
  color: var(--_section-cta-button-hovered-label-color);
}
.floorplan-listing #schedule-tour-popup-button:hover {
  background-color: #212322;
  color: #f8f7f1;
}
@media (min-width: 992px) {
  .floorplan-listing #schedule-tour-popup-button {
    border-top-right-radius: 20px;
    padding: 14px 35.15px;
  }
}
.floorplan-listing__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  row-gap: 24px;
  background-color: var(--_section-card-background-color);
  padding-top: var(--_section-card-padding-top);
  padding-bottom: var(--_section-card-padding-bottom);
  padding-left: var(--_section-card-padding-left);
  padding-right: var(--_section-card-padding-right);
  margin: 0 0 0 32px;
}
.floorplan-listing__card[data-sold="1"] .floorplan-listing__image a img {
  opacity: 0.4;
}
@media (min-width: 992px) {
  .floorplan-listing__card {
    row-gap: 39px;
  }
}
.floorplan-listing__card[data-sold="1"] .floorplan-listing__image {
  opacity: 0.5;
}
.floorplan-listing__image {
  position: relative;
  width: 100%;
  flex: 1;
}
@media (min-width: 1200px) {
  .floorplan-listing__image {
    padding: 0;
  }
}
.floorplan-listing__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  aspect-ratio: 1.3375;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .floorplan-listing__image img {
    aspect-ratio: 1.1;
  }
}
.floorplan-listing__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .floorplan-listing__content {
    width: 100%;
    margin: 0 auto;
  }
}
.floorplan-listing__label {
  display: none;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: 100%;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 16px;
  line-height: 1;
}
.floorplan-listing__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: transparent;
  display: flex;
  column-gap: 6px;
  row-gap: 6px;
}
.floorplan-listing__badges .badge {
  display: inline-block;
  padding: 5px 6px 3px;
  font-family: "acumin-pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  border-radius: 2px;
  text-wrap: auto;
  color: #c47e5a;
  background-color: #f8f7f1;
  border: 1px solid transparent;
  text-transform: uppercase;
  max-width: max-content;
}
.floorplan-listing__badges .badge > span {
  display: inline;
}
.floorplan-listing__name {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  color: var(--_section-card-text-color);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  word-break: break-word;
  margin-bottom: 14px;
  margin-top: 14px;
}
@media (min-width: 992px) {
  .floorplan-listing__name {
    margin-top: 43px;
    margin-bottom: 30px;
  }
}
.floorplan-listing__name a {
  color: var(--_section-card-text-color);
}
.floorplan-listing__name a:hover {
  color: #b79555;
}
.floorplan-listing__name a:focus {
  color: var(--_section-card-text-color);
}
@media (min-width: 992px) {
  .floorplan-listing__name {
    font-size: 28px;
    font-family: "RecklessNeue-Regular", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
  }
}
.floorplan-listing__details {
  display: flex;
  color: var(--_section-card-text-color);
  row-gap: 3px;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
  flex-direction: column;
}
@media (min-width: 992px) {
  .floorplan-listing__details {
    row-gap: 6px;
    font-size: 18px;
  }
}
.floorplan-listing__price {
  color: var(--_section-card-text-color);
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
}
@media (min-width: 992px) {
  .floorplan-listing__price {
    font-size: 18px;
  }
}
.floorplan-listing__link {
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--_section-card-view-text-color);
  background-color: var(--_section-card-view-background-color);
  line-height: 0.723;
}
.floorplan-listing__link:hover {
  color: #212322;
}
@media (min-width: 992px) {
  .floorplan-listing__link {
    font-size: 18px;
  }
}
.floorplan-listing__lease {
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-text-color: var(--section-text-color, #212322);
  --_section-cta-label-color: var(--section-cta-label-color, #f8f7f1);
  --_section-cta-background-color: var(--section-cta-background-color,
      #212322);
  --_section-cta-border-color: var(--section-cta-border-color,
      #212322);
  --_section-cta-hovered-label-color: var(--section-cta-hovered-label-color, #212322);
  --_section-cta-hovered-background-color: var(--section-cta-hovered-background-color,
      #f7efd8);
  --_section-cta-hovered-border-color: var(--section-cta-hovered-border-color,
      #f7efd8);
  --_section-padding-top: var(--section-padding-top, 20px);
  --_section-padding-bottom: var(--section-padding-bottom, 20px);
  --_section-padding-left: var(--section-padding-left, 20px);
  --_section-padding-right: var(--section-padding-right, 20px);
  background-color: var(--_section-background-color);
  padding-top: var(--_section-padding-top);
  padding-bottom: var(--_section-padding-bottom);
  padding-left: var(--_section-padding-left);
  padding-right: var(--_section-padding-right);
}
@media (min-width: 992px) {
  .floorplan-listing__lease {
    --_section-padding-top: var(--section-padding-top, 20px);
    --_section-padding-bottom: var(--section-padding-bottom, 80px);
    --_section-padding-left: var(--section-padding-left, 0);
    --_section-padding-right: var(--section-padding-right, 0);
  }
}
.floorplan-listing__lease-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 22px 100px 34px;
  border: 1px solid #212322;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (max-width: 767.8px) {
  .floorplan-listing__lease-container {
    padding: 22px 40px;
  }
}
.floorplan-listing__lease-container #schedule-tour-popup-button {
  padding: 13.5px 36px 14.5px;
  height: 41px;
  line-height: 0.64;
  width: fit-content;
  margin: 0 auto;
  background-color: var(--_section-cta-background-color);
  border-color: var(--_section-cta-border-color);
  color: var(--_section-cta-label-color);
}
.floorplan-listing__lease-container #schedule-tour-popup-button:hover {
  background-color: var(--_section-cta-hovered-background-color);
  border-color: var(--_section-cta-hovered-border-color);
  color: var(--_section-cta-hovered-label-color);
}
.floorplan-listing__lease.lease-items-end .floorplan-listing__lease-title {
  text-align: right;
}
.floorplan-listing__lease.lease-items-end .floorplan-listing__lease-btn {
  margin-right: 0;
  margin-left: auto;
}
.floorplan-listing__lease.lease-items-center .floorplan-listing__lease-title {
  text-align: center;
}
.floorplan-listing__lease.lease-items-center .floorplan-listing__lease-btn {
  margin-right: auto;
  margin-left: auto;
}
.floorplan-listing__lease.lease-items-start .floorplan-listing__lease-title {
  text-align: left;
}
.floorplan-listing__lease.lease-items-start .floorplan-listing__lease-btn {
  margin-right: auto;
  margin-left: 0;
}
.floorplan-listing__lease-title {
  margin-bottom: 25px;
  font-size: 44px;
  font-weight: 700;
  line-height: 50px;
}
.floorplan-listing__lease-title strong {
  display: block;
  font-style: italic;
}
@media (min-width: 992px) {
  .floorplan-listing__lease-title strong {
    display: inline-block;
  }
}
@media (max-width: 991.8px) {
  .floorplan-listing__lease-title {
    font-size: 30px;
    line-height: 34px;
  }
}
.floorplan-listing__lease-btn.btn, .hbspt-form .hs-submit input.floorplan-listing__lease-btn[type=submit],
.hs-form .hs-submit input.floorplan-listing__lease-btn[type=submit] {
  background-color: var(--_section-cta-background-color);
  color: var(--_section-cta-label-color);
  border-color: var(--_section-cta-border-color);
  display: inline-block;
  padding: 15px 20px;
}
@media (max-width: 991.8px) {
  .floorplan-listing__lease-btn.btn, .hbspt-form .hs-submit input.floorplan-listing__lease-btn[type=submit],
  .hs-form .hs-submit input.floorplan-listing__lease-btn[type=submit] {
    padding: 10px 20px;
  }
}
.floorplan-listing__lease-btn.btn:hover, .hbspt-form .hs-submit input.floorplan-listing__lease-btn[type=submit]:hover,
.hs-form .hs-submit input.floorplan-listing__lease-btn[type=submit]:hover {
  background-color: var(--_section-cta-hovered-background-color);
  color: var(--_section-cta-hovered-label-color);
  border-color: var(--_section-cta-hovered-border-color);
}
.floorplan-listing-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .floorplan-listing-pagination {
    margin-top: 100px;
    font-size: 18px;
  }
}
.floorplan-listing-pagination .pagination_list {
  display: flex;
  align-self: end;
  margin: 0;
  padding: 0;
  row-gap: 18px;
  column-gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.floorplan-listing-pagination .pagination_list li {
  font-family: "RecklessNeue-Regular", sans-serif;
  color: #212322;
}
.floorplan-listing-pagination .pagination_list li a {
  font-family: "RecklessNeue-Regular", sans-serif;
  color: #212322;
}
.floorplan-listing-pagination .pagination_list li.active {
  color: var(--_section-pagination-active-color);
}
.floorplan-listing__no-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
  place-self: center;
}
@media (min-width: 768px) {
  .floorplan-listing__no-results {
    grid-column: span 2;
  }
}
@media (min-width: 1200px) {
  .floorplan-listing__no-results {
    grid-column: span 2;
    grid-column: span 3;
  }
}
@media (min-width: 1920px) {
  .floorplan-listing__no-results {
    grid-column: span 4;
  }
}
.floorplan-listing__no-results-title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 32px;
  color: #212322;
  margin-bottom: 18px;
}
.floorplan-listing__no-results-text {
  color: #212322;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.4;
  font-size: 1em;
}
.floorplan-listing__reset-btn {
  display: inline-flex;
  font-family: "acumin-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  color: #212322;
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .floorplan-listing__reset-btn {
    color: #212322;
  }
}
.floorplan-listing.items-start .floorplan-listing__badges {
  justify-content: start;
}
.floorplan-listing.items-start .floorplan-listing__name {
  text-align: left;
}
.floorplan-listing.items-start .floorplan-listing__details {
  text-align: left;
}
.floorplan-listing.items-start .floorplan-listing__price {
  text-align: left;
}
.floorplan-listing.items-start .floorplan-listing__content {
  justify-content: start;
  text-align: left;
}
.floorplan-listing.items-end .floorplan-listing__badges {
  justify-content: flex-end;
}
.floorplan-listing.items-end .floorplan-listing__name {
  text-align: right;
}
.floorplan-listing.items-end .floorplan-listing__details {
  text-align: right;
}
.floorplan-listing.items-end .floorplan-listing__price {
  text-align: right;
}
.floorplan-listing.items-end .floorplan-listing__content {
  justify-content: end;
  text-align: right;
}
.floorplan-listing.items-center .floorplan-listing__badges {
  justify-content: center;
}
.floorplan-listing.items-center .floorplan-listing__name {
  text-align: center;
}
.floorplan-listing.items-center .floorplan-listing__details {
  text-align: center;
}
.floorplan-listing.items-center .floorplan-listing__price {
  text-align: center;
}
.floorplan-listing.items-center .floorplan-listing__content {
  justify-content: center;
  text-align: center;
}

/* HTML: <div class="loader"></div> */
.loader {
  display: none;
  position: absolute;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #a0a0a0;
  border-right-color: #212322;
  animation: l2 1s infinite linear;
  z-index: 1;
  left: 50%;
  top: 200px;
  margin-left: -25px;
}

@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}
.siteplan-section {
  background-color: #f8f7f1;
  --_section-padding-top: var(--section-padding-top, 40px);
  --_section-padding-bottom: var(--section-padding-bottom, 20px);
  --_section-padding-left: var(--section-padding-left, 20px);
  --_section-padding-right: var(--section-padding-right, 20px);
}
@media (min-width: 1280px) {
  .siteplan-section {
    --_section-padding-top: var(--section-padding-top, 52px);
    --_section-padding-left: var(--section-padding-left, 5.555558vw);
    --_section-padding-right: var(--section-padding-right, 5.555558vw);
  }
}
.siteplan-section__container {
  width: 100%;
  padding-left: var(--_section-padding-left);
  padding-right: var(--_section-padding-right);
  padding-top: var(--_section-padding-top);
  padding-bottom: var(--_section-padding-bottom);
}
@media (min-width: 992px) {
  .siteplan-section__container {
    padding-left: 0;
    padding-right: 0;
    max-width: 88.88vw;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) {
  .siteplan-section__container {
    max-width: 70vw;
  }
}
.siteplan-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  height: 90vh;
  min-height: var(--minheight-mobile, 800px);
}
@media (min-width: 992px) {
  .siteplan-section iframe {
    min-height: var(--minheight-desktop, 800px);
  }
}
@media (min-width: 1920px) {
  .siteplan-section iframe {
    min-height: var(--minheight-desktop, 1200px);
  }
}

.is-safari .floorplan-listing__details {
  row-gap: 0;
}

.floorplan-listing__lease.lease-items-center .floorplan-listing__lease-btn {
  padding: 12px 20px;
}

.floorplan-search {
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-text-color: var(--section-text-color, #212322);
  --_section-checkbox-border-color: #f8f7f1;
  --_section-search-filters-desktop-text-color: var(--section-search-filters-desktop-text-color,
      #212322);
  --_section-search-filters-mob-text-color: var(--section-search-filters-mob-text-color,
      #f8f7f1);
  --_section-search-filters-mob-background-color: var(--section-search-filters-mob-background-color,
      #b79555);
  --_section-search-filters-mob-checkbox-fill-color: var(--section-search-filters-mob-checkbox-fill-color,
      #f8f7f1);
  --_section-search-filters-mob-results-background-color: var(--section-search-filters-mob-results-background-color,
          transparent);
  --_section-search-filters-mob-results-border-color: var(--section-search-filters-mob-results-border-color,
      #f8f7f1);
  --_section-search-filters-mob-results-text-color: var(--section-search-filters-mob-results-text-color,
      #f8f7f1);
  --_section-search-filters-desktop-checkbox-fill-color: var(--section-search-filters-desktop-checkbox-fill-color,
      #212322);
  --_section-padding-top: var(--section-padding-top, 40px);
  --_section-padding-bottom: var(--section-padding-bottom, 20px);
  --_section-padding-left: var(--section-padding-left, 20px);
  --_section-padding-right: var(--section-padding-right, 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--_section-background-color);
}
@media (min-width: 1025px) {
  .floorplan-search {
    --_section-checkbox-border-color: #212322;
  }
}
@media (min-width: 992px) {
  .floorplan-search {
    --_section-padding-top: var(--section-padding-top, 94px);
    --_section-padding-left: var(--section-padding-left, 5.555558vw);
    --_section-padding-right: var(--section-padding-right, 5.555558vw);
  }
}
.floorplan-search__container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: unset;
  height: 100%;
  padding: 10px 0;
  margin: 0 6.45833vw;
}
@media (min-width: 1025px) {
  .floorplan-search__container {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (max-width: 1024.8px) {
  .floorplan-search__container {
    padding-bottom: 0;
    margin: 0 20px;
  }
}
.floorplan-search__container::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #333333;
}
.floorplan-search__filter-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .floorplan-search__filter-btn-container {
    display: none;
  }
}
.floorplan-search__filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 16px;
  gap: 10px;
  cursor: pointer;
  padding: 0;
  color: var(--_section-text-color);
}
.floorplan-search__filter-btn-icon {
  display: inline-block;
}
.floorplan-search__filter-btn-icon svg {
  height: 8px;
  width: 8px;
  fill: var(--section-text-color);
}
@media (min-width: 992px) {
  .floorplan-search__filter-btn-icon svg {
    height: 13px;
    width: 13px;
  }
}
.floorplan-search__tabs {
  --_section-tab-fill-color: var(--section-tab-fill-color, transparent);
  --_section-tab-text-color: var(--section-tab-text-color, #212322);
  --_section-tab-border-color: var(--section-tab-border-color, #212322);
  --_section-tab-active-background-color: var(--section-tab-active-background-color,
      #212322);
  --_section-tab-active-border-color: var(--section-tab-active-border-color,
      #212322);
  --_section-tab-active-label-color: var(--section-tab-active-label-color,
      #f8f7f1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .floorplan-search__tabs {
    gap: 12px;
    flex-wrap: nowrap;
  }
}
.floorplan-search__tab {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 20px 10px 15px 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  line-height: 0.5;
  color: var(--_section-tab-text-color);
  border: 1px solid var(--_section-tab-border-color);
  background-color: var(--_section-tab-fill-color);
  cursor: pointer;
  border: none;
}
@media (min-width: 992px) {
  .floorplan-search__tab {
    padding: 10.5px 36px 11.5px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
}
.floorplan-search__tab:hover {
  border-color: var(--_section-tab-active-background-color);
  background-color: var(--_section-tab-active-background-color);
  color: #f8f7f1;
  border-bottom: 4px solid;
}
.floorplan-search__tab.active {
  border-color: var(--_section-tab-active-border-color);
  background: var(--_section-tab-active-background-color);
  color: var(--_section-tab-active-label-color);
  border-bottom: 4px solid;
}
.floorplan-search__filters {
  display: none;
}
@media (max-width: 1024.8px) {
  .floorplan-search__filters {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    transform: translateY(-100%);
    transition: transform 800ms cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    background-color: var(--_section-search-filters-mob-background-color);
  }
}
@media (max-width: 1024.8px) and (min-width: 992px) {
  .floorplan-search__filters {
    display: none;
  }
}
@media (max-width: 1024.8px) {
  .floorplan-search__filters.v-transform {
    transform: translateY(0);
  }
  .floorplan-search__filters.show {
    display: block;
  }
}
@media (max-width: 1024.8px) and (min-width: 1025px) {
  .floorplan-search__filters.show {
    display: none;
  }
}
@media (min-width: 1025px) {
  .floorplan-search__filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: auto;
  }
}
@media (max-width: 1024.8px) {
  .floorplan-search__filters-container {
    padding: 44px 20px 45px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
.floorplan-search__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .floorplan-search__header {
    display: none;
  }
}
.floorplan-search__header .floorplan-search__close-btn {
  display: none;
}
@media (max-width: 1024.8px) {
  .floorplan-search__header {
    position: relative;
    justify-content: space-between;
  }
  .floorplan-search__header .floorplan-search__close-btn {
    display: block;
    margin: 0;
    width: 17.7px;
    height: 17.7px;
    background-color: #f8f7f1;
    -webkit-mask: url("../images/close.svg") no-repeat center;
    mask: url("../images/close.svg") no-repeat center;
    font-size: 0;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  .floorplan-search__header > .floorplan-search__reset-btn {
    position: absolute;
    right: 0;
    bottom: -62px;
  }
}
@media (max-width: 575.8px) {
  .floorplan-search__header > .floorplan-search__reset-btn {
    bottom: -73px;
  }
}
.floorplan-search__title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__title {
    color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__reset-btn {
  font-family: "acumin-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__reset-btn {
    color: var(--_section-search-filters-mob-text-color);
  }
}
@media (max-width: 1024.8px) {
  .floorplan-search__reset-btn.reset_desktop {
    display: none;
  }
}
.floorplan-search__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024.8px) {
  .floorplan-search__content #available-floorplan-toggle label {
    display: flex;
    column-gap: 5px;
    align-items: flex-start;
  }
  .floorplan-search__content .floorplan-search__filter .selectivo .selectivo__dropdown .checkbox-group .checkbox-clear {
    margin-top: 20px;
  }
}
@media (max-width: 991.8px) {
  .floorplan-search__content {
    margin-top: 12.5px;
  }
}
@media (min-width: 576px) {
  .floorplan-search__content {
    justify-content: start;
  }
}
@media (min-width: 1025px) {
  .floorplan-search__content {
    gap: 26.5px;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .floorplan-search__content {
    margin-top: 0px;
    justify-content: flex-end;
    gap: 26.5px;
  }
}
@media (min-width: 1025px) {
  .floorplan-search__content > div {
    width: max-content;
  }
}
.floorplan-search__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 0px 44px;
  margin-top: auto;
}
@media (min-width: 1025px) {
  .floorplan-search__footer {
    display: none;
  }
}
.floorplan-search__result {
  display: inline-block;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  border: 1px solid var(--_section-search-filters-desktop-text-color);
  padding: 12px 16px;
  width: max-content;
  transition: all 500ms ease-in-out;
}
@media (max-width: 1024.8px) {
  .floorplan-search__result {
    color: var(--_section-search-filters-mob-results-text-color);
    background-color: var(--_section-search-filters-mob-results-background-color);
    border-color: var(--_section-search-filters-mob-results-border-color);
  }
}
.floorplan-search__result:hover {
  cursor: pointer;
  background-color: #212322;
  color: #f8f7f1;
  border-color: #212322;
}
.floorplan-search__close-btn {
  border-bottom: 1px solid var(--_section-search-filters-desktop-text-color);
  text-transform: uppercase;
  padding: 0;
  margin: 0 auto;
  transition: all 500ms ease-in-out;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__close-btn {
    color: var(--_section-search-filters-mob-text-color);
    border-color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__close-btn:hover {
  cursor: pointer;
  color: #212322;
  border-color: #212322;
}
@media (max-width: 1024.8px) {
  .floorplan-search__filter {
    flex: 1;
    width: 100%;
  }
}
.floorplan-search__filter-label {
  display: none;
}
@media (max-width: 1024.8px) {
  .floorplan-search__filter-label {
    display: flex;
    align-items: center;
    font-family: "acumin-pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    gap: 10px;
    margin-bottom: 11px;
    color: var(--_section-search-filters-desktop-text-color);
  }
}
@media (max-width: 1024.8px) and (max-width: 1024.8px) {
  .floorplan-search__filter-label {
    color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__filter-label-icon {
  display: none;
}
.floorplan-search__filter .selectivo {
  width: 100%;
  background: transparent;
}
.floorplan-search__filter .selectivo__label {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--_section-text-color);
  font-size: 18px;
  font-weight: 300;
  border: none;
  padding: 10px 0;
  padding-right: 29px;
  padding-bottom: 17.5px;
  font-family: "acumin-pro", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--_section-search-filters-desktop-text-color);
  height: 43px;
  text-transform: uppercase;
}
.floorplan-search__filter .selectivo__label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 12px;
  height: 16px;
  background-image: url("../images/arrow_down.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1024.8px) {
  .floorplan-search__filter .selectivo__label {
    display: none;
    color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__filter .selectivo__label span {
  display: inline-block;
}
.floorplan-search__filter .selectivo.selectivo--open .selectivo__label::after {
  transform: rotate(180deg);
}
.floorplan-search__filter .selectivo__dropdown {
  width: max-content;
  max-width: 420px;
  border-top: none;
  background: #f8f7f1;
  border: 0.5px solid #212322;
  box-shadow: 0px 6px 12px 0px rgba(56, 61, 72, 0.1019607843);
  margin-top: 25.5px;
  max-height: 260px;
  overflow-y: auto;
  top: 15px;
}
@media (min-width: 992px) {
  .floorplan-search__filter .selectivo__dropdown {
    padding: 8px 16px;
  }
}
@media (max-width: 1024.8px) {
  .floorplan-search__filter .selectivo__dropdown {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: column;
    box-shadow: none;
    border: none;
    overflow: visible;
    transform: none;
    margin-left: unset;
    min-width: unset;
    max-width: unset;
    width: 100%;
    max-height: unset;
    margin-top: 11px;
  }
}
.floorplan-search__filter .selectivo__option {
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__filter .selectivo__option {
    color: var(--_section-search-filters-mob-text-color);
    font-size: 16px;
    font-weight: 300;
    padding-right: 0;
    padding-left: 0;
  }
}
.floorplan-search__filter .selectivo__option:hover {
  background: var(--_section-text-color);
  color: #f8f7f1;
}
.floorplan-search__filter .selectivo__option--selected::before {
  background-color: #f8f7f1;
  outline-color: #f8f7f1;
}
.floorplan-search__filter .selectivo__option::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  outline: 1px solid #f8f7f1;
  outline-offset: 2px;
  content: "";
  margin-right: 10px;
  margin-left: 3px;
}
@media (min-width: 1025px) {
  .floorplan-search__filter .selectivo__option::before {
    display: none;
  }
}
.floorplan-search__filter .selectivo__option[value=""]::before {
  display: none;
}
.floorplan-search__toggle {
  display: flex;
}
@media (min-width: 1280px) {
  .floorplan-search__toggle {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    width: 100%;
  }
}
.floorplan-search__toggle .floorplan-search__label {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__toggle .floorplan-search__label {
    line-height: normal;
    font-size: 12px;
    color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__switch {
  position: relative;
  cursor: pointer;
}
.floorplan-search__switch input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #a0a0a0;
  border-radius: 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1024.8px) {
  .floorplan-search__switch input[type=checkbox] {
    top: 3px;
    border-color: #f8f7f1;
  }
}
.floorplan-search__switch input[type=checkbox]:checked {
  background-color: var(--_section-search-filters-desktop-checkbox-fill-color);
  border-color: var(--_section-search-filters-desktop-checkbox-fill-color);
}
@media (max-width: 1024.8px) {
  .floorplan-search__switch input[type=checkbox]:checked {
    background-color: var(--_section-search-filters-mob-checkbox-fill-color);
    border-color: var(--_section-search-filters-mob-checkbox-fill-color);
  }
}
.floorplan-search__switch input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #f8f7f1;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
@media (max-width: 1024.8px) {
  .floorplan-search__switch input[type=checkbox]:checked:after {
    border-color: #b79555;
  }
}
.floorplan-search__slider {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #212322;
  border-radius: 12px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.floorplan-search__slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.floorplan-search__label {
  color: #212322;
  margin-right: 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
}

.floorplan-listing__total-result {
  padding: 56.5px 0px 30px;
}
@media (max-width: 991.8px) {
  .floorplan-listing__total-result {
    padding: 25px 0px 15px;
  }
}

.price-range {
  padding: 20px;
}
.price-range #price-slider {
  margin-bottom: 20px;
}
.price-range #price-slider .ui-slider-range {
  background: #b79555;
}
.price-range #price-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  top: -8px;
  border-radius: 50%;
  background: #212322;
  border: none;
  cursor: pointer;
  border: 2px solid #f8f7f1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transform: translateX(-50%);
}
@media (max-width: 1024.8px) {
  .price-range #price-slider .ui-slider-handle {
    border: 2px solid #b79555;
    background: #f8f7f1;
  }
}
.price-range #price-slider .ui-slider-handle:focus {
  outline: none;
}
.price-range .price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-range .price-inputs input {
  width: 100px;
  padding: 5px;
  border: 1px solid #212322;
  text-align: center;
}
.price-range .price-inputs span {
  color: #212322;
}

.range-slider {
  padding: 18px 0px 10px 0px;
}
@media (max-width: 1024.8px) {
  .range-slider {
    padding: 14px 0px 30px 0px;
  }
}
.range-slider .range-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .range-slider .range-values {
    color: var(--_section-search-filters-mob-text-color);
  }
}
.range-slider .ui-slider {
  height: 4px;
  border: none;
  background: #a0a0a0;
  margin: 0 7px;
  margin-bottom: 20px;
  cursor: pointer;
}
@media (max-width: 1024.8px) {
  .range-slider .ui-slider {
    background: #a0a0a0;
  }
}
.range-slider .ui-slider .ui-slider-range {
  background: #212322;
  height: 4px;
}
@media (max-width: 1024.8px) {
  .range-slider .ui-slider .ui-slider-range {
    height: 4px;
    background-color: #f8f7f1;
  }
}
.range-slider .ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  top: -8px;
  border-radius: 50%;
  background: #212322;
  border: none;
  cursor: pointer;
  border: 3px solid #f8f7f1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transform: translateX(-50%);
}
@media (max-width: 1024.8px) {
  .range-slider .ui-slider .ui-slider-handle {
    border: 3px solid #b79555;
    background: #f8f7f1;
  }
}
.range-slider .ui-slider .ui-slider-handle:focus {
  outline: none;
}
.range-slider .range-clear {
  background: none;
  border: none;
  padding: 0;
  font-family: "acumin-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 1024.8px) {
  .range-slider .range-clear {
    color: var(--_section-search-filters-mob-text-color);
    width: max-content;
  }
}

.checkbox-group {
  background-color: #f8f7f1;
}
@media (max-width: 1024.8px) {
  .checkbox-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    background-color: transparent;
  }
}
.checkbox-group .checkbox-group-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-group-items {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
}
.checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 10px 0;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .checkbox-group .checkbox-item {
    margin: 15.5px 0;
  }
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-item {
    width: calc(50% - 8.5px);
  }
}
@media (max-width: 320px) {
  .checkbox-group .checkbox-item {
    width: 100%;
  }
}
.checkbox-group .checkbox-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #a0a0a0;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  top: -2px;
  margin-right: 12px;
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-item input[type=checkbox] {
    border-color: #f8f7f1;
  }
}
.checkbox-group .checkbox-item input[type=checkbox]:checked {
  background-color: var(--_section-search-filters-desktop-checkbox-fill-color);
  border-color: var(--_section-search-filters-desktop-checkbox-fill-color);
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-item input[type=checkbox]:checked {
    background-color: var(--_section-search-filters-mob-checkbox-fill-color);
    border-color: var(--_section-search-filters-mob-checkbox-fill-color);
  }
}
.checkbox-group .checkbox-item input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #f8f7f1;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-item input[type=checkbox]:checked:after {
    border-color: #b79555;
  }
}
.checkbox-group .checkbox-item .checkbox-text {
  display: inline;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  font-weight: 300;
  line-height: 1;
  color: var(--_section-search-filters-desktop-text-color);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-item .checkbox-text {
    color: var(--_section-search-filters-mob-text-color);
  }
}
.checkbox-group .checkbox-clear {
  background: none;
  border: none;
  padding: 0;
  color: var(--_section-text-color);
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  opacity: 1;
  color: var(--_section-search-filters-desktop-text-color);
  margin-top: 0px;
}
@media (max-width: 1024.8px) {
  .checkbox-group .checkbox-clear {
    color: var(--_section-search-filters-mob-text-color);
    opacity: 1;
    width: max-content;
    margin-top: 4px;
  }
  .checkbox-group .checkbox-clear:hover {
    color: #212322;
  }
}
.checkbox-group .checkbox-clear:hover {
  opacity: 1;
}

#unit-type-filter .selectivo__label span {
  display: inline-block;
}
#unit-type-filter .selectivo__dropdown {
  min-width: 100%;
}
@media (min-width: 1025px) {
  #unit-type-filter .selectivo__dropdown {
    width: max-content;
    min-width: 150px;
    max-height: 215px;
  }
}

@media (min-width: 1025px) {
  #unit-features-filter .selectivo__label {
    display: inline-block;
  }
}
#unit-features-filter .selectivo__label span {
  display: inline-block;
}
@media (min-width: 1025px) {
  #unit-type-filter .checkbox-group-items,
  #unit-features-filter .checkbox-group-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(min-content, 1fr));
    column-gap: 15px;
  }
}

#sqft-range-filter .selectivo__dropdown {
  min-width: 100%;
}
@media (min-width: 1025px) {
  #sqft-range-filter .selectivo__dropdown {
    min-width: 332px;
  }
}
#price-range-filter .selectivo__dropdown {
  min-width: unset;
  max-width: 100%;
}
@media (min-width: 1025px) {
  #price-range-filter .selectivo__dropdown {
    min-width: 316px;
  }
}
#price-range-filter .selectivo__label span {
  display: inline-block;
}

#sort-results-filter .selectivo__option {
  color: var(--_section-search-filters-desktop-text-color);
}
#sort-results-filter .selectivo__option:hover {
  color: #f8f7f1;
}
#sort-results-filter .selectivo__option--selected {
  font-weight: 700;
}
@media (max-width: 1024.8px) {
  #sort-results-filter .selectivo__option {
    color: var(--_section-search-filters-mob-text-color);
  }
  #sort-results-filter .selectivo__option:hover {
    background-color: transparent;
    color: #212322;
  }
  #sort-results-filter .selectivo__option--selected {
    color: #212322;
    background-color: transparent;
  }
}
@media (max-width: 1024.8px) {
  #sort-results-filter .selectivo__option:nth-of-type(1) {
    display: none;
  }
}
#sort-results-filter .selectivo__option:last-of-type {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 12px;
  font-family: "acumin-pro", sans-serif;
  color: var(--_section-search-filters-mob-text-color);
}
@media (min-width: 1025px) {
  #sort-results-filter .selectivo__option:last-of-type {
    display: none;
    color: var(--_section-search-filters-desktop-text-color);
  }
}
#sort-results-filter .selectivo__button-wrapper {
  display: inline-block;
  position: relative;
}
@media (max-width: 1024.8px) {
  #sort-results-filter .selectivo__button-wrapper {
    display: none;
  }
}
#sort-results-filter .selectivo__button-wrapper .selectivo__label-icon {
  position: absolute;
  top: 11px;
  right: 0;
}
#sort-results-filter .selectivo__button-wrapper .selectivo__label-icon svg {
  position: static;
}

.siteplan .floorplan-search__filter-btn-container {
  display: none;
}

.custom-siteplan__container {
  padding: 40px 5.555558vw;
}

.select-floor-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

#floorSelect {
  display: inline-block;
  width: fit-content;
  background: none;
  width: 351px;
}
#floorSelect .selectivo__label {
  padding: 15px 19px;
}
@media (max-width: 991.8px) {
  #floorSelect .selectivo__label {
    padding: 14px 19px 14px 12px;
  }
}

.floor-image-container {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
@media (min-width: 1200px) {
  .floor-image-container {
    grid-template-columns: 1fr 1fr;
  }
}
.floor-image-container .floor-image {
  display: none;
}
.floor-image-container .floor-image.active {
  display: block;
}
.floor-image-container .floor-image img {
  width: 100%;
  max-width: 100%;
}
.floor-image-container .legend img {
  width: 100%;
  max-width: 400px;
}

.inner-banner {
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-text-color: var(--section-text-color, #212322);
  --_section-padding-top: var(--section-padding-top, 71px);
  --_section-padding-bottom: var(--section-padding-bottom, 85px);
  --_section-padding-left: var(--section-padding-left, 20px);
  --_section-padding-right: var(--section-padding-right, 20px);
  --_section-align-contents: var(--section-align-contents);
  --_section-border-color: var(--section-border-color, #a0a0a0);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--_section-background-color);
  padding-top: var(--_section-padding-top);
  padding-bottom: var(--_section-padding-bottom);
  padding-left: var(--_section-padding-left);
  padding-right: var(--_section-padding-right);
}
@media (min-width: 992px) {
  .inner-banner {
    --_section-padding-left: var(--section-padding-left, 5.56vw);
    --_section-padding-right: var(--section-padding-right, 5.56vw);
  }
}
.inner-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  max-width: 100%;
  right: var(--_section-padding-right);
  left: var(--_section-padding-left);
  background-color: var(--_section-border-color);
}
.inner-banner .hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.inner-banner .hero-banner .hero-subheading {
  margin: 0 0 30px;
  font-family: "acumin-pro", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 26.4px;
  letter-spacing: 0.02em;
  color: var(--_section-text-color);
  max-width: max-content;
}
.inner-banner .hero-banner .hero-heading {
  margin: 0;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 62.78px;
  color: var(--_section-text-color);
  max-width: max-content;
}

.inner-banner {
  padding-top: 110px;
  padding-bottom: 70px;
}
@media (max-width: 991.8px) {
  .inner-banner {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.inner-banner .hero-banner .hero-subheading {
  margin-bottom: 10px;
}

.seperator-block {
  width: 100%;
}
.seperator-block .seperator-block__wrap {
  width: 100%;
}
.seperator-block .seperator-block__wrap.seperator-block__margin {
  padding: 60px 5.56vw;
}
.seperator-block .seperator-block__wrap img {
  width: 100%;
  height: auto;
}

.table-of-contents-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 5.56vw;
  padding-right: 5.56vw;
}
.table-of-contents-wrapper .table-heading {
  font-weight: normal;
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .table-of-contents-wrapper .table-heading {
    font-size: 34px;
    line-height: 48px;
    letter-spacing: 3px;
    margin-bottom: 72px;
  }
}
.table-of-contents-wrapper .section-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 991.8px) {
  .table-of-contents-wrapper .section-links-grid {
    row-gap: 0;
  }
}
.table-of-contents-wrapper .section-links-grid .section-links-column {
  flex: 1;
  min-width: 300px;
}
.table-of-contents-wrapper .section-links-grid .section-links-column a {
  display: block;
  margin: 16px 0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  padding-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .table-of-contents-wrapper .section-links-grid .section-links-column a {
    font-size: 18px;
    line-height: 28px;
  }
}
.table-of-contents-wrapper .section-links-grid .section-links-column a::hover {
  color: #92764E;
}
.table-of-contents-wrapper .section-links-grid .section-links-column:first-child a:last-child {
  margin-bottom: 0;
}

.content-followed-by-tour-model__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-followed-by-tour-model__content h4 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 60px;
  text-transform: capitalize;
}
.content-followed-by-tour-model__content iframe {
  width: 66.94vw;
  min-width: 280px;
  height: 100%;
  min-height: 542px;
}
@media (max-width: 991.8px) {
  .content-followed-by-tour-model {
    padding: 40px 20px !important;
  }
  .content-followed-by-tour-model__content h4 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 38px;
  }
  .content-followed-by-tour-model__content iframe {
    width: 100%;
    height: 50.38vw;
    min-height: 198px;
  }
}

.gallery-page {
  padding: 0 5.55vw;
  --_section-background-color: var(--section-background-color, #f8f7f1);
  background-color: var(--_section-background-color);
}
@media (max-width: 991.8px) {
  .gallery-page {
    padding: 0 20px;
  }
}
.gallery-page .hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 71px 0 85px;
  padding: 7.63vw 0 4.16vw;
  text-align: center;
}
@media (max-width: 991.8px) {
  .gallery-page .hero-banner {
    padding: 40px 20px 20px;
  }
}
.gallery-page .hero-banner .hero-heading {
  margin: 0;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 62.78px;
  color: #212322;
}
.gallery-page .hero-banner .hero-subheading {
  margin: 0 0 30px;
  font-family: "acumin-pro", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 26.4px;
  letter-spacing: 0.02em;
  color: #212322;
}
.gallery-page .gallery-list-wrapper .gallery-controls {
  padding: 94px 0px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls {
    padding: 40px 0px 80px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls__tabs {
    margin-bottom: 47px;
    flex-wrap: wrap;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #212322;
  display: inline-block;
  padding: 20px 10px 15px !important;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls__tabs li a {
    padding: 10px 5px !important;
    font-size: 12px;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a:hover {
  border-bottom: 1px solid #f8f7f1;
  color: #f8f7f1;
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a.active {
  pointer-events: none;
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li:first-child a {
  padding: 20px 5px 15px;
}
.gallery-page .gallery-list-wrapper .gallery-controls__filters ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 48px;
  align-items: center;
  display: none;
}
.gallery-page .gallery-list-wrapper .gallery-controls__filters ul.active {
  display: flex;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls__filters ul {
    padding: 0;
    flex-wrap: wrap;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__filters ul li a {
  display: inline-block;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
}
.gallery-page .gallery-list-wrapper .gallery-controls__filters ul li.active a {
  text-shadow: 0.5px 0 0;
}
.gallery-page .gallery-list-wrapper .gallery-tab-content {
  padding-bottom: 80px;
}

.gallery-tab-panel {
  display: none;
}
.gallery-tab-panel[data-tab=gallery] .media-gallery__caption {
  display: none;
}

.gallery-tab-panel.active {
  display: block;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  column-gap: 24px;
  row-gap: 40px;
}
.media-gallery.col-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 65px;
  column-gap: 24px;
  row-gap: 40px;
}
@media (max-width: 991.8px) {
  .media-gallery.col-grid-3 {
    column-gap: 0;
    row-gap: 20px;
  }
}
@media (max-width: 767.8px) {
  .media-gallery.col-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.8px) {
  .media-gallery.col-grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.media-gallery.col-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 0px;
}
@media (max-width: 991.8px) {
  .media-gallery.col-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 20px;
  }
}
@media (max-width: 767.8px) {
  .media-gallery.col-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.8px) {
  .media-gallery.col-grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767.8px) {
  .media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.8px) {
  .media-gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.media-gallery__item {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.75308642;
  position: relative;
  cursor: pointer;
}
.media-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.media-gallery__item video {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.media-gallery__item iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.media-gallery__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTggNXYyMmwxNi0xMS0xNi0xMXoiLz48L3N2Zz4=");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  cursor: pointer;
  pointer-events: none;
  display: none;
}
.media-gallery__item.has-video::before {
  display: block;
}
.media-gallery__item [data-type=video],
.media-gallery__item [data-type=wistia],
.media-gallery__item [data-type=embedded] {
  filter: blur(2px);
}
.media-gallery__caption {
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 26.9px;
  color: #f8f7f1;
  padding: 20px;
  width: 80%;
  background-color: rgba(33, 35, 34, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 20px;
}
@media (max-width: 1199.8px) {
  .media-gallery__caption {
    font-size: 18px;
    padding: 10px;
    line-height: 20px;
  }
}

.gallery-image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 35, 34, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.gallery-image-popup .media-gallery-container {
  display: flex;
  justify-content: center;
  max-height: 100vh;
}
.gallery-image-popup .media-gallery-close {
  width: 23px;
  height: 23px;
  position: absolute;
  top: 40px;
  right: 1.5vw;
  color: #fff;
  font-size: 54px;
  cursor: pointer;
  line-height: 0;
  padding: 20px;
  z-index: 9999;
}
.gallery-image-popup .media-gallery-slider {
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
  touch-action: auto;
}
.gallery-image-popup .media-gallery-slider wistia-player {
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 0px auto;
}
.gallery-image-popup .media-gallery-slider img,
.gallery-image-popup .media-gallery-slider video,
.gallery-image-popup .media-gallery-slider iframe {
  width: 100%;
  max-width: 1040px;
  max-height: calc(100vh - 160px);
  margin: 0px auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 1199.8px) {
  .gallery-image-popup .media-gallery-slider img,
  .gallery-image-popup .media-gallery-slider video,
  .gallery-image-popup .media-gallery-slider iframe {
    max-width: 90%;
  }
}
@media (max-width: 991.8px) {
  .gallery-image-popup .media-gallery-slider img,
  .gallery-image-popup .media-gallery-slider video,
  .gallery-image-popup .media-gallery-slider iframe {
    max-width: 90%;
  }
}
.gallery-image-popup .media-gallery-slider iframe {
  height: 100%;
}
.gallery-image-popup .media-gallery-slider p,
.gallery-image-popup .media-gallery-slider p a {
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #f8f7f1;
  margin-top: 30px;
}
@media (max-width: 991.8px) {
  .gallery-image-popup .media-gallery-slider p,
  .gallery-image-popup .media-gallery-slider p a {
    margin-top: 10px;
  }
}
.gallery-image-popup .media-gallery-slider p a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.gallery-image-popup .media-gallery-slider .slick-slide {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}
.gallery-image-popup .media-gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/slider-arrow.svg");
  background-repeat: no-repeat;
  text-decoration: none;
  cursor: pointer;
  background-position: left center;
  z-index: 1;
  font-size: 0;
  width: 50px;
  height: 50px;
  padding: 0;
}
.gallery-image-popup .media-gallery-slider .slick-arrow.slick-prev {
  left: 20px;
}
.gallery-image-popup .media-gallery-slider .slick-arrow.slick-next {
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.gallery-image-popup .media-gallery-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: default;
}

.gallery-pagination {
  text-align: center;
}
.gallery-pagination #load-more {
  margin-top: 40px;
  cursor: pointer;
  outline: none;
}
.gallery-pagination #load-more:hover {
  background-color: #212322;
  color: #f8f7f1;
}

.gallery-cta {
  padding: 32px 54px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 991.8px) {
  .gallery-cta {
    padding: 40px;
    margin-bottom: 30px;
  }
}
.gallery-cta .heading_level_four {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .gallery-cta .heading_level_four {
    padding-right: 30px;
  }
}
@media (max-width: 991.8px) {
  .gallery-cta .heading_level_four {
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0px;
  }
}
.gallery-cta .heading_level_six {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (max-width: 991.8px) {
  .gallery-cta .heading_level_six {
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 40px;
  }
}
.gallery-cta a {
  display: inline-block;
}
.gallery-cta .btn:hover, .gallery-cta .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .gallery-cta input[type=submit]:hover,
.gallery-cta .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .gallery-cta input[type=submit]:hover {
  background-color: #212322 !important;
  color: #f8f7f1 !important;
  border-color: #212322 !important;
}
.gallery-cta .gallery-cta-close {
  position: absolute;
  right: 54px;
  top: 32px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background-image: url("../images/close.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .gallery-cta .gallery-cta-close {
    right: 22px;
    top: 22px;
  }
}

.banner-gallery .banner__media::before {
  background: linear-gradient(45deg, rgba(34, 33, 39, 0.65), rgba(34, 33, 39, 0));
}

body.gallery .availability-wrapper .fill_btn:hover {
  color: #f8f7f1 !important;
  background-color: #212322 !important;
  border-color: #212322 !important;
}
body.gallery .availability-wrapper #apartment-type .selectivo__label {
  border: 1px solid #f8f7f1;
  background-image: url(../images/down_haze.svg);
}
body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__label {
  width: 392px;
  height: 48px;
  text-align: left;
}
@media (max-width: 575.8px) {
  body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__label {
    width: 100%;
  }
}
body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__dropdown {
  border: 1px solid #f8f7f1;
}
body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__option {
  text-align: left;
}
body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__option:first-child {
  background: none;
  position: relative;
}
body.gallery .availability-wrapper .dropdown-container #apartment-type.selectivo .selectivo__option:first-child::after {
  content: "";
  position: absolute;
  right: 10px;
  background-image: url(../images/down_haze.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 16px;
  height: 13px;
  top: calc(50% - 8px);
}
@media (min-width: 992px) {
  body.gallery .banner {
    min-height: 771px;
  }
}
@media (min-width: 992px) {
  body.gallery .banner .banner__text-container {
    width: 50%;
    max-width: 640px;
    max-height: 771px;
    min-height: 771px;
  }
}
@media (max-width: 991.8px) {
  body.gallery .gallery-controls__filters {
    width: 100%;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter {
    background: transparent;
    display: none !important;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter.active {
    display: block !important;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter button {
    text-align: left;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter button.selectivo__label {
    border-color: #212322;
    position: relative;
    background: none;
    font-family: "acumin-pro", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 21.6px;
    letter-spacing: 0.01em;
    padding: 13px 30px 13px 12px;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter button.selectivo__label::after {
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    padding: 13px 30px 13px 12px;
    width: 16px;
    height: 16px;
    background-image: url(../images/down_ebony.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter .selectivo__dropdown {
    background: var(--_section-background-color);
    border: 1px solid #212322;
    top: 42px;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter .selectivo__dropdown button.selectivo__option {
    border-bottom: 1px solid #212322;
    font-family: "acumin-pro", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 21.6px;
    letter-spacing: 0.01em;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter .selectivo__dropdown button.selectivo__option:last-child {
    border-bottom: none;
  }
  body.gallery .gallery-controls__filters .mobile-gallery-filter .selectivo__dropdown button.selectivo__option.selectivo__option--selected {
    font-weight: 600;
  }
}
@media (max-width: 991.8px) and (max-width: 991.8px) {
  body.gallery .gallery-controls__filters .mobile-gallery-filter .selectivo__dropdown button.selectivo__option {
    padding: 17.5px 19px 14.5px;
  }
}
@media (max-width: 991.8px) {
  body.gallery .gallery-controls__filters .mobile-gallery-filter.selectivo--open .selectivo__label::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

.gallery-page .gallery-list-wrapper:not(:has(.gallery-controls__tabs li)) {
  display: none;
}
.gallery-page .gallery-list-wrapper .gallery-controls {
  border-bottom: 1px solid #a0a0a0;
  padding-bottom: 0;
  padding-top: 73px;
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls {
    padding-top: 7px;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls .gallery-controls__tabs li a.active {
  color: #212322;
  border-bottom: 3px solid #212322;
}
.gallery-page .gallery-list-wrapper .gallery-controls .gallery-controls__filters ul.desktop li a {
  padding: 10px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fp-similar-units {
  padding: 75px 6.25vw;
  --_section-background-color: var(--section-background-color);
  --_section-text-color: var(--section-text-color);
  --_section-fp-cta-button-background-color: var(--section-fp-cta-button-background-color);
  --_section-fp-cta-button-label-color: var(--section-fp-cta-button-label-color);
  --_section-fp-cta-button-border-color: var(--section-fp-cta-button-border-color);
  --_section-fp-cta-button-hovered-background-color: var(--section-fp-cta-button-hovered-background-color);
  --_section-fp-cta-button-hovered-label-color: var(--section-fp-cta-button-hovered-label-color);
  --_section-fp-cta-button-hovered-border-color: var(--section-fp-cta-button-hovered-border-color);
  --_section-view-all-cta-button-label-color: var(--section-view-all-cta-button-label-color);
  --_section-view-all-cta-button-hovered-label-color: var(--section-view-all-cta-button-hovered-label-color);
}
@media (max-width: 991.8px) {
  .fp-similar-units {
    padding: 40px 20px;
  }
}
.fp-similar-units.featured-fp-section {
  padding: 100px 6.45vw 50px;
}
@media (max-width: 991.8px) {
  .fp-similar-units.featured-fp-section {
    padding: 40px 20px 20px;
  }
}
@media (max-width: 991.8px) {
  .fp-similar-units {
    padding: 40px 20px 20px;
  }
}
.fp-similar-units h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
@media (max-width: 991.8px) {
  .fp-similar-units h2 {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.fp-similar-units h2 a {
  position: absolute;
  right: 6.23vw;
  color: var(--_section-view-all-cta-button-label-color);
}
.fp-similar-units h2 a:hover {
  color: var(--_section-view-all-cta-button-hovered-label-color) !important;
}
@media (max-width: 991.8px) {
  .fp-similar-units h2 a {
    margin-top: 30px;
  }
}
.fp-similar-units .similar-units-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 20px;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-units-item {
  border-right: 1px solid #a0a0a0;
}
.fp-similar-units .similar-units-wrapper .similar-units-item:nth-of-type(4n) {
  border-right: 0;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-units-item:nth-of-type(2n + 1) .similar-unit-card {
    padding-left: 0;
    padding-right: 20px;
  }
  .fp-similar-units .similar-units-wrapper .similar-units-item:nth-of-type(2n) {
    border-right: 0;
  }
  .fp-similar-units .similar-units-wrapper .similar-units-item:nth-of-type(2n) .similar-unit-card {
    padding-left: 20px;
    padding-right: 0px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card {
  padding: 0px 0px 0px 32px;
  margin: 0 11.67px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card:first-child {
  margin-left: 0px;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .badge-wrapper {
  max-width: unset;
  margin-top: 33px;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .badge-wrapper {
    margin-top: 16px;
    gap: 4px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .badge-wrapper .badge {
  max-width: max-content;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper {
    margin-bottom: 10px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper img {
  height: 100%;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  min-height: 240px;
  width: 264px;
}
@media (max-width: 991.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper img {
    min-height: 144px;
    width: 166.5px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper .similar-unit-contents {
  margin: 0px;
  margin-top: 33px;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-contents > a {
  background-color: var(--_section-fp-cta-button-background-color);
  color: var(--_section-fp-cta-button-label-color);
  border-color: var(--_section-fp-cta-button-border-color);
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-contents > a:hover {
  background-color: var(--_section-fp-cta-button-hovered-background-color);
  color: var(--_section-fp-cta-button-hovered-label-color);
  border-color: var(--_section-fp-cta-button-hovered-border-color);
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .heading_level_four {
  margin: 41px 14px;
}
@media (max-width: 991.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .heading_level_four {
    margin: 41px 14px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card a {
  margin-top: 14px;
  display: block;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card.sold-out-fp .similar-unit-img-wrapper a img {
  opacity: 0.4;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card.sold-out-fp a {
  pointer-events: none;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card.sold-out-fp .similar-unit-contents > a {
  pointer-events: none;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card::after {
    content: "";
  }
  .fp-similar-units .similar-units-wrapper .similar-unit-card:nth-child(2n)::after {
    display: none;
  }
  .fp-similar-units .similar-units-wrapper .similar-unit-card:nth-child(odd)::after {
    display: block;
  }
}

@media (max-width: 991.8px) {
  .fp-similar-units .similar-units-wrapper .similar-units-item .similar-unit-card:nth-child(odd)::after {
    display: none;
  }
}
.fp-similar-units .similar-units-wrapper .similar-units-item .similar-unit-card .similar-unit-contents {
  margin: 0;
}
.fp-similar-units .similar-units-wrapper .similar-units-item .similar-unit-card .similar-unit-contents .badge-wrapper:not(:has(.badge)) {
  display: none;
}
.fp-similar-units .similar-units-wrapper .similar-units-item .similar-unit-card .similar-unit-contents h3 {
  margin: 14px 0;
}

.grid_book-a-tour {
  --_section-background-color: var(--section-background-color);
  --_section-content-text-color: var(--section-content-text-color, #212322);
  display: flex;
  justify-content: space-between;
  padding: 40px 20px;
  padding-top: var(--padding-top, 40px);
  padding-bottom: var(--padding-bottom, 40px);
  /* limited Header and Footer styles */
}
@media screen and (max-width: 991px) {
  .grid_book-a-tour {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .grid_book-a-tour {
    padding: 40px 80px;
    padding-top: var(--padding-top, 40px);
    padding-bottom: var(--padding-bottom, 40px);
  }
}
.grid_book-a-tour .grid_item.grid_item_content > a:hover {
  color: var(--section-cta-button-hovered-label-color) !important;
  border-color: var(--section-cta-button-hovered-border-color) !important;
  background-color: var(--section-cta-button-hovered-background-color) !important;
}
.grid_book-a-tour .grid_item.grid_item_content p {
  color: var(--_section-content-text-color);
}
.grid_book-a-tour .grid_item_image {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .grid_item_image {
    width: 46.799%;
    margin-bottom: 0;
  }
}
.grid_book-a-tour .grid_item_image img {
  width: 100%;
  object-fit: cover;
  object-position: var(--img-position, center);
  height: auto;
  aspect-ratio: 1.597333333;
}
.grid_book-a-tour .grid_item_image .heading_level_two {
  font-family: "RecklessNeue-Light", sans-serif;
  margin-bottom: 41px;
}
.grid_book-a-tour .grid_item_image .paragraph {
  font-size: 18px;
  margin-top: 41px;
}
.grid_book-a-tour .grid_item_image p {
  margin: 0 0 15px;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  opacity: 1;
  transform: none;
  color: var(--_section-content-text-color);
}
.grid_book-a-tour .grid_item_image p:last-child {
  margin: 0;
}
.grid_book-a-tour .grid_item_image strong {
  font-weight: 600;
}
.grid_book-a-tour .grid_item_image a {
  color: #f8f7f1;
  text-decoration: none;
  border-bottom: 1px solid;
}
.grid_book-a-tour .grid_item_image a:hover {
  background: #212322;
}
.grid_book-a-tour .grid_item_image ul,
.grid_book-a-tour .grid_item_image ol {
  margin: 15px 0;
  padding-left: 20px;
  opacity: 1;
  transform: none;
}
.grid_book-a-tour .grid_item_image ul li,
.grid_book-a-tour .grid_item_image ol li {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
}
.grid_book-a-tour .grid_item_image ul li ul,
.grid_book-a-tour .grid_item_image ul li ol,
.grid_book-a-tour .grid_item_image ol li ul,
.grid_book-a-tour .grid_item_image ol li ol {
  margin: 15px 0;
  padding-left: 20px;
  opacity: 1;
  transform: none;
}
.grid_book-a-tour .grid_item_image ul li ul li,
.grid_book-a-tour .grid_item_image ul li ol li,
.grid_book-a-tour .grid_item_image ol li ul li,
.grid_book-a-tour .grid_item_image ol li ol li {
  margin-bottom: 5px;
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  color: var(--_section-content-text-color);
}
.grid_book-a-tour .grid_item_image ul li ul li ul,
.grid_book-a-tour .grid_item_image ul li ul li ol,
.grid_book-a-tour .grid_item_image ul li ol li ul,
.grid_book-a-tour .grid_item_image ul li ol li ol,
.grid_book-a-tour .grid_item_image ol li ul li ul,
.grid_book-a-tour .grid_item_image ol li ul li ol,
.grid_book-a-tour .grid_item_image ol li ol li ul,
.grid_book-a-tour .grid_item_image ol li ol li ol {
  margin-top: 5px;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form,
.grid_book-a-tour .grid_item_image ol .grid_item_form {
  width: 100%;
  text-align: center;
  color: #f8f7f1;
  background-color: #b79555;
  padding: 40px 0px 0px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .grid_item_image ul .grid_item_form,
  .grid_book-a-tour .grid_item_image ol .grid_item_form {
    width: 37.423%;
    padding: 40px 32px;
  }
}
.grid_book-a-tour .grid_item_image ul .grid_item_form form,
.grid_book-a-tour .grid_item_image ol .grid_item_form form {
  text-align: left;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .img_field,
.grid_book-a-tour .grid_item_image ol .grid_item_form .img_field {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 62px;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .img_field img,
.grid_book-a-tour .grid_item_image ol .grid_item_form .img_field img {
  width: 71px;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .heading_level_six,
.grid_book-a-tour .grid_item_image ol .grid_item_form .heading_level_six {
  margin: 20px 0 26px;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .tour_form iframe,
.grid_book-a-tour .grid_item_image ol .grid_item_form .tour_form iframe {
  min-height: 615px;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .tour_form #schedule-tour-popup-button,
.grid_book-a-tour .grid_item_image ol .grid_item_form .tour_form #schedule-tour-popup-button {
  border: 1px solid #f8f7f1;
}
.grid_book-a-tour .grid_item_image ul .grid_item_form .heading_level_two,
.grid_book-a-tour .grid_item_image ol .grid_item_form .heading_level_two {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
  margin-bottom: 41px;
  text-align: left;
}
@media (max-width: 991.8px) {
  .grid_book-a-tour .grid_item_image ul .grid_item_form .heading_level_two,
  .grid_book-a-tour .grid_item_image ol .grid_item_form .heading_level_two {
    font-size: 30px;
    line-height: 33.63px;
    letter-spacing: 0px;
  }
}
.grid_book-a-tour .grid_item_form {
  width: 100%;
  text-align: center;
  color: #f8f7f1;
  background-color: #b79555;
  padding: 40px 0px 0px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .grid_item_form {
    width: 37.423%;
    padding: 40px 32px;
  }
}
.grid_book-a-tour .grid_item_form form {
  text-align: left;
}
.grid_book-a-tour .grid_item_form .img_field {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 62px;
}
.grid_book-a-tour .grid_item_form .img_field img {
  width: 71px;
}
.grid_book-a-tour .grid_item_form .heading_level_six {
  margin: 20px 0 26px;
}
.grid_book-a-tour .grid_item_form .tour_form iframe {
  min-height: 615px;
}
.grid_book-a-tour .grid_item_form .tour_form #schedule-tour-popup-button {
  border: 1px solid #f8f7f1;
}
.grid_book-a-tour .grid_item_form .heading_level_two {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
  margin-bottom: 41px;
  text-align: left;
}
@media (max-width: 991.8px) {
  .grid_book-a-tour .grid_item_form .heading_level_two {
    font-size: 30px;
    line-height: 33.63px;
    letter-spacing: 0px;
  }
}
.grid_book-a-tour .header {
  padding-block-start: 42px;
  padding-block-end: 43px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .header {
    padding-block: 68px;
    padding-inline: 68px;
  }
}
.grid_book-a-tour .header .header__nav-wrapper {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "logo";
}
.grid_book-a-tour .header .header__nav-wrapper .header__utility,
.grid_book-a-tour .header .header__nav-wrapper .header__nav-options,
.grid_book-a-tour .header .header__nav-wrapper .header__links,
.grid_book-a-tour .header .header__nav-wrapper .header__nav {
  display: none;
}
.grid_book-a-tour .header .header__nav-wrapper .header__logo {
  place-self: center;
}
.grid_book-a-tour .header .header__nav-wrapper .header__logo img,
.grid_book-a-tour .header .header__nav-wrapper .header__logo picture {
  height: 52px;
  width: 213px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .header .header__nav-wrapper .header__logo img,
  .grid_book-a-tour .header .header__nav-wrapper .header__logo picture {
    height: 82px;
    width: 336px;
  }
}
.grid_book-a-tour .section-newsletter,
.grid_book-a-tour .footer__top,
.grid_book-a-tour .footer__middle {
  display: none;
}
@media (min-width: 992px) {
  .grid_book-a-tour .footer__bottom .footer__block-wrapper {
    padding-block: 73px;
  }
}
@media (min-width: 992px) {
  .grid_book-a-tour .footer .footer__block-item--disclaimer {
    margin-block-start: 20px;
  }
}
.grid_book-a-tour .footer .footer__block-item--disclaimer ul li,
.grid_book-a-tour .footer .footer__block-item--disclaimer ul li p,
.grid_book-a-tour .footer .footer__block-item--disclaimer ul li a {
  text-align: center;
}

.page-not-found-page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #b79555;
  padding: 120px 20px;
  --_section-cta-button-background-color: var(--section-cta-button-background-color, #b79555);
  --_section-cta-button-border-color: var(--section-cta-button-border-color, #b79555);
  --_section-cta-button-label-color: var(--section-cta-button-label-color, #f8f7f1);
  --_section-cta-button-hovered-background-color: var(--section-cta-button-hovered-background-color);
  --_section-cta-button-hovered-border-color: var(--section-cta-button-hovered-border-color);
  --_section-cta-button-hovered-label-color: var(--section-cta-hovered-label-color);
}
@media (min-width: 992px) {
  .page-not-found-page {
    padding: 120px 5.56vw;
  }
}
.page-not-found-page .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.34);
}
.page-not-found-page .left {
  text-align: left;
}
.page-not-found-page .right {
  text-align: right;
}
.page-not-found-page .center {
  text-align: center;
}
.page-not-found-page__container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.page-not-found-page__title {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 30px;
  width: max-content;
  font-family: "acumin-pro", sans-serif;
}
.page-not-found-page__subtitle {
  font-size: 56px;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 30px;
  text-align: center;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 992px) {
  .page-not-found-page__subtitle {
    font-size: 56px;
  }
}
.page-not-found-page .page-not-found-page__take_me_home_button {
  width: max-content;
  font-size: 16px;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02rem;
  background-color: var(--_section-cta-button-background-color);
  color: var(--_section-cta-button-label-color);
  border-color: var(--_section-cta-button-border-color);
}
.page-not-found-page .page-not-found-page__take_me_home_button:hover {
  background-color: var(--_section-cta-button-hovered-background-color);
  color: var(--_section-cta-button-hovered-label-color);
  border-color: var(--_section-cta-button-hovered-border-color);
}

.items-start {
  align-items: start;
}

.items-end {
  align-items: end;
}

.items-center {
  justify-items: center;
}

.page-not-found .page-not-found-page .page-not-found-page__container .page-not-found-page__title {
  margin-bottom: 30px;
}
.page-not-found .page-not-found-page .page-not-found-page__container .page-not-found-page__subtitle {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .page-not-found .page-not-found-page .page-not-found-page__container .page-not-found-page__subtitle {
    margin-bottom: 10px;
  }
}

.resources-filters {
  display: flex;
  justify-content: space-between;
  padding: 50px 5.55vw;
}
body.resources .resources-filters {
  border-bottom: 1px solid #a0a0a0;
}
@media (max-width: 991.8px) {
  .resources-filters {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }
}
.resources-filters .faq-section {
  max-width: 287px;
}
@media (max-width: 991.8px) {
  .resources-filters .faq-section {
    max-width: unset;
  }
}
.resources-filters .faq-section .heading_level_five {
  font-size: 24px;
  line-height: 26.9px;
  text-align: left;
  margin-bottom: 5px;
}
@media (max-width: 991.8px) {
  .resources-filters .faq-section .heading_level_five {
    font-size: 19px;
    width: auto;
    margin-bottom: 25px;
  }
}
.resources-filters .faq-section a {
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #b79555;
}
.resources-filters .faq-section a:hover {
  color: #212322;
}
@media (max-width: 991.8px) {
  .resources-filters .faq-section a {
    font-size: 14px;
  }
}
.resources-filters .dropdown-icon {
  transition: transform 0.3s;
  display: inline-block;
  transform: rotate(0deg);
  z-index: 1;
  width: 32px;
  height: 26px;
  padding: 10px;
}
.resources-filters .filter-section-wrapper {
  display: flex;
  flex-direction: column;
}
.resources-filters .filter-toggle-button {
  display: none;
  cursor: pointer;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  font-style: normal;
  font-size: 20px;
  line-height: 22.42px;
  letter-spacing: 0%;
  border: none;
  margin-bottom: 22px;
  padding: 0;
  color: #212322;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-toggle-button {
    display: flex;
  }
}
.resources-filters .filter-toggle-button .dropdown-icon {
  margin-left: 20px;
  position: static;
  padding: 10px 10px 10px 0;
}
.resources-filters .filter-toggle-button .dropdown-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s;
}
.resources-filters .filter-section {
  display: flex;
  gap: 20px;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-section {
    gap: 20px;
    display: none;
  }
}
@media (max-width: 575.8px) {
  .resources-filters .filter-section {
    flex-direction: column;
  }
}
.resources-filters .filter-section .dropdown {
  position: relative;
  display: inline-block;
  width: 325px;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-section .dropdown {
    width: 75%;
  }
}
@media (max-width: 575.8px) {
  .resources-filters .filter-section .dropdown {
    width: 100%;
  }
}
.resources-filters .filter-section .dropdown-button {
  width: 100%;
  border: 1px solid #212322;
  cursor: pointer;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  padding: 6px 6px 6px 12px;
  height: 40px;
  color: #212322;
  position: relative;
  height: 39px;
  font-feature-settings: "liga" 0, "clig" 0, "calt" 0;
  margin-right: 10px;
  display: flex;
  gap: 8px;
}
.resources-filters .filter-section .dropdown-button span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.resources-filters .filter-section .dropdown-button img {
  transition: transform 0.3s;
}
.resources-filters .filter-section .dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: #f8f7f1;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 0px;
  z-index: 2;
  box-shadow: 0px 5px 12px 0px rgba(160, 160, 160, 0.5019607843);
}
.resources-filters .filter-section .dropdown-menu.open {
  display: block;
}
.resources-filters .filter-section .dropdown-menu.open ~ .dropdown-button .dropdown-icon {
  z-index: 2;
}
.resources-filters .filter-section .dropdown-menu .dropdown-menu-icon {
  transform: rotate(0deg);
  position: absolute;
}
.resources-filters .filter-section .dropdown-menu li {
  padding: 15px 19px 15px 19px;
  color: #212322;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-section .dropdown-menu li {
    padding: 10px 12px;
  }
}
.resources-filters .filter-section .dropdown-menu li.selected {
  font-weight: 600;
  pointer-events: none;
}
.resources-filters .filter-section .dropdown-menu li:has(.checkbox-label) {
  padding: 0;
  cursor: default;
}
.resources-filters .filter-section .dropdown-menu li:hover {
  background: #f0f0f0;
}
.resources-filters .filter-section .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 10px;
  cursor: pointer;
  padding: 15px 19px;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-section .checkbox-label {
    padding: 10px 12px;
  }
}
.resources-filters .filter-section .checkbox-label input {
  width: 12px;
  height: 12px;
  border: 0.5px solid #a0a0a0;
  background-color: #f8f7f1;
  accent-color: #212322;
}

.resources-two-col-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  padding: 50px 6.45vw;
  border-bottom: 1px solid #a0a0a0;
  background-color: #f8f7f1;
  --_twocol-form-blk-cta-button-background-color: var(--twocol-form-blk-cta-button-background-color, transparent);
  --_twocol-form-blk-cta-button-label-color: var(--twocol-form-blk-cta-button-label-color, #f8f7f1);
  --_twocol-form-blk-cta-button-border-color: var(--twocol-form-blk-cta-button-border-color, #b79555);
  --_twocol-form-blk-cta-button-hovered-background-color: var(--twocol-form-blk-cta-button-hovered-background-color, #212322);
  --_twocol-form-blk-cta-button-hovered-label-color: var(--twocol-form-blk-cta-button-hovered-label-color, #f8f7f1);
  --_twocol-form-blk-cta-button-hovered-border-color: var(--twocol-form-blk-cta-button-hovered-border-color, #212322);
  --_twocol-form-hubspot-cta-button-background-color: var(--twocol-form-hubspot-cta-button-background-color, #b79555);
  --_twocol-form-hubspot-cta-button-label-color: var(--twocol-form-hubspot-cta-button-label-color, #f8f7f1);
  --_twocol-form-hubspot-cta-button-border-color: var(--twocol-form-hubspot-cta-button-border-color, #b79555);
  --_twocol-form-hubspot-cta-button-hovered-background-color: var(--twocol-form-hubspot-cta-button-hovered-background-color, #212322);
  --_twocol-form-hubspot-cta-button-hovered-label-color: var(--twocol-form-hubspot-cta-button-hovered-label-color, #f8f7f1);
  --_twocol-form-hubspot-cta-button-hovered-border-color: var(--twocol-form-hubspot-cta-button-hovered-border-color, #212322);
}
@media (max-width: 991.8px) {
  .resources-two-col-container {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }
}
.resources-two-col-container .resources-right-section .btn, .resources-two-col-container .resources-right-section .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .resources-two-col-container .resources-right-section input[type=submit],
.resources-two-col-container .resources-right-section .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .resources-two-col-container .resources-right-section input[type=submit] {
  background-color: var(--_twocol-form-blk-cta-button-background-color);
  color: var(--_twocol-form-blk-cta-button-label-color);
  border-color: var(--_twocol-form-blk-cta-button-border-color);
}
.resources-two-col-container .resources-right-section .btn:hover, .resources-two-col-container .resources-right-section .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .resources-two-col-container .resources-right-section input[type=submit]:hover,
.resources-two-col-container .resources-right-section .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .resources-two-col-container .resources-right-section input[type=submit]:hover {
  background-color: var(--_twocol-form-blk-cta-button-hovered-background-color);
  color: var(--_twocol-form-blk-cta-button-hovered-label-color);
  border-color: var(--_twocol-form-blk-cta-button-hovered-border-color);
}
.resources-two-col-container .resources-left-section .hs-form .hs-submit input[type=submit],
.resources-two-col-container .resources-left-section .hs-form .hs-submit input[type=submit],
.resources-two-col-container .hsl-form__container .hs-form .hs-submit input[type=submit],
.resources-two-col-container .hsl-form__container .hs-form .hs-submit input[type=submit] {
  background-color: var(--_twocol-form-hubspot-cta-button-background-color);
  color: var(--_twocol-form-hubspot-cta-button-label-color);
  border-color: var(--_twocol-form-hubspot-cta-button-border-color);
}
.resources-two-col-container .resources-left-section .hs-form .hs-submit input[type=submit]:hover,
.resources-two-col-container .resources-left-section .hs-form .hs-submit input[type=submit]:hover,
.resources-two-col-container .hsl-form__container .hs-form .hs-submit input[type=submit]:hover,
.resources-two-col-container .hsl-form__container .hs-form .hs-submit input[type=submit]:hover {
  background-color: var(--_twocol-form-hubspot-cta-button-hovered-background-color);
  color: var(--_twocol-form-hubspot-cta-button-hovered-label-color);
  border-color: var(--_twocol-form-hubspot-cta-button-hovered-border-color);
}
.resources-two-col-container .resources-left-section {
  padding: 80px 63px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section {
    padding: 40px;
  }
}
.resources-two-col-container .resources-left-section .heading_level_three {
  font-size: 32px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 16.5px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .heading_level_three {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}
.resources-two-col-container .resources-left-section p {
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 80px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}
.resources-two-col-container .resources-left-section .hsl-form__container .submitted-message {
  padding: 0;
  margin-top: -43px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .hsl-form__container .submitted-message {
    margin-top: -30px;
  }
}
.resources-two-col-container .resources-left-section .hsl-form__container .submitted-message p {
  text-align: left;
}
.resources-two-col-container .resources-left-section .hsl-form__container .submitted-message span {
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .hsl-form__container .submitted-message span {
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
  }
}
.resources-two-col-container .resources-left-section .hsl-form__container .submitted-message span a {
  text-decoration: underline;
  color: inherit !important;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .hsl-form__container form fieldset div.hs-fieldtype-select label {
    margin-bottom: 32px;
    padding-bottom: 0;
  }
}
.resources-two-col-container .resources-left-section .hsl-form__container form fieldset div .input select {
  background-image: url("../images/select-arrow_white.svg");
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .hsl-form__container form fieldset div .input select {
    font-size: 15px;
    line-height: 17px;
  }
}
.resources-two-col-container .resources-right-section {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  background-image: var(--background-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.resources-two-col-container .resources-right-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgb(51, 51, 51);
  opacity: var(--opacity);
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section {
    min-height: auto;
    aspect-ratio: 393/426;
    width: 100%;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content {
  padding: 0px 56px;
  border-radius: 5px;
  color: var(--text-color, #f8f7f1);
  box-shadow: 0px 6px 12px 0px rgba(160, 160, 160, 0.5019607843);
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content {
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content .heading_level_three {
  font-size: 32px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 14px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content .heading_level_three {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    font-weight: 700;
    font-size: 41px;
    line-height: 46px;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content .paragraph {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  margin-bottom: 32px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content .paragraph {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content button {
    font-size: 16px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container:not(.full-width-form) {
    border-bottom: none !important;
  }
}
@media (min-width: 992px) {
  .resources-two-col-container:not(.full-width-form) {
    width: 100%;
  }
  .resources-two-col-container:not(.full-width-form) .resources-left-section,
  .resources-two-col-container:not(.full-width-form) .resources-right-section {
    flex: none;
    width: calc(50% - 16px);
  }
}

body.resources {
  /* resource CTA block styles*/
}
body.resources .card-swipper-section {
  border-bottom: 1px solid #a0a0a0;
  padding-top: 50px;
  padding-bottom: 20px;
}
body.resources .card-swipper-section:last-child {
  border-bottom: unset;
  padding-bottom: 40px;
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section:last-child {
    border-bottom: 1px solid #a0a0a0;
    padding-bottom: 20px;
  }
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section {
    padding: 40px 0px;
  }
}
body.resources .card-swipper-section .card-swipper {
  padding: 0 5.55vw;
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section .card-swipper {
    padding: 0 20px;
    margin: 30px 0px 0px;
  }
}
body.resources .card-swipper-section .card-swipper.card-swipper-no-margin {
  padding: 0px 0px;
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section .card-swipper.card-swipper-no-margin {
    padding: 0 20px;
    margin: 30px 0px 0px;
  }
}
body.resources .card-swipper-section .card-swipper.card-swipper-no-margin .card-swipper__nav {
  display: none !important;
}
body.resources .card-swipper-section .card-swipper-title {
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section .card-swipper-title {
    font-size: 36px;
  }
}
body.resources .resources-two-col-container {
  justify-content: space-between;
}
@media (max-width: 991.8px) {
  body.resources .resources-two-col-container:not(.full-width-form) {
    border-bottom: none !important;
  }
}
@media (min-width: 992px) {
  body.resources .resources-two-col-container:not(.full-width-form) {
    width: 100%;
  }
  body.resources .resources-two-col-container:not(.full-width-form) .resources-left-section,
  body.resources .resources-two-col-container:not(.full-width-form) .resources-right-section {
    flex: none;
    width: calc(50% - 8px);
  }
}
body.resources .resources-two-col-container .resources-left-section .hs-form .hs-form-field {
  margin-bottom: 45px;
}
body.resources .resources-two-col-container > :only-child {
  width: 100% !important;
}

.resources-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
  padding: 40px 5.55vw;
  border-bottom: 1px solid #a0a0a0;
}
@media (max-width: 991.8px) {
  .resources-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }
}
@media (max-width: 767.8px) {
  .resources-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.8px) {
  .resources-list .resources-card {
    cursor: pointer;
    width: 100%;
    display: flex;
    gap: 12px;
  }
}
.resources-list .resources-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resources-list .resources-card .default-thumb {
  height: 100%;
  width: 100%;
  min-height: unset;
  max-height: unset;
  aspect-ratio: 4/2.94;
}
@media (max-width: 767.8px) {
  .resources-list .resources-card .default-thumb {
    background-size: contain;
  }
}
@media (max-width: 767.8px) {
  .resources-list .resources-card .resources-card-details {
    width: 70%;
  }
}
.resources-list .resources-card .resources-img-section {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 4/2.94;
  display: block;
}
@media (max-width: 767.8px) {
  .resources-list .resources-card .resources-img-section {
    width: 30%;
    min-width: 79px;
    min-height: 83px;
    height: 100%;
    aspect-ratio: 1/1;
  }
}
.resources-list .resources-card p {
  font-size: 24px;
  line-height: 26.9px;
  letter-spacing: 0px;
  color: #212322;
  margin-bottom: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767.8px) {
  .resources-list .resources-card p {
    font-size: 20px;
    line-height: 22.42px;
    margin-bottom: 13px;
  }
}
.resources-list .resources-card a {
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  color: #b79555;
}
.resources-list .resources-card a:hover {
  color: #212322;
}
@media (max-width: 767.8px) {
  .resources-list .resources-card:last-child {
    padding-bottom: 40px;
    border-bottom: 1px solid #a0a0a0;
  }
}
.resources-list .resources-card .author {
  font-size: 18px;
  line-height: 21.5px;
  letter-spacing: 1%;
}
@media (max-width: 767.8px) {
  .resources-list .resources-card .author {
    font-size: 16px;
  }
}
.resources-list .signup-inbox {
  grid-column: 1;
  grid-row: 1/span 2;
  padding: 85px 30px 88px 30px;
  background-color: #b79555;
  color: #f8f7f1;
}
@media (max-width: 767.8px) {
  .resources-list .signup-inbox {
    order: 999;
    padding: 40px;
  }
}
.resources-list .signup-inbox p {
  margin-bottom: 80px;
}
@media (max-width: 991.8px) {
  .resources-list .signup-inbox p {
    margin-bottom: 40px;
  }
}
.resources-list .signup-inbox .resources-two-col-container {
  padding: 0;
}
.resources-list .signup-inbox .resources-two-col-container .resources-left-section {
  flex: 1;
  padding: 0;
}
.resources-list .signup-inbox .hs-form .hs-form-field {
  margin-bottom: 45px;
}
.resources-list .signup-inbox .hs-form .hs-form-field label {
  padding-bottom: 18px;
}
@media (max-width: 991.8px) {
  .resources-list .signup-inbox .hs-form .hs-form-field label {
    padding-bottom: 30px;
  }
}
.resources-list.hide-hubspot-form-block .signup-inbox {
  display: none;
}

.topic-filter-page .resources-container .heading_level_two {
  padding: 50px 6.25vw 0px;
  text-align: center;
}
@media (max-width: 991.8px) {
  .topic-filter-page .resources-container .heading_level_two {
    padding: 40px 20px 0;
    text-align: left;
  }
}
.topic-filter-page .resources-container .resources-list {
  padding: 50px 6.25vw;
  border-bottom: 0;
}
@media (max-width: 991.8px) {
  .topic-filter-page .resources-container .resources-list {
    padding: 40px 0;
  }
}
@media (max-width: 991.8px) {
  .topic-filter-page .resources-container .resources-list .signup-inbox {
    margin: 40px 20px 0px 20px;
  }
}

.custom-pagination {
  padding-bottom: 80px;
}
body.topic-filter-page .custom-pagination {
  background-color: #f8f7f1;
}
.custom-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.custom-pagination .pagination a,
.custom-pagination .pagination span {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #a0a0a0;
  padding: 2px;
  cursor: pointer;
}
.custom-pagination .pagination a:hover,
.custom-pagination .pagination span:hover {
  color: #212322;
}
.custom-pagination .pagination a.current,
.custom-pagination .pagination span.current {
  color: #212322;
  cursor: default;
}
.custom-pagination .pagination a.disabled,
.custom-pagination .pagination span.disabled {
  color: #a0a0a0 !important;
  cursor: default;
}
.custom-pagination .pagination .arrow-first-page,
.custom-pagination .pagination .arrow-last-page {
  width: 12px;
  height: 12px;
  background: url("../images/pagination-arrows.svg") center/contain no-repeat;
}
.custom-pagination .pagination .arrow-first-page.disabled,
.custom-pagination .pagination .arrow-last-page.disabled {
  opacity: 0.4;
}
.custom-pagination .pagination .arrow-single-left,
.custom-pagination .pagination .arrow-single-right {
  font-size: 0;
  width: 6px;
  height: 12px;
  background: url("../images/pagination-arrow.svg") center/contain no-repeat;
}
.custom-pagination .pagination .arrow-single-left.disabled,
.custom-pagination .pagination .arrow-single-right.disabled {
  opacity: 0.4;
}
.custom-pagination .pagination .arrow-first-page,
.custom-pagination .pagination .arrow-single-left {
  transform: rotate(180deg);
}

.individual-resource-container {
  max-width: 824px;
  padding: 50px 0;
  margin: 0 auto;
}
@media (max-width: 991.8px) {
  .individual-resource-container {
    padding: 40px 20px;
  }
}
.individual-resource-container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #29353f;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .individual-resource-container p {
    line-height: 22px;
    margin-bottom: 40px;
  }
}
.individual-resource-container img {
  height: 456px;
  object-fit: cover;
}
@media (max-width: 991.8px) {
  .individual-resource-container img {
    height: 294px;
    object-fit: cover;
  }
}
.individual-resource-container .wp-block-image {
  margin-bottom: 24px;
}
.individual-resource-container .wp-block-image.size-full {
  width: 100%;
}
@media (max-width: 991.8px) {
  .individual-resource-container .wp-block-image {
    margin: 0px -20px 50px -20px;
  }
}
.individual-resource-container a {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  color: #29353f;
  text-decoration: underline;
}
@media (max-width: 991.8px) {
  .individual-resource-container a {
    margin-bottom: 20px;
  }
}
.individual-resource-container h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  color: #212322;
  margin-bottom: 34px;
  margin-top: 10px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h2 {
    margin-top: 0px;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}
.individual-resource-container h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 24px;
  margin-top: 10px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h3 {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 28px;
  }
}
.individual-resource-container h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 26.9px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  margin-top: 10px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h4 {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.individual-resource-container h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 26.9px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  margin-top: 10px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h5 {
    margin-bottom: 40px;
    margin-top: 0px;
  }
}
.individual-resource-container q {
  font-weight: 500;
  font-size: 28px;
  line-height: 31.39px;
  letter-spacing: 0px;
  padding: 12px 60px;
  float: left;
}
@media (max-width: 991.8px) {
  .individual-resource-container q {
    font-size: 26px;
    line-height: 29.15px;
  }
}
.individual-resource-container .wp-block-quote.wp-block-quote p:has(> strong) {
  padding: 12px 60px;
}
.individual-resource-container ul,
.individual-resource-container ol {
  list-style: disc;
  margin-left: 12px;
}
.individual-resource-container ul li,
.individual-resource-container ol li {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #29353f;
}
.individual-resource-container .wp-element-caption,
.individual-resource-container .caption {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  margin: 12px 0px 0px 0px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .wp-element-caption,
  .individual-resource-container .caption {
    font-size: 13px;
    margin: 10px 20px 0px;
  }
}
.individual-resource-container iframe {
  margin-bottom: 40px;
  margin-top: 24px;
}
.individual-resource-container table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #212322;
  margin: 26px 0px 60px;
}
.individual-resource-container table th {
  border-collapse: collapse;
  border: 1px solid #212322;
  padding: 12px;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 22.42px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #212322;
  color: #f8f7f1;
}
@media (max-width: 991.8px) {
  .individual-resource-container table th {
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
    margin: 40px 0;
  }
}
.individual-resource-container table td {
  border-collapse: collapse;
  border: 1px solid #212322;
  padding: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 991.8px) {
  .individual-resource-container table td {
    font-size: 16px;
    line-height: 19.2px;
    padding: 16px 4px;
  }
}
.individual-resource-container table td {
  white-space: nowrap;
}
.individual-resource-container table.has-fixed-layout {
  table-layout: auto;
}
.individual-resource-container .wp-element-caption a,
.individual-resource-container .caption a,
.individual-resource-container h2 a,
.individual-resource-container h3 a,
.individual-resource-container h4 a,
.individual-resource-container h5 a,
.individual-resource-container h6 a,
.individual-resource-container q a,
.individual-resource-container ul li a,
.individual-resource-container ol li a,
.individual-resource-container table th a,
.individual-resource-container table td a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin-bottom: 0;
}
.individual-resource-container .testimonial-wrapper {
  padding: 40px 0px 0px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper {
    padding: 40px 0px;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial {
    flex-direction: column;
    align-items: flex-start;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial img {
  aspect-ratio: 1/1;
  width: 177px;
  height: 177px;
  margin-bottom: 0px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial img {
    width: 209px;
    height: 209px;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial .testimonial-text {
  padding-left: 40px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial .testimonial-text {
    padding: 40px 0 0 0;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial .testimonial-text h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 20px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial .testimonial-text h3 {
    font-size: 25px;
    line-height: 28px;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial .testimonial-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial .testimonial-text p {
    line-height: 20px;
  }
}
.individual-resource-container .testimonial-wrapper .paragraph {
  font-size: 20px;
  margin: 0px;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  line-height: normal;
  color: #212322;
  margin-bottom: 5px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .paragraph {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .paragraph.published-on {
    margin-bottom: 10px;
  }
}
.individual-resource-container .testimonial-wrapper .heading_level_six {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-decoration: underline;
  color: #212322;
  margin-top: 15px;
  margin-bottom: 0px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .heading_level_six {
    font-size: 14px;
    line-height: normal;
  }
}
.individual-resource-container > ul.wp-block-list > li:last-child {
  padding-bottom: 40px;
}

.blog-tag,
.blog-h2 {
  display: none;
}

@media (max-width: 991.8px) {
  body.article .card-swipper-section {
    border-top: 1px solid #212322;
  }
}
@media (min-width: 992px) {
  body.article .banner.single_image, body.article .banner.article {
    min-height: 600px;
    width: 100%;
    height: 600px;
  }
}
@media (min-width: 992px) and (min-width: 3000px) {
  body.article .banner.single_image, body.article .banner.article {
    height: calc(100vh - 400px);
  }
}
body.article .banner .banner__layout-left,
body.article .banner .banner__layout-center,
body.article .banner .banner__layout-right {
  height: 100%;
  align-items: center;
}
@media (min-width: 992px) {
  body.article .banner .banner__text-container {
    min-height: 600px;
    width: 70%;
    max-width: 731px;
  }
}
body.article .banner .banner__text-container .banner-tag,
body.article .banner .banner__text-container .banner-h2 {
  display: none;
}
body.article .banner .banner__text-container .blog-tag,
body.article .banner .banner__text-container .blog-h2 {
  display: block;
}
body.article .banner .banner__text-container h1 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0px 0 0px 0;
  line-height: normal;
  margin-bottom: 30px;
}
body.article .banner .banner__text-container h1 {
  font-size: 48px;
}
@media screen and (min-width: 390px) {
  body.article .banner .banner__text-container h1 {
    font-size: calc(48px + 8 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  body.article .banner .banner__text-container h1 {
    font-size: 56px;
  }
}
body.article .banner .banner__text-container h2 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  margin-top: 30px;
  margin-bottom: 0;
}
@media (max-width: 991.8px) {
  body.article .banner .banner__text-container h2 {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01rem;
  }
}
body.article .banner .banner__text-container .heading_icon {
  margin-bottom: 25px;
}

body.resources,
body.topic-filter-page {
  /* success message styling */
}
@media (min-width: 992px) {
  body.resources .banner.single_image,
  body.resources .banner.article,
  body.topic-filter-page .banner.single_image,
  body.topic-filter-page .banner.article {
    min-height: 600px;
    width: 100%;
    height: 600px;
  }
}
@media (min-width: 992px) and (min-width: 3000px) {
  body.resources .banner.single_image,
  body.resources .banner.article,
  body.topic-filter-page .banner.single_image,
  body.topic-filter-page .banner.article {
    height: calc(100vh - 400px);
  }
}
body.resources .banner.single_image .banner__layout-left,
body.resources .banner.single_image .banner__layout-center,
body.resources .banner.single_image .banner__layout-right,
body.resources .banner.article .banner__layout-left,
body.resources .banner.article .banner__layout-center,
body.resources .banner.article .banner__layout-right,
body.topic-filter-page .banner.single_image .banner__layout-left,
body.topic-filter-page .banner.single_image .banner__layout-center,
body.topic-filter-page .banner.single_image .banner__layout-right,
body.topic-filter-page .banner.article .banner__layout-left,
body.topic-filter-page .banner.article .banner__layout-center,
body.topic-filter-page .banner.article .banner__layout-right {
  height: 100%;
  align-items: center;
}
@media (min-width: 992px) {
  body.resources .banner.single_image .banner__layout-left .banner__text-container,
  body.resources .banner.single_image .banner__layout-center .banner__text-container,
  body.resources .banner.single_image .banner__layout-right .banner__text-container,
  body.resources .banner.article .banner__layout-left .banner__text-container,
  body.resources .banner.article .banner__layout-center .banner__text-container,
  body.resources .banner.article .banner__layout-right .banner__text-container,
  body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container,
  body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container,
  body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container,
  body.topic-filter-page .banner.article .banner__layout-left .banner__text-container,
  body.topic-filter-page .banner.article .banner__layout-center .banner__text-container,
  body.topic-filter-page .banner.article .banner__layout-right .banner__text-container {
    min-height: unset;
    width: 70%;
    max-width: 731px;
  }
}
body.resources .banner.single_image .banner__layout-left .banner__text-container h1,
body.resources .banner.single_image .banner__layout-center .banner__text-container h1,
body.resources .banner.single_image .banner__layout-right .banner__text-container h1,
body.resources .banner.article .banner__layout-left .banner__text-container h1,
body.resources .banner.article .banner__layout-center .banner__text-container h1,
body.resources .banner.article .banner__layout-right .banner__text-container h1,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h1,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h1,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h1,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h1,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h1,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h1 {
  font-weight: 300;
}
body.resources .banner.single_image .banner__layout-left .banner__text-container h2,
body.resources .banner.single_image .banner__layout-center .banner__text-container h2,
body.resources .banner.single_image .banner__layout-right .banner__text-container h2,
body.resources .banner.article .banner__layout-left .banner__text-container h2,
body.resources .banner.article .banner__layout-center .banner__text-container h2,
body.resources .banner.article .banner__layout-right .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h2 {
  line-height: normal;
  margin-bottom: 30px;
  margin-top: 10px;
}
body.resources .banner.single_image .banner__layout-left .banner__text-container h2,
body.resources .banner.single_image .banner__layout-center .banner__text-container h2,
body.resources .banner.single_image .banner__layout-right .banner__text-container h2,
body.resources .banner.article .banner__layout-left .banner__text-container h2,
body.resources .banner.article .banner__layout-center .banner__text-container h2,
body.resources .banner.article .banner__layout-right .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h2,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h2,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h2 {
  font-size: 48px;
}
@media screen and (min-width: 390px) {
  body.resources .banner.single_image .banner__layout-left .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-center .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-right .banner__text-container h2,
  body.resources .banner.article .banner__layout-left .banner__text-container h2,
  body.resources .banner.article .banner__layout-center .banner__text-container h2,
  body.resources .banner.article .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h2 {
    font-size: calc(48px + 8 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  body.resources .banner.single_image .banner__layout-left .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-center .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-right .banner__text-container h2,
  body.resources .banner.article .banner__layout-left .banner__text-container h2,
  body.resources .banner.article .banner__layout-center .banner__text-container h2,
  body.resources .banner.article .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h2 {
    font-size: 56px;
  }
}
@media (max-width: 991.8px) {
  body.resources .banner.single_image .banner__layout-left .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-center .banner__text-container h2,
  body.resources .banner.single_image .banner__layout-right .banner__text-container h2,
  body.resources .banner.article .banner__layout-left .banner__text-container h2,
  body.resources .banner.article .banner__layout-center .banner__text-container h2,
  body.resources .banner.article .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-left .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-center .banner__text-container h2,
  body.topic-filter-page .banner.article .banner__layout-right .banner__text-container h2 {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
body.resources .banner.single_image .banner__layout-left .banner__text-container .btn, body.resources .banner.single_image .banner__layout-left .banner__text-container .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit body.resources .banner.single_image .banner__layout-left .banner__text-container input[type=submit],
body.resources .banner.single_image .banner__layout-left .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.single_image .banner__layout-left .banner__text-container input[type=submit],
body.resources .banner.single_image .banner__layout-center .banner__text-container .btn,
body.resources .banner.single_image .banner__layout-center .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.resources .banner.single_image .banner__layout-center .banner__text-container input[type=submit],
body.resources .banner.single_image .banner__layout-center .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.single_image .banner__layout-center .banner__text-container input[type=submit],
body.resources .banner.single_image .banner__layout-right .banner__text-container .btn,
body.resources .banner.single_image .banner__layout-right .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.resources .banner.single_image .banner__layout-right .banner__text-container input[type=submit],
body.resources .banner.single_image .banner__layout-right .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.single_image .banner__layout-right .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-left .banner__text-container .btn,
body.resources .banner.article .banner__layout-left .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.resources .banner.article .banner__layout-left .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-left .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.article .banner__layout-left .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-center .banner__text-container .btn,
body.resources .banner.article .banner__layout-center .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.resources .banner.article .banner__layout-center .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-center .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.article .banner__layout-center .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-right .banner__text-container .btn,
body.resources .banner.article .banner__layout-right .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.resources .banner.article .banner__layout-right .banner__text-container input[type=submit],
body.resources .banner.article .banner__layout-right .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.resources .banner.article .banner__layout-right .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .btn,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .btn,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .btn,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container input[type=submit],
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .btn,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.article .banner__layout-left .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.article .banner__layout-left .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .btn,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.article .banner__layout-center .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.article .banner__layout-center .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .btn,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .hbspt-form .hs-submit input[type=submit],
.hbspt-form .hs-submit body.topic-filter-page .banner.article .banner__layout-right .banner__text-container input[type=submit],
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit body.topic-filter-page .banner.article .banner__layout-right .banner__text-container input[type=submit] {
  margin-top: 0;
}
body.resources .banner.single_image .banner__layout-left .banner__text-container .heading_level_six,
body.resources .banner.single_image .banner__layout-center .banner__text-container .heading_level_six,
body.resources .banner.single_image .banner__layout-right .banner__text-container .heading_level_six,
body.resources .banner.article .banner__layout-left .banner__text-container .heading_level_six,
body.resources .banner.article .banner__layout-center .banner__text-container .heading_level_six,
body.resources .banner.article .banner__layout-right .banner__text-container .heading_level_six,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .heading_level_six,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .heading_level_six,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .heading_level_six,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .heading_level_six,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .heading_level_six,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .heading_level_six {
  margin: 0 0 25px;
}
body.resources .banner.single_image .banner__layout-left .banner__text-container .heading_level_five,
body.resources .banner.single_image .banner__layout-center .banner__text-container .heading_level_five,
body.resources .banner.single_image .banner__layout-right .banner__text-container .heading_level_five,
body.resources .banner.article .banner__layout-left .banner__text-container .heading_level_five,
body.resources .banner.article .banner__layout-center .banner__text-container .heading_level_five,
body.resources .banner.article .banner__layout-right .banner__text-container .heading_level_five,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .heading_level_five,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .heading_level_five,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .heading_level_five,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .heading_level_five,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .heading_level_five,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .heading_level_five {
  margin: 0 0 25px;
}
body.resources .banner.single_image .banner__layout-left .banner__text-container .heading_icon,
body.resources .banner.single_image .banner__layout-center .banner__text-container .heading_icon,
body.resources .banner.single_image .banner__layout-right .banner__text-container .heading_icon,
body.resources .banner.article .banner__layout-left .banner__text-container .heading_icon,
body.resources .banner.article .banner__layout-center .banner__text-container .heading_icon,
body.resources .banner.article .banner__layout-right .banner__text-container .heading_icon,
body.topic-filter-page .banner.single_image .banner__layout-left .banner__text-container .heading_icon,
body.topic-filter-page .banner.single_image .banner__layout-center .banner__text-container .heading_icon,
body.topic-filter-page .banner.single_image .banner__layout-right .banner__text-container .heading_icon,
body.topic-filter-page .banner.article .banner__layout-left .banner__text-container .heading_icon,
body.topic-filter-page .banner.article .banner__layout-center .banner__text-container .heading_icon,
body.topic-filter-page .banner.article .banner__layout-right .banner__text-container .heading_icon {
  margin-bottom: 25px;
}
body.resources .card-swipper-section .card-swipper,
body.topic-filter-page .card-swipper-section .card-swipper {
  padding-bottom: 40px;
}
body.resources .resources-left-section:has(.submitted-message),
body.topic-filter-page .resources-left-section:has(.submitted-message) {
  min-height: 723px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0px;
}
body.resources .resources-left-section:has(.submitted-message) .submitted-message,
body.topic-filter-page .resources-left-section:has(.submitted-message) .submitted-message {
  margin-top: 0px;
}
body.resources .resources-left-section:has(.submitted-message) .submitted-message p,
body.topic-filter-page .resources-left-section:has(.submitted-message) .submitted-message p {
  margin-bottom: 0px;
}
body.resources .resources-left-section:has(.submitted-message) > h2, body.resources .resources-left-section:has(.submitted-message) > p,
body.topic-filter-page .resources-left-section:has(.submitted-message) > h2,
body.topic-filter-page .resources-left-section:has(.submitted-message) > p {
  display: none;
}
body.resources .submitted-message p span a,
body.topic-filter-page .submitted-message p span a {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  body.resources .submitted-message p span a,
  body.topic-filter-page .submitted-message p span a {
    font-size: calc(30px + 2 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  body.resources .submitted-message p span a,
  body.topic-filter-page .submitted-message p span a {
    font-size: 32px;
  }
}

.resources-container {
  --_section-background-color: var(--section-background-color);
}
@media (max-width: 991.8px) {
  .resources-container .resources-filters .faq-section .heading_level_five {
    width: 100% !important;
  }
}

body.topic-filter-page .banner.article, body.resources .banner.article {
  padding: 179px 6.45vw;
}
@media (max-width: 991.8px) {
  body.topic-filter-page .banner.article, body.resources .banner.article {
    padding: 83.5px 24px;
  }
}

body.topic-filter-page .resources-container .resources-filters .faq-section .heading_level_five,
body.resources .resources-container .resources-filters .faq-section .heading_level_five {
  margin-bottom: 5px;
}
@media (max-width: 991.8px) {
  body.topic-filter-page .resources-container .resources-filters .faq-section .heading_level_five,
  body.resources .resources-container .resources-filters .faq-section .heading_level_five {
    margin-bottom: 20px;
  }
}

.residence-main-wrapper .card-swipper {
  padding-top: 0;
  padding-bottom: 0;
}
.residence-main-wrapper .card-swipper .card-swipper__container .card-swipper__slide .card .card__image {
  aspect-ratio: 1/1;
}
.residence-main-wrapper .card__content {
  padding-bottom: 0;
}
.residence-main-wrapper .card-swipper-section {
  padding: 40px 0;
}
@media (max-width: 991.8px) {
  .residence-main-wrapper .card-swipper-section {
    padding: 0px 0 40px;
  }
}
.residence-main-wrapper .faq-accordion__title {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .residence-main-wrapper .faq-accordion__title {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .residence-main-wrapper .faq-accordion__title {
    font-size: 56px;
  }
}
.residence-main-wrapper .faq-accordion__title {
  line-height: 40px;
}
@media screen and (min-width: 393px) {
  .residence-main-wrapper .faq-accordion__title {
    line-height: calc(40px + 22.78 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .residence-main-wrapper .faq-accordion__title {
    line-height: 62.78px;
  }
}
@media (min-width: 992px) {
  .residence-main-wrapper .residence-faq .faq-accordion__container .faq-accordion__panel {
    width: 809px;
    max-width: 56vw;
    margin: 0 auto;
  }
}
.residence-main-wrapper .inner-banner a {
  pointer-events: none;
}
@media (max-width: 991.8px) {
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .card {
    display: block;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .card__image {
    max-height: 350px;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .desktop {
    display: block !important;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .desktop .card-swipper__slide {
    max-width: 80vw;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .desktop .card {
    display: block;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .desktop .card__image {
    max-height: 350px;
  }
  .residence-main-wrapper .inner-banner .residence-card-swipper .card-swipper .card-swipper__container .mob {
    display: none !important;
  }
}
.residence-main-wrapper .inner-banner .banner__media::before {
  background: linear-gradient(45deg, rgb(34, 33, 39), rgba(34, 33, 39, 0));
  opacity: 1;
}
@media (max-width: 991.8px) {
  .residence-main-wrapper .banner__layout-left .banner__text-container {
    height: 454px !important;
  }
  .residence-main-wrapper .banner__media {
    border-radius: 0 !important;
  }
  .residence-main-wrapper .banner__media::before {
    background: rgba(33, 35, 34, 0.6);
    opacity: 1;
  }
}
@media (max-width: 991.8px) {
  .residence-main-wrapper .residence-two-col {
    background-color: #f7efd8 !important;
    row-gap: 0;
  }
  .residence-main-wrapper .residence-two-col .two_col_img .two_col_img_slider img {
    border-radius: 0 !important;
  }
  .residence-main-wrapper .residence-two-col .two_col_content .content_box h3,
  .residence-main-wrapper .residence-two-col .two_col_content .content_box h4,
  .residence-main-wrapper .residence-two-col .two_col_content .content_box p {
    color: #212322 !important;
  }
  .residence-main-wrapper .residence-two-col .two_col_content .content_box h3 {
    font-family: "RecklessNeue-Light", sans-serif;
    margin-bottom: 30px;
  }
  .residence-main-wrapper .residence-two-col .two_col_content .content_box h4 {
    margin-bottom: 30px;
  }
  .residence-main-wrapper .residence-two-col .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev svg,
  .residence-main-wrapper .residence-two-col .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next svg {
    stroke: #212322;
    fill: #212322;
  }
  .residence-main-wrapper .residence-two-col .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_prev.slick-disabled svg,
  .residence-main-wrapper .residence-two-col .two_col_content .content_box .two_col_img_slider_controls .two_col_img_slider_next.slick-disabled svg {
    fill: rgb(160, 160, 160);
    stroke: rgb(160, 160, 160);
  }
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay {
  position: relative;
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay .content-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f8f7f1;
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24.6px;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  display: none;
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay .content-overlay:before {
  content: "";
  display: block;
  height: 40px;
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay .content-overlay::-webkit-scrollbar {
  width: 6px;
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay .content-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.residence-main-wrapper .residence-card-swipper .card-swipper .card-image-overlay .content-overlay::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
@media (max-width: 991.8px) {
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .card {
    display: block;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .card__image {
    max-height: 350px;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .desktop {
    display: block !important;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .desktop .card-swipper__slide {
    max-width: 80vw;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .desktop .card {
    display: block;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .desktop .card__image {
    max-height: 350px;
  }
  .residence-main-wrapper .residence-card-swipper .card-swipper .card-swipper__container .mob {
    display: none !important;
  }
}
.residence-main-wrapper .availability-wrapper a {
  pointer-events: none;
}
.residence-main-wrapper .availability-wrapper a:hover {
  background-color: rgba(254, 234, 173, 0.8666666667) !important;
  border-color: rgba(254, 234, 173, 0.8666666667) !important;
}
.residence-main-wrapper .banner.single_image .banner__layout-left .banner__text-container a:hover {
  background-color: #f8f7f1 !important;
}
.residence-main-wrapper .amenities_list_wrapper h2 {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .residence-main-wrapper .amenities_list_wrapper h2 {
    font-size: calc(30px + 12 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .residence-main-wrapper .amenities_list_wrapper h2 {
    font-size: 42px;
  }
}
.residence-main-wrapper .card-swipper-section {
  padding-bottom: 0;
}

.faq .banner .banner__layout-left h1 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26.4px;
  letter-spacing: 0.02em;
  font-style: normal;
}
@media (max-width: 991.8px) {
  .faq .banner .banner__layout-left h1 {
    font-weight: 300;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0.01em;
  }
}

.search-results {
  background: #f8f7f1;
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-background: var(--section-background, none);
  --_section-text-color: var(--section-text-color, #212322);
}
.search-results__container {
  padding: 0px 20px;
  background: var(--_section-background);
  background-color: var(--_section-background-color);
}
@media (min-width: 992px) {
  .search-results__container {
    padding: 0px 6.45vw;
  }
}
.search-results__header {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 20px 0;
  color: #b79555;
}
.search-results__header a {
  color: #b79555;
}
.search-results__header a:hover {
  text-decoration: underline;
}
.search-results [data-results="0"] .search-banner__container {
  padding: 110px 0px 50px;
}
.search-results [data-results="0"] .search-banner__container__heading {
  margin-top: 30px;
}
.search-results [data-results="0"] .search-results__list {
  display: none;
}
.search-results .search-banner {
  --_section-text-color: var(--section-text-color, #212322);
  --_section-background-color: var(--section-background-color, #f8f7f1);
  --_section-cta-button-background-color: var(--section-cta-button-background-color, #f7efd8);
  --_section-cta-button-label-color: var(--section-cta-button-label-color, #212322);
  --_section-cta-button-border-color: var(--section-cta-button-border-color, #f7efd8);
  --_section-cta-button-border-radius: var(--section-cta-button-border-radius, 0);
  --_section-cta-button-hovered-background-color: var(--section-cta-button-hovered-background-color, #212322);
  --_section-cta-button-hovered-label-color: var(--section-cta-button-hovered-label-color, #f8f7f1);
  --_section-cta-button-hovered-border-color: var(--section-cta-button-hovered-border-color, #212322);
  color: var(--_section-text-color);
  background-color: var(--_section-background-color);
}
.search-results .search-banner__container {
  display: flex;
  flex-direction: column;
  padding: 110px 0px 60px;
  margin-bottom: 10x;
}
@media (max-width: 991.8px) {
  .search-results .search-banner__container {
    padding: 40px 0px 50px;
    margin-bottom: 20x;
  }
}
.search-results .search-banner.items-center__container {
  align-items: center;
}
.search-results .search-banner__subheading {
  font-weight: 800;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: var(--_section-text-color);
}
.search-results .search-banner__subheading {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .search-results .search-banner__subheading {
    font-size: calc(16px + 12 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results .search-banner__subheading {
    font-size: 28px;
  }
}
.search-results .search-banner__heading {
  font-weight: 700;
  text-align: center;
  color: var(--_section-text-color);
}
.search-results .search-banner__heading {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .search-results .search-banner__heading {
    font-size: calc(30px + 26 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results .search-banner__heading {
    font-size: 56px;
  }
}
.search-results .search-banner__heading {
  line-height: 34px;
}
@media screen and (min-width: 393px) {
  .search-results .search-banner__heading {
    line-height: calc(34px + 28 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results .search-banner__heading {
    line-height: 62px;
  }
}
.search-results .search-banner__cta {
  display: inline-block;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 20px;
  border: 3px solid var(--_section-cta-button-border-color);
  margin-top: 30px;
  background-color: var(--_section-cta-button-background-color);
  color: var(--_section-cta-button-label-color);
  border-color: var(--_section-cta-button-border-color);
}
.search-results .search-banner__cta {
  font-size: 12px;
}
@media screen and (min-width: 393px) {
  .search-results .search-banner__cta {
    font-size: calc(12px + 3 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results .search-banner__cta {
    font-size: 15px;
  }
}
.search-results .search-banner__cta:hover {
  background-color: var(--_section-cta-button-hovered-background-color);
  color: var(--_section-cta-button-hovered-label-color);
  border-color: var(--_section-cta-button-hovered-border-color);
}
@media (max-width: 991.8px) {
  .search-results .search-banner__cta {
    border-width: 2px;
  }
}
.search-results__seperator {
  display: inline-block;
  margin: 0 4px;
}
.search-results__list {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 40px;
  column-gap: 40px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .search-results__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .search-results__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .search-results__list {
    padding: 50px 0;
    row-gap: 50px;
  }
}
.search-results__list-item.floorplan-item .card .card__image {
  object-fit: contain;
}
.search-results__list-item .card {
  position: relative;
  height: auto;
  border-radius: 0;
  border: 0;
  flex-direction: column;
}
.search-results__list-item .card .card__media {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1.6042;
}
@media (min-width: 992px) {
  .search-results__list-item .card .card__media {
    aspect-ratio: 1.3333;
  }
}
.search-results__list-item .card .card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card .card__image {
    height: 235px;
    max-height: unset;
  }
}
.search-results__list-item .card .card__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .search-results__list-item .card .card__content {
    width: 100%;
    margin: 0 auto;
  }
}
.search-results__list-item .card .badge-wrapper {
  margin-bottom: 22px;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card .badge-wrapper {
    margin-bottom: 15px;
  }
}
.search-results__list-item .card__title,
.search-results__list-item .card .floorplan__name {
  color: var(--_section-text-color);
  font-weight: 700;
  line-height: 22px;
  word-break: break-word;
  margin-bottom: 20px;
}
.search-results__list-item .card__title,
.search-results__list-item .card .floorplan__name {
  font-size: 19px;
}
@media screen and (min-width: 393px) {
  .search-results__list-item .card__title,
  .search-results__list-item .card .floorplan__name {
    font-size: calc(19px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results__list-item .card__title,
  .search-results__list-item .card .floorplan__name {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .search-results__list-item .card__title,
  .search-results__list-item .card .floorplan__name {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 22px;
  }
}
.search-results__list-item .card__title a,
.search-results__list-item .card .floorplan__name a {
  color: var(--_section-text-color);
}
.search-results__list-item .card__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 20px 0px 5px 0px;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card__content {
    justify-content: flex-start;
    padding: 20px 0px 20px 0px;
  }
}
.search-results__list-item .card .card__link {
  text-decoration: none;
  transition: none;
  text-transform: uppercase;
  font-weight: 800;
  line-height: normal;
  color: var(--_section-text-color);
}
.search-results__list-item .card .card__link {
  font-size: 14px;
}
@media screen and (min-width: 393px) {
  .search-results__list-item .card .card__link {
    font-size: calc(14px + 1 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .search-results__list-item .card .card__link {
    font-size: 15px;
  }
}
.search-results__list-item .card .card__link:hover {
  color: #212322;
}
.search-results__list-item .card .card__link::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 14px;
  margin-left: 8px;
  background-color: currentColor;
  mask-size: 100% 100%;
  mask: url("../images/arrow-left.svg") 100%;
  -webkit-mask: url("../images/arrow-left.svg") 100%;
  -webkit-mask-size: 100% 100%;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card .card__link::after {
    width: 22px;
    height: 10px;
  }
}
.search-results__list-item .card .card__link:hover {
  color: #BCB4A7;
}
.search-results__list-item .card .default-thumb {
  aspect-ratio: 1.33333;
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  background-size: auto;
}
@media (min-width: 992px) {
  .search-results__list-item .card .default-thumb {
    background-size: auto;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .search-results .search-results__container ul li article .card__media img {
    height: 350px;
    aspect-ratio: auto;
    width: auto;
  }
}
.search-results .search-results__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 100px;
}
@media (max-width: 991.8px) {
  .search-results .search-results__pagination {
    margin-bottom: 20px;
  }
}
.search-results .search-results__pagination .page-numbers {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  padding: 2px;
  cursor: pointer;
  color: var(--_section-text-color);
}
.search-results .search-results__pagination .page-numbers.current {
  color: #212322;
}
.search-results .search-results__pagination .next {
  width: 6px;
  height: 12px;
  color: var(--_section-text-color);
  background-color: currentColor;
  mask-size: 100% 100%;
  mask: url("../images/pagination-arrow.svg") 100%;
  -webkit-mask: url("../images/pagination-arrow.svg") 100%;
  -webkit-mask-size: 100% 100%;
  font-size: 0;
}
.search-results .search-results__pagination .last-page {
  width: 12px;
  height: 12px;
  color: var(--_section-text-color);
  background-color: currentColor;
  mask-size: 100% 100%;
  mask: url("../images/pagination-arrows.svg") 100%;
  -webkit-mask: url("../images/pagination-arrows.svg") 100%;
  -webkit-mask-size: 100% 100%;
  font-size: 0;
}
.search-results .search-results__pagination .first-page {
  width: 12px;
  height: 12px;
  color: var(--_section-text-color);
  background-color: currentColor;
  mask-size: 100% 100%;
  mask: url("../images/pagination-arrows.svg") 100%;
  -webkit-mask: url("../images/pagination-arrows.svg") 100%;
  -webkit-mask-size: 100% 100%;
  transform: rotate(180deg);
  font-size: 0;
}
.search-results .search-results__pagination .prev {
  width: 6px;
  height: 12px;
  color: var(--_section-text-color);
  background-color: currentColor;
  mask-size: 100% 100%;
  mask: url("../images/pagination-arrow.svg") 100%;
  -webkit-mask: url("../images/pagination-arrow.svg") 100%;
  -webkit-mask-size: 100% 100%;
  transform: rotate(180deg);
  font-size: 0;
}

.search-results .search-results__container .search-banner .search-banner__container {
  padding: 110px 0 60px;
  border-bottom: 1px solid #a0a0a0;
}
@media (min-width: 992px) {
  .search-results .search-results__container .search-banner .search-banner__container.no-results-banner {
    padding-bottom: 100px;
  }
}
@media (max-width: 991.8px) {
  .search-results .search-results__container .search-banner .search-banner__container {
    padding: 40px 0 50px;
  }
}
.search-results .search-results__container .search-banner .search-banner__container .search-banner__heading {
  margin-top: 10px;
}
@media (max-width: 991.8px) {
  .search-results .search-results__container .search-banner .search-banner__container .search-banner__heading {
    margin-top: 30px;
  }
}
.search-results .search-results__container .search-banner .search-banner__container .search-banner__cta {
  margin-top: 30px;
}
@media (max-width: 991.8px) {
  .search-results .search-results__container .search-banner .search-banner__container .search-banner__cta {
    margin-top: 30px;
  }
}
.search-results .search-results__container .search-banner .search-banner__container.no-results-banner {
  border: none;
}

.search-results:has(.no-results-banner) .search-results__container {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .home_page .card-swipper-section .card__content {
    padding: 20px 0px 0px;
  }
}
@media (max-width: 991.8px) {
  .home_page .card-swipper-section {
    padding-top: 40px;
  }
}
@media (max-width: 991.8px) {
  .home_page .two_col_wrapper .two_col_content h3 {
    padding-top: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1800px) {
  .home_page .media-banner-with-content__media-container {
    height: auto;
  }
}
.home_page .img_left a:hover,
.home_page .img_right a:hover {
  background: rgba(254, 234, 173, 0.8666666667) !important;
  color: #212322 !important;
  border-color: rgba(254, 234, 173, 0.8666666667) !important;
}
@media (max-width: 991.8px) {
  .home_page .fp-similar-units {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.privacy-policy .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content {
  gap: 40px;
}
@media (min-width: 992px) {
  .privacy-policy .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content {
    gap: 100px;
    max-width: 824px;
  }
}
.privacy-policy .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__paragraph ul {
  padding-left: 25px;
}

.contact .contact-tag {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 992px) {
  .contact .contact-tag {
    font-weight: 500;
    font-size: 22px;
  }
}
.contact .resources-two-col-container .heading_level_three {
  text-align: center;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 400;
  font-size: 36px;
}
@media (min-width: 992px) {
  .contact .resources-two-col-container .heading_level_three {
    font-size: 56px;
  }
}
.contact .heading_level_five {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-top: 26px;
}
@media (min-width: 992px) {
  .contact .heading_level_five {
    font-size: 24px;
  }
}
.contact .paragraph {
  text-align: center;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 992px) {
  .contact .paragraph {
    font-size: 20px;
  }
}
.contact .paragraph a {
  text-decoration: underline;
  color: #b79555;
}
.contact .resources-two-col-container a:hover {
  color: #212322 !important;
}
@media (max-width: 991.8px) {
  .contact .banner.noimage {
    padding: 40px 24px;
  }
}
@media (max-width: 991.8px) {
  .contact .banner.noimage .banner__text-container * {
    margin: 0px;
  }
}
@media (max-width: 991.8px) {
  .contact .banner.noimage .banner__text-container {
    gap: 30px;
  }
}
.contact .hsl-form__container .submitted-message {
  text-align: center;
}

.contact main .resources-two-col-container.contact-form .resources-left-section #contact_form_container .submitted-message p span {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
}
.contact main .resources-two-col-container.contact-form .resources-left-section #contact_form_container form .hs_submit .actions input:hover {
  background-color: var(--_twocol-form-hubspot-cta-button-hovered-background-color);
  color: var(--_twocol-form-hubspot-cta-button-hovered-label-color);
  border-color: var(--_twocol-form-hubspot-cta-button-hovered-border-color);
}

@media (max-width: 991.8px) {
  .resource-thank-you .card-swipper-section {
    padding-top: 0;
  }
}
.resource-thank-you .card-swipper-grid .cs-grid-wrapper {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media (max-width: 991.8px) {
  .resource-thank-you .card-swipper-grid .cs-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 0;
  }
}
.resource-thank-you .card-swipper-grid .cs-grid-wrapper .default-thumb {
  height: 26vw;
  max-height: 375px;
  min-height: 221px;
  width: 100%;
  background-color: #b79555;
  background-image: url("../images/paseo.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
}
.resource-thank-you .card-swipper-grid .cs-grid-wrapper .card__content .card__link {
  font-size: 22px;
}
.resource-thank-you .card-swipper-header h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
}
@media (max-width: 991.8px) {
  .resource-thank-you .card-swipper-header {
    gap: 0;
  }
}
.resource-thank-you .grid_book-a-tour {
  column-gap: 80px;
}
.resource-thank-you .grid_book-a-tour.img_left {
  flex-direction: row;
}
.resource-thank-you .grid_book-a-tour.img_right {
  flex-direction: row-reverse;
}
@media (max-width: 991.8px) {
  .resource-thank-you .grid_book-a-tour {
    flex-direction: column-reverse !important;
    column-gap: 0;
    row-gap: 40px;
  }
}
.resource-thank-you .grid_book-a-tour .grid_item_image {
  margin-bottom: 0;
}
.resource-thank-you .grid_book-a-tour .grid_item {
  width: calc(50% - 40px);
}
@media (max-width: 991.8px) {
  .resource-thank-you .grid_book-a-tour .grid_item {
    width: 100%;
  }
}
.resource-thank-you .grid_book-a-tour .grid_item img {
  aspect-ratio: 599/375;
}
.resource-thank-you .grid_book-a-tour .grid_item > a {
  display: inline-block;
  margin-top: 41px;
}
@media (max-width: 991.8px) {
  .resource-thank-you .grid_book-a-tour .grid_item > a {
    margin-top: 30px;
  }
}
.resource-thank-you .grid_book-a-tour .grid_item h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
}
@media (max-width: 991.8px) {
  .resource-thank-you .grid_book-a-tour .grid_item h2 {
    margin-bottom: 30px;
  }
}
.resource-thank-you .grid_book-a-tour .grid_item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23.04px;
  letter-spacing: 0.01em;
}
.resource .grid_book-a-tour {
  column-gap: 80px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour {
    column-gap: 0;
    row-gap: 20px;
    padding: 40px 20px;
  }
}
.resource .grid_book-a-tour .grid_item {
  width: calc(50% - 40px);
  text-align: left;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item {
    width: 100%;
  }
}
.resource .grid_book-a-tour .grid_item h1 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
  margin-bottom: 41px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item h1 {
    font-size: 30px;
    line-height: 33.63px;
    letter-spacing: 0px;
  }
}
.resource .grid_book-a-tour .grid_item img {
  margin-bottom: 12px;
  height: fit-content;
  width: fit-content;
  object-fit: initial;
  object-position: initial;
  max-height: 700px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item img {
    margin-bottom: 15px;
  }
}
.resource .grid_book-a-tour .grid_item .wp-element-caption,
.resource .grid_book-a-tour .grid_item .caption {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  margin: 12px 0px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item .wp-element-caption,
  .resource .grid_book-a-tour .grid_item .caption {
    margin: 15px 0px;
  }
}
.resource .grid_book-a-tour .grid_item iframe {
  margin-bottom: 40px;
  margin-top: 24px;
}
.resource .grid_book-a-tour .grid_item .wp-block-image {
  margin-bottom: 40px;
}
.resource .grid_book-a-tour .grid_item .wp-block-image.size-full {
  width: 100%;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item .wp-block-image {
    margin-bottom: 30px;
  }
}
.resource .grid_book-a-tour .grid_item .wp-block-post-featured-image {
  margin-bottom: 41px;
}
.resource .grid_book-a-tour .grid_item .wp-block-post-featured-image img {
  width: 100%;
}
.resource .grid_book-a-tour .grid_item p {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item p {
    margin-bottom: 20px;
  }
}
.resource .grid_book-a-tour .grid_item > ul {
  padding-left: 25px;
  padding-top: 15px;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item > ul {
    margin-bottom: 20px;
    padding-left: 25px;
  }
}
.resource .grid_book-a-tour .grid_item > ul li {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0.01em;
}
.resource .grid_book-a-tour .grid_item > ul li .hs-form-booleancheckbox-display {
  cursor: pointer;
}
.resource .grid_book-a-tour .grid_item > ul li .hs-form-booleancheckbox-display .hs-input {
  width: 12px !important;
  height: 12px;
  border: 0.5px solid #a0a0a0;
  background-color: #f8f7f1;
  accent-color: #212322;
  margin-right: 8px;
}
.resource .grid_book-a-tour .grid_item.grid_item_form {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.8px) {
  .resource .grid_book-a-tour .grid_item.grid_item_form {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
  }
}
.resource .grid_book-a-tour .grid_item.grid_item_form form .form-columns-1:has(.hs_utm_source_rambler),
.resource .grid_book-a-tour .grid_item.grid_item_form form .form-columns-1:has(.hs_utm_term),
.resource .grid_book-a-tour .grid_item.grid_item_form form .form-columns-1:has(.hs_utm_campaign),
.resource .grid_book-a-tour .grid_item.grid_item_form form .form-columns-1:has(.hs_utm_content),
.resource .grid_book-a-tour .grid_item.grid_item_form form .form-columns-1:has(.hs_utm_medium) {
  display: none;
}

body.resource .footer__container {
  grid-template-areas: "copyright_last copyright_last copyright_last copyright_last copyright_last";
  grid-template-columns: 1fr 1fr 1fr 1fr max-content;
  grid-template-rows: auto;
}
body.resource .footer .footer__contact,
body.resource .footer .footer__contact-info,
body.resource .footer .footer__seperator,
body.resource .footer .footer__links,
body.resource .footer .footer__promo,
body.resource .footer .footer__social-media,
body.resource .footer .footer__site-maintenance {
  display: none;
}

@media (min-width: 992px) {
  .amenities .media-banner-with-content[data-media-type=none] .media-banner-with-content__container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
.amenities .two_col_wrapper .btn:hover, .amenities .two_col_wrapper .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .amenities .two_col_wrapper input[type=submit]:hover,
.amenities .two_col_wrapper .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .amenities .two_col_wrapper input[type=submit]:hover {
  background-color: #f7efd8 !important;
  color: #212322 !important;
}

@media (min-width: 992px) {
  body.amenities #mainContent > section.banner:not(:first-of-type) {
    min-height: 771px;
  }
}
@media (min-width: 992px) {
  body.amenities #mainContent > section.banner:not(:first-of-type) .banner__text-container {
    max-height: 771px;
    min-height: 771px;
  }
}

.fp-detail-page {
  padding-top: 40px;
}
@media (max-width: 991.8px) {
  .fp-detail-page {
    margin-top: 0px;
    padding-top: 20px;
  }
}
.fp-detail-page .fp-detail-wrapper {
  display: flex;
  gap: 94px;
  padding: 40px 5.56vw;
  justify-content: space-between;
  --_fp-details-apply-now-cta-button-label-color: var(--fp-details-apply-now-cta-button-label-color, #f8f7f1);
  --_fp-details-apply-now-cta-button-background-color: var(--fp-details-apply-now-cta-button-background-color, #b79555);
  --_fp-details-apply-now-cta-button-border-color: var(--fp-details-apply-now-cta-button-border-color, tan);
  --_fp-details-apply-now-cta-button-hovered-background-color: var(--fp-details-apply-now-cta-button-hovered-background-color, ebony);
  --_fp-details-apply-now-cta-button-hovered-label-color: var(--fp-details-apply-now-cta-button-hovered-label-color, #f8f7f1);
  --_fp-details-apply-now-cta-button-hovered-border-color: var(--fp-details-apply-now-cta-button-hovered-border-color, #212322);
  --_fp-details-other-cta-button-label-color: var(--fp-details-other-cta-button-label-color, #212322);
  --_fp-details-other-cta-button-background-color: var(--fp-details-other-cta-button-background-color, transparent);
  --_fp-details-other-cta-button-border-color: var(--fp-details-other-cta-button-border-color, #212322);
  --_fp-details-other-cta-button-hovered-background-color: var(--fp-details-other-cta-button-hovered-background-color, #212322);
  --_fp-details-other-cta-button-hovered-label-color: var(--fp-details-other-cta-button-hovered-label-color, #f8f7f1);
  --_fp-details-other-cta-button-hovered-border-color: var(--fp-details-other-cta-button-hovered-border-color, #212322);
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper {
    flex-direction: column;
    padding: 0px 20px;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-left-section {
  width: 54.59vw;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-left-section {
    width: 100%;
  }
}
@media (min-width: 3000px) {
  .fp-detail-page .fp-detail-wrapper .fp-left-section {
    width: calc(100% - 700px);
  }
}
.fp-detail-page .fp-detail-wrapper .fp-left-section .heading_level_four {
  text-align: center;
  margin-bottom: 10px;
}
.fp-detail-page .fp-detail-wrapper .fp-right-section {
  width: 27.778vw;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-right-section {
    width: 100%;
  }
}
@media (min-width: 3000px) {
  .fp-detail-page .fp-detail-wrapper .fp-right-section {
    width: 700px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider-container {
  display: flex;
  width: 100%;
  gap: 40px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider-container {
    gap: 0px;
    flex-direction: column-reverse;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-text {
  margin-top: 60px;
  padding: 60px;
  background-color: #f7efd8;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text {
    margin-top: 40px;
    padding: 30px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-text .paragraph,
.fp-detail-page .fp-detail-wrapper .fp-text p {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 22px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text .paragraph,
  .fp-detail-page .fp-detail-wrapper .fp-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    margin-top: 0;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text .heading_level_four {
    font-weight: 400;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0%;
    margin-bottom: 30px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-text iframe {
  width: 100%;
  margin-top: 20px;
  max-width: 915px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  aspect-ratio: 16/9;
  height: auto !important;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detail-wrapper .fp-text iframe {
    min-height: 238px;
  }
}
@media (min-width: 1400px) {
  .fp-detail-page .fp-detail-wrapper .fp-text iframe {
    min-height: 320px;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text iframe {
    margin-top: 10px;
    min-height: 165px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider {
  position: relative;
  width: auto;
  min-width: 100px;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12.38px;
  height: 100%;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 18px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider.mob {
  margin-bottom: 25px;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-list,
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-track {
  min-height: 100%;
}
.fp-detail-page .fp-detail-wrapper .fp-slider.disable-transform .slick-track {
  top: 0 !important;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider.disable-transform .slick-track {
    left: 0 !important;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider .slick-slide {
    margin-bottom: 0px;
    margin-top: 0px;
    margin-right: 10px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider .slick-slide img {
    aspect-ratio: 1.387387299;
    min-width: 150px;
    min-height: 108px;
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow {
  display: block !important;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-image: url("../images/down_ebony.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 8px;
  margin: 0 auto;
  cursor: pointer;
  padding: 5px;
  background-position: center center;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow:focus-visible {
  outline: 1px solid #c47e5a;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow.slick-disabled {
  cursor: default;
  background-image: url("../images/down_half_ebony.svg");
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow.slick-prev {
    position: absolute;
    left: -4px;
    transform: rotate(90deg);
    top: calc(50% - 8px);
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow.slick-next {
    position: absolute;
    right: -4px;
    transform: rotate(270deg);
    top: calc(50% - 8px);
  }
}
.fp-detail-page .fp-detail-wrapper .fp-slider .fp-slick {
  opacity: 0.6;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .fp-slick.slick-current {
  opacity: 1;
}
.fp-detail-page .fp-detail-wrapper .slider-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .slider-preview {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 300px;
  }
}
.fp-detail-page .fp-detail-wrapper .slider-preview > *:last-child {
  margin-bottom: 0;
}
.fp-detail-page .fp-detail-wrapper .slider-preview .slider-preview-container {
  width: 100%;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detail-wrapper .slider-preview .slider-preview-container {
    padding: 20px;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .slider-preview .slider-preview-container img {
    height: 298px;
    aspect-ratio: 77/65;
  }
}
.fp-detail-page .fp-detail-wrapper .slider-preview img,
.fp-detail-page .fp-detail-wrapper .slider-preview video,
.fp-detail-page .fp-detail-wrapper .slider-preview iframe {
  width: 100%;
  max-height: 470px;
  aspect-ratio: 1.182978723;
  object-fit: contain;
}
.fp-detail-page .fp-detail-wrapper .slider-preview #wistia-link,
.fp-detail-page .fp-detail-wrapper .slider-preview #wistia-embedded {
  width: 100%;
  display: flex;
  align-content: flex-end;
  align-items: center;
}
.fp-detail-page .fp-detail-wrapper .slider-preview #wistia-link wistia-player,
.fp-detail-page .fp-detail-wrapper .slider-preview #wistia-embedded wistia-player {
  width: 100%;
  max-width: 1040px;
  height: auto;
  max-height: unset;
  margin: 0px auto;
}
.fp-detail-page .fp-detail-wrapper .slider-preview .caption {
  font-weight: 300;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .slider-preview .caption {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.fp-detail-page .fp-detail-wrapper .slider-preview .col_heading.mob {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}
.fp-detail-page .sold-out-badge {
  display: block;
  font-size: 34px;
  line-height: 42px;
  color: #b79555;
  max-width: max-content;
}
@media (max-width: 991.8px) {
  .fp-detail-page .sold-out-badge {
    font-size: 28px;
    line-height: 36px;
    margin-top: 8px;
  }
}
.fp-detail-page .fp-detailView .col_heading {
  margin-bottom: 21px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .col_heading {
    margin-bottom: 20px;
  }
}
.fp-detail-page .fp-detailView .heading_level_five {
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .heading_level_five {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 15px;
  }
}
.fp-detail-page .fp-detailView .heading_level_five s {
  color: #888;
}
.fp-detail-page .fp-detailView .disclaimer {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 21.6px;
  font-weight: 300;
  margin-top: 18px;
}
.fp-detail-page .fp-detailView .unit-detail {
  margin-bottom: 36px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  margin-top: 36px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-detail {
    display: flex;
    flex-wrap: wrap;
    row-gap: 17px;
    column-gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.fp-detail-page .fp-detailView .unit-detail__bed, .fp-detail-page .fp-detailView .unit-detail__bathroom, .fp-detail-page .fp-detailView .unit-detail__sqft {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-weight: 300;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-detail__bed, .fp-detail-page .fp-detailView .unit-detail__bathroom, .fp-detail-page .fp-detailView .unit-detail__sqft {
    margin-bottom: 0px;
    padding-left: 33px;
  }
}
.fp-detail-page .fp-detailView .unit-detail__bed::before, .fp-detail-page .fp-detailView .unit-detail__bathroom::before, .fp-detail-page .fp-detailView .unit-detail__sqft::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
}
.fp-detail-page .fp-detailView .unit-detail__bed::before {
  background: url("../images/Bed-Midnight.svg") center no-repeat;
  width: 23px;
  height: 19px;
  bottom: 4px;
}
.fp-detail-page .fp-detailView .unit-detail__bathroom::before {
  background: url("../images/Shower-Midnight.svg") center no-repeat;
  width: 21px;
  height: 26px;
  bottom: 2px;
}
.fp-detail-page .fp-detailView .unit-detail__sqft::before {
  background: url("../images/Ruler-Midnight.svg") center no-repeat;
  width: 21px;
  height: 21px;
  bottom: 4px;
}
.fp-detail-page .fp-detailView .download-fp {
  display: inline-flex;
  align-items: flex-end;
  color: #212322;
  font-weight: 300;
  gap: 10px;
}
.fp-detail-page .fp-detailView .download-fp svg {
  width: 18px;
  height: 18px;
  fill: #212322;
}
.fp-detail-page .fp-detailView .download-fp:hover {
  color: #b79555;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .download-fp:hover {
    color: #212322;
  }
}
.fp-detail-page .fp-detailView .download-fp:hover svg {
  fill: #b79555;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .download-fp:hover svg {
    fill: #212322;
  }
}
.fp-detail-page .fp-detailView .unit-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: fit-content;
  margin: 48px 0 40px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-button-wrapper {
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 30px;
    gap: 15px;
  }
}
.fp-detail-page .fp-detailView .unit-button-wrapper #apply_now_cta {
  color: var(--_fp-details-apply-now-cta-button-label-color);
  background-color: var(--_fp-details-apply-now-cta-button-background-color);
  border-color: var(--_fp-details-apply-now-cta-button-border-color);
}
.fp-detail-page .fp-detailView .unit-button-wrapper #apply_now_cta:hover {
  color: var(--_fp-details-apply-now-cta-button-hovered-label-color);
  background-color: var(--_fp-details-apply-now-cta-button-hovered-background-color);
  border-color: var(--_fp-details-apply-now-cta-button-hovered-border-color);
}
.fp-detail-page .fp-detailView .unit-button-wrapper .open-availability-overlay,
.fp-detail-page .fp-detailView .unit-button-wrapper .open-join-waitlist-modal {
  color: var(--_fp-details-other-cta-button-label-color);
  background-color: var(--_fp-details-other-cta-button-background-color);
  border-color: var(--_fp-details-other-cta-button-border-color);
}
.fp-detail-page .fp-detailView .unit-button-wrapper .open-availability-overlay:hover,
.fp-detail-page .fp-detailView .unit-button-wrapper .open-join-waitlist-modal:hover {
  color: var(--_fp-details-other-cta-button-hovered-label-color) !important;
  background-color: var(--_fp-details-other-cta-button-hovered-background-color) !important;
  border-color: var(--_fp-details-other-cta-button-hovered-border-color) !important;
}
.fp-detail-page .fp-detailView .unit-button-wrapper .transparent_btn {
  color: var(--_fp-details-other-cta-button-label-color);
  background-color: var(--_fp-details-other-cta-button-background-color);
  border-color: var(--_fp-details-other-cta-button-border-color);
}
.fp-detail-page .fp-detailView .unit-button-wrapper .transparent_btn:hover {
  color: var(--_fp-details-other-cta-button-hovered-label-color) !important;
  background-color: var(--_fp-details-other-cta-button-hovered-background-color) !important;
  border-color: var(--_fp-details-other-cta-button-hovered-border-color) !important;
}
.fp-detail-page .fp-detailView .unit-button-wrapper .btn, .fp-detail-page .fp-detailView .unit-button-wrapper .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input[type=submit],
.fp-detail-page .fp-detailView .unit-button-wrapper .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input[type=submit] {
  padding: 10px 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detailView .unit-button-wrapper .btn, .fp-detail-page .fp-detailView .unit-button-wrapper .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input[type=submit],
  .fp-detail-page .fp-detailView .unit-button-wrapper .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input[type=submit] {
    padding: 15px 20px;
  }
}
.fp-detail-page .fp-detailView .unit-button-wrapper #schedule-tour-popup-button {
  height: 39px;
  line-height: 11px;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detailView .unit-button-wrapper #schedule-tour-popup-button {
    padding: 13.5px 36px 14.5px;
    height: 41px;
  }
}
.fp-detail-page .fp-detailView .unit-accordion {
  overflow: hidden;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detailView .unit-accordion {
    margin: 20px 0px;
  }
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-item {
  border-top: unset;
  padding: 0px;
  border-bottom: 1px solid #B4B29B;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-header {
  padding: 20px 0px;
  font-size: 24px;
  line-height: 26.9px;
  letter-spacing: 0px;
  color: #212322;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-accordion .accordion-header {
    font-size: 20px;
    line-height: 100%;
  }
}
.fp-detail-page .fp-detailView .unit-accordion svg {
  width: 14px;
  height: 14px;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content {
  padding: 2px 34px 0px 0px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1%;
  color: #212322;
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-accordion .accordion-content {
    font-size: 16px;
  }
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ul {
  margin: 0;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content p {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ul,
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ol {
  margin: 0;
}
@media (min-width: 992px) {
  .fp-detail-page .fp-detailView .unit-accordion .accordion-content ul,
  .fp-detail-page .fp-detailView .unit-accordion .accordion-content ol {
    padding-left: 20px;
  }
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ul li,
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ol li {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content.open {
  height: auto;
  padding: 0px 0px 20px;
  border-bottom: 1px solid #212322;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content p {
  margin-bottom: 10px;
}
.fp-detail-page .fp-detailView .badge-wrapper {
  margin-bottom: 20px;
}
.fp-detail-page .media-banner-with-content {
  margin-top: 40px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .media-banner-with-content {
    margin-top: 30px;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .media-banner-with-content__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px);
    padding: 30px;
  }
}
.fp-detail-page .media-banner-with-content__container .media-banner-with-content__media {
  padding: 0;
}
@media (min-width: 992px) {
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__media-container {
    height: auto;
  }
}
@media (min-width: 992px) {
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__video-container {
    max-width: 100%;
  }
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__video-container wistia-player {
    max-width: 1256px;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__video-container wistia-player:focus-visible {
    outline: 1px solid #f8f7f1;
    outline-offset: 5px;
  }
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__video-container wistia-player[media-id="6glneax8ux"] {
    aspect-ratio: 2.13/1;
  }
}
@media (min-width: 3000px) {
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__video-container {
    max-height: 100%;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__content {
    margin-bottom: 30px;
  }
}
.fp-detail-page .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__heading {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 80px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .media-banner-with-content__container .media-banner-with-content__content .media-banner-with-content__heading {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.fp-detail-page .amenities_list_wrapper {
  padding: 40px 13.88vw;
}
@media (max-width: 991.8px) {
  .fp-detail-page .amenities_list_wrapper {
    padding: 30px 20px 30px;
  }
}
.fp-detail-page .amenities_list_wrapper .main-heading-wrapper .heading_level_two {
  font-size: 42px;
  line-height: 100%;
}
@media (max-width: 991.8px) {
  .fp-detail-page .amenities_list_wrapper .main-heading-wrapper .heading_level_two {
    font-size: calc(30px + 12 * (100vw - 393px) / 1047);
  }
}
@media screen and (max-width: 991px) {
  .fp-detail-page .amenities_list_wrapper .main-heading-wrapper .heading_level_two {
    margin-bottom: 40px;
  }
}
.fp-detail-page .amenities_list_wrapper .main-heading-wrapper .paragraph {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 991.8px) {
  .fp-detail-page .amenities_list_wrapper .main-heading-wrapper .paragraph {
    margin-bottom: 30px;
  }
}
.fp-detail-page .amenities_list_wrapper .column_wrapper {
  column-gap: 40px;
  row-gap: 80px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .amenities_list_wrapper .column_wrapper {
    column-gap: 0px;
    row-gap: 30px;
  }
}
.fp-detail-page .grid_bordered_list {
  padding: 80px 6.39vw 40px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .grid_bordered_list {
    padding: 30px 20px 20px;
  }
}
.fp-detail-page .grid_bordered_list .col-bordered-list .heading_level_two {
  font-size: 42px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .grid_bordered_list .col-bordered-list .heading_level_two {
    font-size: 30px;
  }
}
.fp-detail-page .slick-slider {
  touch-action: pan-y pinch-zoom;
}

.fp-video-section {
  width: 100%;
  padding: 80px;
  background-color: #b79555;
  margin-top: 80px;
}
.fp-video-section .heading_level_two {
  text-align: center;
  color: #f8f7f1;
  margin-bottom: 80px;
  font-family: "RecklessNeue-Light", sans-serif;
}
.fp-video-section video {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: calc(100vh - 300px);
  min-height: 400px;
  object-fit: cover;
}

.fp-design-feature-section {
  padding: 80px 6.39vw;
  display: flex;
  gap: 80px;
}
.fp-design-feature-section .design-feature-list {
  width: 40%;
}
.fp-design-feature-section .design-feature-list .heading_level_two {
  margin-bottom: 40px;
  color: #212322;
}
.fp-design-feature-section .design-feature-list ul {
  list-style: none;
}
.fp-design-feature-section .design-feature-list ul li {
  padding: 12px 0px;
  color: #212322;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
}
.fp-design-feature-section img {
  width: 60%;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 400px;
}

.badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 14px;
  max-width: 400px;
}
.badge-wrapper.mob {
  display: none !important;
}
@media (max-width: 991.8px) {
  .badge-wrapper.mob {
    display: flex !important;
  }
}
@media (max-width: 991.8px) {
  .badge-wrapper {
    margin-bottom: 12px;
    max-width: 100%;
  }
}
.badge-wrapper .badge {
  display: inline-block;
  padding: 0px 6px;
  margin-bottom: 6px;
  margin-right: 6px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.03em;
  border-radius: 2px;
  word-break: break-word;
  border: 1px solid #f8f7f1;
  text-transform: uppercase;
  max-width: max-content;
}
.badge-wrapper .badge > span {
  display: inline;
}
.badge-wrapper .badge:nth-last-child {
  margin-bottom: 0;
}
@media (max-width: 991.8px) {
  .badge-wrapper .badge {
    margin-bottom: 4px;
    margin-right: 4px;
  }
  .badge-wrapper .badge:nth-last-child {
    margin-bottom: 0;
  }
}

.similar-unit-contents {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  margin-top: auto;
}

.fp-text-block {
  padding: 40px max(5.56vw, (100vw - 1040px) / 2);
  color: #212322;
  font-family: "RecklessNeue-Light", sans-serif;
}
@media (max-width: 991.8px) {
  .fp-text-block {
    padding: 40px 20px;
  }
}
.fp-text-block .heading_level_two {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 991.8px) {
  .fp-text-block .heading_level_two {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.fp-text-block .paragraph {
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
}
@media (max-width: 991.8px) {
  .fp-text-block .paragraph {
    font-size: 18px;
    line-height: 22px;
  }
}
.fp-text-block .text-two-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 0;
}
@media (max-width: 991.8px) {
  .fp-text-block .text-two-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding: 30px 0 0 0;
  }
}
.fp-text-block .text-two-block div {
  padding: 40px 0 0;
}
@media (max-width: 991.8px) {
  .fp-text-block .text-two-block div {
    padding: 0px;
  }
}
.fp-text-block .text-two-block div .heading_level_four {
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
@media (max-width: 991.8px) {
  .fp-text-block .text-two-block div .heading_level_four {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.fp-text-block .text-two-block div .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
}
@media (max-width: 991.8px) {
  .fp-text-block .text-two-block div .paragraph {
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1%;
  }
}

.availability-overlay,
.join_waitlist_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 35, 34, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.availability-overlay .availability-overlay_close,
.availability-overlay .join_waitlist_close,
.join_waitlist_modal .availability-overlay_close,
.join_waitlist_modal .join_waitlist_close {
  position: absolute;
  right: 93px;
  top: 54.94px;
  font-size: 0;
  width: 30x;
  height: 30px;
  background-image: url("../images/close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .availability-overlay .availability-overlay_close,
  .availability-overlay .join_waitlist_close,
  .join_waitlist_modal .availability-overlay_close,
  .join_waitlist_modal .join_waitlist_close {
    width: 13px;
    height: 13px;
    right: 25px;
    top: 26px;
  }
}

.availability-overlay .availability-overlay_content {
  background: #f8f7f1;
  max-width: 75vw;
  min-width: 950px;
  width: 100%;
  position: relative;
  overflow-y: auto;
  max-height: 60vh;
}
@media (max-width: 991.8px) {
  .availability-overlay .availability-overlay_content {
    max-width: 96.43vw;
    max-height: 70vh;
    min-width: auto;
  }
}
.availability-overlay .availability-overlay_content table thead {
  position: sticky;
  top: 0;
}
.availability-overlay table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.availability-overlay table th,
.availability-overlay table td {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.availability-overlay table th {
  background: #b79555;
  color: #f8f7f1;
  padding: 18.5px 50px;
  text-align: center;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  margin-bottom: 80px;
}
@media (max-width: 991.8px) {
  .availability-overlay table th {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
    padding: 10px 20px;
  }
}
@media (max-width: 575.8px) {
  .availability-overlay table th {
    font-size: 14px;
    padding: 10px 6px;
  }
}
.availability-overlay table td {
  padding: 0px 0px 20px 0px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  color: #212322;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 991.8px) {
  .availability-overlay table td {
    padding: 0px 0px 5px 0px;
  }
}
.availability-overlay table td:first-child {
  padding-left: 24px;
}
@media (max-width: 991.8px) {
  .availability-overlay table td:first-child {
    padding-left: 16px;
  }
}
.availability-overlay table td:last-child {
  padding-right: 24px;
}
@media (max-width: 991.8px) {
  .availability-overlay table td:last-child {
    padding-right: 16px;
  }
}
@media (max-width: 575.8px) {
  .availability-overlay table td {
    font-size: 14px;
  }
}
.availability-overlay table td .transparent_btn {
  border-color: #212322;
  color: #212322;
  padding: 15px 20px;
  height: 41px;
  display: inline-block;
  border-width: 3px;
}
.availability-overlay table td .transparent_btn:active, .availability-overlay table td .transparent_btn:hover {
  background-color: #212322;
  border: 3px solid #212322;
  color: #f8f7f1;
}
@media (max-width: 575.8px) {
  .availability-overlay table td .transparent_btn {
    border-width: 2px;
    height: auto;
    font-size: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 991.8px) {
  .availability-overlay table td {
    padding: 25px 20px;
  }
}
@media (max-width: 575.8px) {
  .availability-overlay table td {
    padding: 18px 6px;
  }
}
.availability-overlay table tr:first-child td {
  padding-top: 16px;
}
.availability-overlay table tr:last-child td {
  padding-bottom: 16px;
}

.join_waitlist_modal .join-list-form-content {
  background: #f8f7f1;
  position: relative;
  padding: 30px;
  width: 660px;
  max-width: 100%;
  margin: 20px 20px;
  overflow-y: auto;
  max-height: 70vh;
}
.join_waitlist_modal .join-list-form-content h4 {
  text-align: center;
  padding: 30px 0 30px;
  max-width: 410px;
  margin: 0 auto;
  font-size: 32px;
  outline: none;
}
@media (max-width: 991.8px) {
  .join_waitlist_modal .join-list-form-content h4 {
    font-size: 26px;
  }
}
.join_waitlist_modal .join-list-form-content .hbspt-form {
  padding: 10px;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .hs-form-field label {
  color: #212322;
  padding-bottom: 24px;
}
.join_waitlist_modal .join-list-form-content .hbspt-form input[type=text].hs-input.hs-input, .join_waitlist_modal .join-list-form-content .hbspt-form input[type=email].hs-input.hs-input, .join_waitlist_modal .join-list-form-content .hbspt-form input[type=tel].hs-input.hs-input, .join_waitlist_modal .join-list-form-content .hbspt-form select.hs-input.hs-input {
  color: #212322;
  font-size: 16px;
  border-color: #a0a0a0;
  font-family: "RecklessNeue-Regular", sans-serif;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .hs-submit input[type=submit] {
  margin: 0 auto;
  background-color: #212322;
  border: 1.5px solid #212322;
  color: #ffffff;
  padding: 13.5px 36px 14.5px;
  height: 41px;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .hs-submit input[type=submit]:hover, .join_waitlist_modal .join-list-form-content .hbspt-form .hs-submit input[type=submit]:active {
  background-color: #b79555;
  border: 1.5px solid #b79555;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .hs-error-msgs {
  margin: 0;
  padding-top: 4px;
  font-size: 12px;
  color: red;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .hs-error-msgs .hs-error-msg {
  font-size: 12px;
  color: red;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .submitted-message {
  padding: 0 40px;
}
.join_waitlist_modal .join-list-form-content .hbspt-form .submitted-message span {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #212322 !important;
}

body.individual-fp .breadcrumb__list-item::after {
  content: ">";
  margin: 0 5px;
}
@media (max-width: 991.8px) {
  body.individual-fp .breadcrumb__list-item::after {
    margin: 0 7px;
  }
}
@media (max-width: 991.8px) {
  body.individual-fp .fp-similar-units {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991.8px) {
  body.individual-fp .fp-detail-wrapper {
    margin-bottom: 0;
  }
}

.fp-no-similar-units {
  padding: 20px;
  background-color: #f8f7f1;
}
@media (max-width: 991.8px) {
  .fp-no-similar-units {
    padding: 20px;
  }
}

.fp-not-found-wrapper {
  padding: 80px 6.39vw;
}
@media (max-width: 991.8px) {
  .fp-not-found-wrapper {
    padding: 80px 20px;
  }
}
.fp-not-found-wrapper .fp-not-found-content h2 {
  max-width: 800px;
  margin: 0 auto;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  text-align: center;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.fp-not-found-wrapper .fp-not-found-content h2 {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .fp-not-found-wrapper .fp-not-found-content h2 {
    font-size: calc(30px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-not-found-wrapper .fp-not-found-content h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .fp-not-found-wrapper .fp-not-found-content h2 {
    font-size: 42px;
  }
}

.penthouses .banner__text-container .banner-h2 {
  max-width: 600px;
}
@media (max-width: 991.8px) {
  .penthouses .banner__text-container .banner-h2 {
    max-width: 457px;
  }
}
@media (max-width: 767.8px) {
  .penthouses .banner__text-container .banner-h2 {
    max-width: 444px;
  }
}
@media (max-width: 575.8px) {
  .penthouses .banner__text-container .banner-h2 {
    max-width: 390px;
  }
}
.penthouses .grid_two_col_wrapper {
  padding: 80px 6.39vw 60px;
}
@media (max-width: 991.8px) {
  .penthouses .grid_two_col_wrapper {
    padding: 20px;
  }
}
.penthouses .guidelines_wrapper p {
  font-size: 18px;
}
.penthouses .guidelines_wrapper .main-heading-wrapper h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
@media (min-width: 1400px) {
  .penthouses .guidelines_wrapper .main-heading-wrapper h2 {
    margin-bottom: 40px;
    font-size: 42px;
  }
}
@media (min-width: 390px) {
  .penthouses .guidelines_wrapper .main-heading-wrapper h2 {
    font-size: calc(30px + 12 * (100vw - 393px) / 1047);
  }
}
.penthouses .guidelines_wrapper .main-heading-wrapper p {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 991.8px) {
  .penthouses .guidelines_wrapper .main-heading-wrapper p {
    margin-bottom: 30px;
  }
}
.penthouses .image-two-content-block__content-slider-controls--prev svg,
.penthouses .image-two-content-block__content-slider-controls--next svg {
  stroke: #ffffff;
  fill: #ffffff;
}
.penthouses .faq-accordion__title {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .penthouses .faq-accordion__title {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .penthouses .faq-accordion__title {
    font-size: 56px;
  }
}
@media (max-width: 991.8px) {
  .penthouses .availability-wrapper p {
    font-size: 18px;
  }
}
.penthouses .availability-wrapper a.btn {
  border-color: #f8f7f1 !important;
}
.penthouses .availability-wrapper a.btn:hover {
  background-color: rgba(254, 234, 173, 0.8666666667) !important;
  color: #212322 !important;
  border-color: rgba(254, 234, 173, 0.8666666667) !important;
}
.penthouses .fp-similar-units {
  padding: 0 5.55vw 75px 5.55vw;
}
@media (max-width: 991.8px) {
  .penthouses .fp-similar-units {
    padding: 35px 20px 75px 20px;
  }
}
@media (max-width: 991.8px) {
  .penthouses .two_col_wrapper .two_col_img img.bottom_left {
    object-position: center 25% !important;
  }
}
@media (min-width: 992px) {
  .penthouses .faq-accordion__container .faq-accordion__panel {
    width: 809px;
    max-width: 56vw;
    margin: 0 auto;
  }
}
.penthouses .image-two-content-block__content-heading {
  max-width: 100%;
}
.penthouses .banner__text-container .banner-h2 {
  margin: 30px 0;
}
.penthouses .banner__text-container a.btn {
  margin-top: 40px;
}
.penthouses .banner__text-container a.btn:hover {
  background-color: #b79555 !important;
  color: #f8f7f1 !important;
  border-color: #b79555 !important;
}
.penthouses .image-two-content-block__content .btn.top_right:hover, .penthouses .image-two-content-block__content .hbspt-form .hs-submit input.top_right[type=submit]:hover, .hbspt-form .hs-submit .penthouses .image-two-content-block__content input.top_right[type=submit]:hover,
.penthouses .image-two-content-block__content .hs-form .hs-submit input.top_right[type=submit]:hover,
.hs-form .hs-submit .penthouses .image-two-content-block__content input.top_right[type=submit]:hover {
  background-color: rgba(254, 234, 173, 0.8666666667) !important;
  color: #212322 !important;
  border-color: rgba(254, 234, 173, 0.8666666667) !important;
}
@media (min-width: 3000px) {
  .penthouses .similar-units-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.terms-conditions .media-banner-with-content h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  margin-bottom: 1rem;
  line-height: 1;
  color: #212322;
}
.terms-conditions .media-banner-with-content p {
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  color: #212322;
  letter-spacing: 0.01em;
}

.siteplan main .inner-banner {
  padding: 7.63vw 7.08vw;
}
@media (max-width: 991.8px) {
  .siteplan main .inner-banner {
    padding: 40px 20px;
  }
}
.siteplan main .inner-banner::after {
  display: none;
}
.siteplan main .floorplan-search .floorplan-search__container {
  padding: 40px 6.45vw;
  margin: 0;
}
@media (max-width: 1024px) {
  .siteplan main .floorplan-search .floorplan-search__container {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.siteplan main .floorplan-search .floorplan-search__container::after {
  display: none;
}
.siteplan main .floorplan-search .floorplan-search__container .floorplan-search__tabs {
  width: 100%;
  border-bottom: 1px solid #212322;
  gap: 10px;
}
.siteplan main .floorplan-search .floorplan-search__container .floorplan-search__tabs button {
  padding: 20px 10px;
  border: none;
  border-bottom: 3px solid transparent;
}
.siteplan main .floorplan-search .floorplan-search__container .floorplan-search__tabs button.active {
  border-bottom: 3px solid #212322;
  background-color: transparent;
  color: #212322;
}
.siteplan main .siteplan-section .custom-siteplan__container {
  padding: 50px 6.45vw;
}
@media (max-width: 991.8px) {
  .siteplan main .siteplan-section .custom-siteplan__container {
    padding: 30px 20px;
  }
}
.siteplan main .siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__label, .siteplan main .siteplan-section .custom-siteplan__container .select-floor-wrap .selectivo .selectivo__option {
  text-transform: capitalize;
  font-family: "acumin-pro", sans-serif;
}

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