:root {
  /* Fonts */
  /* Colors */
  /* Gutter */
}

/*transform origin*/
/**
 * 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;
}

/* 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: 16px;
  color: #f8f7f1;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  white-space: nowrap;
  cursor: pointer;
}
.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;
}

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

.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;
  }
}
.parallax-wrapper {
  position: relative;
}

.normal-parallax {
  position: absolute;
}
@media (max-width: 991.8px) {
  .normal-parallax {
    height: 120% !important;
  }
}

.zoom-parallax {
  object-position: center center;
}

.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;
}

.header {
  position: relative;
  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;
  /* Sticky header */
  /* Slide menu styles */
}
@media (min-width: 992px) {
  .header {
    padding-top: 40px;
    padding-bottom: 31px;
    padding-left: 5.56vw;
    padding-right: 5.56vw;
  }
}
.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: 36px;
  }
}
@media (min-width: 1400px) {
  .header__nav-wrapper {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "tel logo links" "nav nav nav";
  }
}
.header__logo {
  grid-area: logo;
  place-self: center;
}
.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: 50px;
  }
}
.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 {
    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: 9.5px 23px 11.5px;
  color: var(--button-text-color, #f8f7f1);
  background-color: var(--button-background-color, #b79555);
  line-height: 1;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0.367px;
}
@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: 11px 36px 12px;
  }
}
.header__links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  padding: 9.5px 23px 11.5px;
  letter-spacing: 0.367px;
}
@media (min-width: 992px) {
  .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    border-bottom-left-radius: 20px;
    padding: 11px 34px 12px 38px;
  }
}
.header__links .fill_btn {
  line-height: 1;
  border-color: var(--button-background-color, #b79555);
}
.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: 1px;
  border-style: solid;
  background-color: transparent;
  border-color: var(--button-text-color, #212322);
  color: var(--button-text-color, #212322);
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
}
@media (min-width: 992px) {
  .header__links .transparent_btn,
  .header__links #schedule-tour-popup-button.schedule-tour-popup-button {
    border-bottom-left-radius: 20px;
  }
}
.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: 20px;
  }
}
.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-item a, .header__nav .header__slide-menu-nav-search a {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--desktop-slide-text-color, #212322);
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__nav .menu-item a, .header__nav .header__slide-menu-nav-search a {
    color: var(--desktop-slide-text-color, #212322);
  }
}
.header__nav .menu-item a:hover, .header__nav .header__slide-menu-nav-search a:hover {
  color: #b79555;
}
.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: 10px;
  }
}
@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: 39px;
  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: 20px;
  height: 1px;
  background-color: #212322;
  margin-bottom: 5px;
  transition: all 0.8s linear;
}
.header__nav-options .menu-toggle span:last-child {
  margin-bottom: 0;
}
@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__nav-sticky {
  display: flex;
  position: fixed;
  background: #f8f7f1;
  inset: 0 0 auto 0;
  z-index: 100;
  opacity: 0;
  background: var(--header-background-gradient, none);
  background-color: var(--header-background-color, #f8f7f1);
  transform: translateY(-100%);
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out;
}
.header__nav-sticky-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .header__nav-sticky-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 5.56vw;
  }
}
.header__nav-sticky .header__nav-left {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-left {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-left {
    gap: 36px;
  }
}
.header__nav-sticky .header__nav-right {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 36px);
}
@media (min-width: 390px) {
  .header__nav-sticky .header__nav-right {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-right {
    gap: 36px;
  }
}
.header__nav-sticky .header__nav-right a {
  display: inline-block;
}
.header__nav-sticky .header__nav-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-logo-wrapper {
    width: auto;
  }
}
@media (min-width: 1400px) {
  .header__nav-sticky .header__nav-logo-wrapper {
    order: 0;
  }
}
.header__nav-sticky .header__nav-logo-wrapper picture,
.header__nav-sticky .header__nav-logo-wrapper img {
  display: inline-block;
  width: auto;
  height: 25px;
}
.header__nav-sticky .header__nav-tel {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-tel {
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__nav-sticky .header__nav-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__nav-sticky .header__nav-tel a:hover {
  color: #b79555;
}
.header__nav-sticky .header__nav-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__nav-sticky .header__nav-options .mob {
  line-height: 0;
}
@media (max-width: 389.8px) {
  .header__nav-sticky .header__nav-options .mob {
    order: 1;
  }
}
.header__nav-sticky .header__nav-options .menu-toggle {
  width: auto;
  height: 39px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: centerheader__nav-sticky;
  background: transparent;
  border-radius: 3px;
  transition: all 0.2s linear;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 389.8px) {
  .header__nav-sticky .header__nav-options .menu-toggle {
    order: 0;
  }
}
.header__nav-sticky .header__nav-options .menu-toggle span {
  width: 20px;
  margin-bottom: 5px;
  transition: all 0.8s linear;
}
.header__nav-sticky .header__nav-options .menu-toggle span:last-child {
  margin-bottom: 0;
}
.header__nav-sticky .header__cta-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__nav-sticky .header__cta-links .btn, .header__nav-sticky .header__cta-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__nav-sticky .header__cta-links input[type=submit],
.header__nav-sticky .header__cta-links .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .header__nav-sticky .header__cta-links input[type=submit] {
  background-color: var(--button-background-color, #b79555);
  color: var(--button-text-color, #f8f7f1);
  line-height: 1;
  padding: 9.5px 23px 11.5px;
  line-height: 1;
  letter-spacing: 0.367px;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__cta-links .btn, .header__nav-sticky .header__cta-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__nav-sticky .header__cta-links input[type=submit],
  .header__nav-sticky .header__cta-links .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .header__nav-sticky .header__cta-links input[type=submit] {
    padding: 11px 36px 12px;
  }
}
.header__nav-sticky .header__cta-links .fill_btn {
  border-color: var(--button-background-color, #b79555);
  padding: 9.5px 23px 11.5px;
  line-height: 1;
  letter-spacing: 0.367px;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__cta-links .fill_btn {
    padding: 11px 36px 12px;
  }
}
.header__nav-sticky .header__cta-links .fill_btn:hover {
  background-color: #212322;
  border-color: #212322;
  color: #f8f7f1;
}
.header__nav-sticky .header__cta-links .transparent_btn,
.header__nav-sticky .header__cta-links #schedule-tour-popup-button.schedule-tour-popup-button {
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
  border-color: var(--button-text-color, #212322);
  color: var(--button-text-color, #212322);
  padding: 9.5px 23px 11.5px;
  line-height: 1;
  letter-spacing: 0.367px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__cta-links .transparent_btn,
  .header__nav-sticky .header__cta-links #schedule-tour-popup-button.schedule-tour-popup-button {
    padding: 11px 34px 12px 38px;
    border-bottom-left-radius: 20px;
  }
}
.header__nav-sticky .header__cta-links .transparent_btn:hover,
.header__nav-sticky .header__cta-links #schedule-tour-popup-button.schedule-tour-popup-button:hover {
  background-color: #212322;
  border-color: #212322;
  color: #f8f7f1;
}
.header__nav-sticky .header__nav-search-icon {
  display: inline-block;
  line-height: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}
.header__nav-sticky .header__nav-search-icon svg {
  stroke: #212322;
}
.header__nav-sticky .menu-toggle span {
  border-bottom: 1px solid #212322;
}
.header__nav-sticky .header__nav-search {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-sticky .header__nav-search {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__nav-sticky .schedule-tour-modal {
  height: 100vh;
}
.header__slide-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--mobile-slide-menu-background-color, #f8f7f1);
  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
  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;
}
@media (min-width: 992px) {
  .header__slide-menu {
    background-color: var(--desktop-slide-menu-background-color);
  }
}
.header__slide-menu[data-open=true] {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.header__slide-menu-content {
  padding-left: 20px;
  padding-right: 20px;
  flex: 1;
}
@media (min-width: 992px) {
  .header__slide-menu-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header__slide-menu-header {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
@media (min-width: 992px) {
  .header__slide-menu-header {
    position: absolute;
    width: 100%;
    top: 0;
    gap: 36px;
    padding: 30px 5.55vw 30px;
  }
}
.header__slide-menu-search {
  display: none;
}
@media (min-width: 992px) {
  .header__slide-menu-search {
    display: block;
  }
}
.header__slide-menu-search-icon {
  display: inline-block;
  line-height: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
}
.header__slide-menu-search-icon svg {
  stroke: #212322;
}
@media (min-width: 992px) {
  .header__slide-menu-search-icon svg {
    stroke: #f8f7f1;
  }
}
.header__slide-menu-links {
  display: none;
}
@media (min-width: 992px) {
  .header__slide-menu-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}
.header__slide-menu-links .btn, .header__slide-menu-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__slide-menu-links input[type=submit],
.header__slide-menu-links .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .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__slide-menu-links .btn, .header__slide-menu-links .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .header__slide-menu-links input[type=submit],
  .header__slide-menu-links .hs-form .hs-submit input[type=submit],
  .hs-form .hs-submit .header__slide-menu-links input[type=submit] {
    padding: 12.5px 36px 14.5px;
    height: 41px;
  }
}
.header__slide-menu-links .fill_btn {
  border-color: var(--button-background-color, #c47e5a);
  line-height: 0.64;
}
.header__slide-menu-links .fill_btn:hover {
  color: #f8f7f1;
  background-color: #212322;
  border-color: #212322;
}
.header__slide-menu-links .transparent_btn,
.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;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
}
@media (min-width: 992px) {
  .header__slide-menu-links .transparent_btn,
  .header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button {
    padding: 11px 34px 12px 38px;
  }
}
.header__slide-menu-links .transparent_btn:hover,
.header__slide-menu-links button#schedule-tour-popup-button.schedule-tour-popup-button:hover {
  color: #f8f7f1;
  border-color: #212322;
  background-color: #212322;
}
.header__slide-menu-close-button {
  color: var(--mobile-slide-text-color, #212322);
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__slide-menu-close-button {
    color: var(--desktop-slide-text-color, #f8f7f1);
  }
}
.header__slide-menu-close-button svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 992px) {
  .header__slide-menu-close-button svg {
    width: 19px;
    height: 19px;
  }
}
.header__slide-menu-nav {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--mobile-slide-text-color);
}
@media (min-width: 992px) {
  .header__slide-menu-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.header__slide-menu .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  list-style: none;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .header__slide-menu .menu {
    width: 600px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.header__slide-menu .menu-item, .header__slide-menu .header__slide-menu-nav-search {
  flex: 0 0 40%;
}
.header__slide-menu .menu-item a, .header__slide-menu .header__slide-menu-nav-search a {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.42px;
  letter-spacing: 0px;
  color: var(--mobile-slide-text-color, #212322);
}
@media (min-width: 992px) {
  .header__slide-menu .menu-item a, .header__slide-menu .header__slide-menu-nav-search a {
    color: var(--desktop-slide-text-color, #f8f7f1);
    font-weight: 500;
    font-size: 32px;
    line-height: 35.87px;
    font-family: "RecklessNeue-MediumItalic", sans-serif;
  }
}
.header__slide-menu .menu-item a:hover, .header__slide-menu .header__slide-menu-nav-search a:hover {
  color: #b79555;
}
@media (min-width: 992px) {
  .header__slide-menu .menu-item a:hover, .header__slide-menu .header__slide-menu-nav-search a:hover {
    color: rgba(254, 234, 173, 0.8666666667);
  }
}
.header__slide-menu-nav-search {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .header__slide-menu-nav-search {
    display: none;
  }
}
.header__slide-menu-nav-search a {
  display: flex;
  align-items: center;
}
.header__slide-menu-nav-search-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
}
.header__slide-menu-nav-search svg {
  width: 100%;
  height: 100%;
  color: currentColor;
  stroke: currentColor;
}
.header__slide-menu-extra-info {
  padding-top: 46px;
}
@media (min-width: 992px) {
  .header__slide-menu-extra-info {
    display: none;
  }
}
.header__slide-menu-extra-info .column {
  margin-bottom: 46px;
}
.header__slide-menu-extra-info h3 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.42px;
  color: #212322;
}
.header__slide-menu-extra-info p,
.header__slide-menu-extra-info a {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.03em;
  color: #212322;
}
.header__slide-menu-extra-info p {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] {
    position: absolute;
    width: 100%;
    background: transparent;
    top: 0px;
    z-index: 1000;
  }
}
.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__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;
  }
}
@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: 1px;
    border-style: solid;
    background-color: transparent;
    border-color: #f8f7f1;
    color: #f8f7f1;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    padding: 11px 34px 12px 38px;
  }
  .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__logo .default-logo {
    display: none;
  }
}
.header[data-transparent-in-desktop=true] .header__logo .transparent-logo {
  display: none;
}
@media (min-width: 992px) {
  .header[data-transparent-in-desktop=true] .header__logo .transparent-logo {
    display: inline-block;
  }
}
@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;
  }
}
.header[data-transparent-in-desktop=false] .header__logo .transparent-logo {
  display: none;
}

@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;
  }
}
body:has(#wpadminbar) .header__nav-sticky {
  inset: 0 0 auto 0;
}
@media (min-width: 600px) {
  body:has(#wpadminbar) .header__nav-sticky {
    inset: 46px 0 auto 0;
  }
}
@media (min-width: 782px) {
  body:has(#wpadminbar) .header__nav-sticky {
    inset: 32px 0 auto 0;
  }
}

/* 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);
  z-index: 1100;
}
.search-pop-up.show {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}
.search-pop-up .search-close {
  margin: 0;
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/close.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  right: 32px;
  top: 42px;
  border: none;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 991.8px) {
  .search-pop-up .search-close {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}
.search-pop-up #searchform {
  display: flex;
  flex-direction: column;
  padding: 38px 32px 0 32px;
}
.search-pop-up #searchform label {
  font-size: 28px;
  color: #f8f7f1;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  line-height: 31px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 991.8px) {
  .search-pop-up #searchform label {
    font-family: "RecklessNeue-RegularItalic", sans-serif;
    font-weight: 400;
    font-size: 20px;
  }
}
.search-pop-up #searchform input[type=text] {
  border: none;
  font-weight: normal;
  border-bottom: 1px solid #f8f7f1;
  width: 100%;
  padding: 0 0 18px;
  overflow: hidden;
  word-break: break-word;
  color: #f8f7f1;
  caret-color: currentColor;
  text-indent: 0;
  position: relative;
  padding-left: 0;
  background-color: transparent;
  height: auto;
  font-size: 3em;
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  border-radius: 0;
  outline: 0;
  margin-top: 25px;
}
@media (max-width: 991.8px) {
  .search-pop-up #searchform input[type=text] {
    font-size: 16px;
  }
}

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;
}

.footer {
  background: var(--footer-background);
  background-color: var(--footer-background-color, #212322);
  background-repeat: var(--footer-background-image-repeat);
  background-size: var(--footer-background-image-size);
  color: var(--footer-text-color, #f8f7f1);
  overflow: hidden;
  /* Footer Links */
  /* Footer Contact Info */
  /* Footer Social Media Section */
  /* Footer Promo */
  /* Footer Credits */
}
.footer__container {
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .footer__container {
    display: grid;
    grid-template-areas: "contact_section contact_section contact_section contact_section contact_section" "seperator-one seperator-one seperator-one seperator-one seperator-one" "customer_support_section customer_support_section customer_support_section  customer_support_section customer_support_section" "seperator-two seperator-two seperator-two seperator-two seperator-two" "promo links links social-media credits" "copyright_last copyright_last copyright_last copyright_last copyright_last";
    grid-template-columns: repeat(4, minmax(0, 1fr)) max-content;
    grid-template-rows: repeat(6, max-content);
    column-gap: clamp(24px, 3vw, 150px);
    row-gap: 80px;
    padding: 73px 5.56vw;
  }
}
.footer__container > div:not(:last-child) {
  border-bottom: 1px solid currentColor;
}
@media (min-width: 992px) {
  .footer__container > div:not(:last-child) {
    border-bottom: 0;
  }
}
.footer__container > div:last-child {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .footer__container > div:last-child {
    padding-bottom: 0;
  }
}
.footer__seperator {
  display: none;
  width: 100%;
  height: 1px;
  background: var(--footer-text-color, #f8f7f1);
}
@media (min-width: 992px) {
  .footer__seperator {
    display: block;
  }
}
.footer__seperator-one {
  grid-area: seperator-one;
}
.footer__seperator-two {
  grid-area: seperator-two;
}
.footer__contact {
  grid-area: contact_section;
  padding: 0 5px;
}
@media (min-width: 992px) {
  .footer__contact {
    width: 100%;
    display: contents;
    border-bottom: 1px solid red;
  }
}
@media (min-width: 992px) {
  .footer__contact-header {
    grid-column: span 2;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: var(--footer-box-alignment, "start");
  }
}
.footer__contact-title {
  color: currentColor;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-title {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .footer__contact-title {
    font-size: calc(26px + 6 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .footer__contact-title {
    height: auto;
    margin-bottom: 30px;
  }
}
.footer__contact-subtitle {
  display: inline-block;
  color: currentColor;
  line-height: 26px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.02rem;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-subtitle {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__contact-subtitle {
    font-size: calc(16px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-subtitle {
    font-size: 20px;
  }
}
.footer__contact-subtitle {
  line-height: 18px;
}
@media screen and (min-width: 393px) {
  .footer__contact-subtitle {
    line-height: calc(18px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-subtitle {
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .footer__contact-subtitle {
    margin-bottom: 0;
    max-width: 425px;
  }
}
.footer__contact:has(.submitted-message) .footer__contact-header {
  display: none;
}
@media (min-width: 992px) {
  .footer__contact:has(.submitted-message) .footer__contact-header {
    display: block;
  }
}
.footer__contact-form-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .footer__contact-form-container {
    grid-column: span 3;
    margin-left: 100px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .footer__contact .hsl-form__container {
    height: 100%;
    width: 100%;
  }
}
.footer__contact .submitted-message {
  color: currentColor;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: start;
}
.footer__contact .submitted-message {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .footer__contact .submitted-message {
    font-size: calc(26px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact .submitted-message {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .footer__contact .submitted-message {
    height: 100%;
  }
}
.footer__links {
  grid-area: links;
}
@media (min-width: 992px) {
  .footer__links {
    display: contents;
  }
}
.footer__links-container {
  padding: 40px 5px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer__links-container {
    display: contents;
  }
}
@media (min-width: 992px) {
  .footer__links-column:nth-child(1) {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
@media (min-width: 992px) {
  .footer__links-column:nth-child(2) {
    grid-column: 3/4;
    grid-row: 5/6;
  }
}
.footer__links-links-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer__links-link {
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-style: normal;
  color: currentColor;
  margin-bottom: 36px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__links-link {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__links-link {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__links-link {
    font-size: 28px;
  }
}
.footer__links-link:last-child {
  margin-bottom: 0;
}
.footer__links-link a {
  color: currentColor;
}
.footer__contact-info {
  padding: 40px 0;
  grid-area: customer_support_section;
  display: flex;
  justify-content: center;
  column-gap: 80px;
  align-items: center;
}
@media (max-width: 991.8px) {
  .footer__contact-info {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .footer__contact-info {
    display: contents;
  }
}
.footer__contact-info-container {
  width: 100%;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: var(--footer-box-alignment, "start");
}
@media (min-width: 992px) {
  .footer__contact-info-container {
    display: contents;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-container > div {
    grid-template-columns: subgrid;
    grid-template-rows: max-content;
    justify-items: var(--footer-box-alignment, "start");
  }
}
.footer__contact-info-logo {
  width: 100%;
  max-width: 220px;
  margin-bottom: 40px;
  order: 0;
}
@media (min-width: 992px) {
  .footer__contact-info-logo {
    margin-bottom: 0px;
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.footer__contact-info-details {
  grid-column: 3/4;
  order: 3;
}
@media (max-width: 991.8px) {
  .footer__contact-info-details {
    margin-bottom: 40px;
    order: 2;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-details {
    grid-column: 3/4;
    grid-row: 3/4;
    margin-bottom: 0;
  }
}
.footer__contact-info-details-heading {
  font-weight: 400;
  font-style: normal;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  color: currentColor;
  margin-bottom: 18px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-details-heading {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-details-heading {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-details-heading {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-details-heading {
    font-family: "RecklessNeue-MediumItalic", sans-serif;
    font-weight: 500;
    margin-bottom: 16px;
  }
}
.footer__contact-info-details-address {
  color: currentColor;
  font-size: 16px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  letter-spacing: 0.01rem;
  text-align: var(--footer-text-alignment, "left");
  line-height: 21px;
}
.footer__contact-info-details-address {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-details-address {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-details-address {
    font-size: 18px;
  }
}
.footer__contact-info-details-address a {
  color: currentColor;
  cursor: pointer;
}
.footer__contact-info-details-address a:hover, .footer__contact-info-details-address a:active {
  color: #c47e5a;
}
.footer__contact-info-business-hours {
  grid-column: 4/5;
  color: currentColor;
  order: 2;
}
@media (max-width: 991.8px) {
  .footer__contact-info-business-hours {
    margin-bottom: 40px;
  }
}
.footer__contact-info-business-hours-title {
  font-weight: 400;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  color: currentColor;
  margin-bottom: 16px;
  line-height: 100%;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-business-hours-title {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-business-hours-title {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-business-hours-title {
    font-size: 28px;
  }
}
.footer__contact-info-business-hours-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__contact-info-business-hours-list-item {
  font-size: 16px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  line-height: 21px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-business-hours-list-item {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-business-hours-list-item {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-business-hours-list-item {
    font-size: 18px;
  }
}
.footer__contact-info-live-here {
  grid-column: 2/3;
  grid-row: 3/4;
  order: 3;
}
@media (max-width: 991.8px) {
  .footer__contact-info-live-here {
    order: 3;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-live-here {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.footer__contact-info-live-here-title {
  color: currentColor;
  font-weight: 400;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  margin-bottom: 16px;
  line-height: 100%;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-live-here-title {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-live-here-title {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-live-here-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-live-here-title {
    font-family: "RecklessNeue-MediumItalic", sans-serif;
    font-weight: 500;
  }
}
.footer__contact-info-live-here-address {
  color: currentColor;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  line-height: 21px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-live-here-address {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-live-here-address {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-live-here-address {
    font-size: 18px;
  }
}
.footer__contact-info-live-here-address a:hover {
  color: #c47e5a !important;
}
.footer__contact-info-lease-here {
  grid-column: 2/3;
  grid-row: 3/4;
  order: 3;
}
@media (max-width: 991.8px) {
  .footer__contact-info-lease-here {
    order: 1;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-lease-here {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
.footer__contact-info-lease-here-title {
  color: currentColor;
  font-weight: 400;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  margin-bottom: 16px;
  line-height: 100%;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-lease-here-title {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-lease-here-title {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-lease-here-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-lease-here-title {
    font-family: "RecklessNeue-MediumItalic", sans-serif;
    font-weight: 500;
  }
}
.footer__contact-info-lease-here-address {
  color: currentColor;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  line-height: 21px;
  text-align: var(--footer-text-alignment, "left");
}
.footer__contact-info-lease-here-address {
  font-size: 16px;
}
@media screen and (min-width: 393px) {
  .footer__contact-info-lease-here-address {
    font-size: calc(16px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-info-lease-here-address {
    font-size: 18px;
  }
}
.footer__contact-info-lease-here-address a:hover {
  color: #c47e5a !important;
}
.footer__contact-info-container.hide-lease-here .footer__contact-info-lease-here {
  display: none;
}
.footer__contact-info-container.hide-lease-here .footer__contact-info-details {
  grid-column: 3/4;
  order: 3;
}
@media (max-width: 991.8px) {
  .footer__contact-info-container.hide-lease-here .footer__contact-info-details {
    order: 2;
  }
}
@media (min-width: 992px) {
  .footer__contact-info-container.hide-lease-here .footer__contact-info-details {
    grid-column: 3/4;
    grid-row: 3/4;
    margin-bottom: 0;
  }
}
.footer__contact-info-container.hide-lease-here .footer__contact-info-business-hours {
  grid-column: 4/6;
  order: 2;
}
.footer__contact-info-container.hide-lease-here .footer__contact-info-business-hours > * {
  grid-column: span 2;
}
.footer__social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 40px 20px;
  grid-area: social-media;
}
@media (min-width: 992px) {
  .footer__social-media {
    padding: 0;
    justify-content: flex-start;
    grid-column: 4/5;
  }
}
.footer__social-media-container {
  align-items: center;
  width: max-content;
}
.footer__social-media-header {
  margin-bottom: 18px;
  text-align: center;
  color: currentColor;
  font-size: 18px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.02rem;
  line-height: 100%;
}
.footer__social-media-links-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 992px) {
  .footer__social-media-links-container {
    margin-bottom: 48px;
  }
}
.footer__social-media-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: currentColor;
  width: 100%;
}
@media (min-width: 992px) {
  .footer__social-media-links {
    width: 9rem;
  }
}
.footer__social-media-link {
  color: currentColor;
  font-size: 20px;
  font-weight: 400;
  font-family: "acumin-pro", sans-serif;
}
.footer__social-media-contact-us-container {
  display: none;
}
@media (min-width: 992px) {
  .footer__social-media-contact-us-container {
    display: inline-block;
    margin-top: 0;
  }
}
.footer__social-media-contact-us-container .btn, .footer__social-media-contact-us-container .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .footer__social-media-contact-us-container input[type=submit],
.footer__social-media-contact-us-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .footer__social-media-contact-us-container input[type=submit] {
  background-color: var(--footer-text-color, #f8f7f1);
  color: #212322;
  cursor: pointer;
  display: inline-block;
}
.footer__social-media-contact-us-container .btn:hover, .footer__social-media-contact-us-container .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .footer__social-media-contact-us-container input[type=submit]:hover,
.footer__social-media-contact-us-container .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .footer__social-media-contact-us-container input[type=submit]:hover {
  background-color: #f7efd8 !important;
}
.footer__social-media-icon img {
  width: 24px;
  height: 24px;
}
.footer__promo {
  padding: 40px 5px;
  grid-area: promo;
  place-items: var(--footer-box-alignment, start);
}
@media (min-width: 992px) {
  .footer__promo {
    padding: 0;
  }
}
.footer__promo-text {
  color: currentColor;
  font-size: 26px;
  font-weight: 500;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  width: 100%;
  display: inline-block;
  margin-bottom: 24px;
  line-height: 1;
  text-align: var(--footer-text-alignment, "left");
}
.footer__promo-text {
  font-size: 26px;
}
@media screen and (min-width: 393px) {
  .footer__promo-text {
    font-size: calc(26px + 2 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .footer__promo-text {
    font-size: 28px;
  }
}
.footer__promo-text::before, .footer__promo-text::after {
  display: none;
}
@media (min-width: 992px) {
  .footer__promo-text {
    max-width: 230px;
    width: 100%;
  }
}
.footer__promo-view {
  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");
}
.footer__promo-view > a {
  color: inherit;
}
.footer__credits {
  padding: 40px 0;
  grid-area: credits;
}
@media (min-width: 992px) {
  .footer__credits {
    display: contents;
  }
}
.footer__copyright_reserved,
.footer__copyright_reserved a {
  text-align: center;
  color: currentColor;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19.2px;
}
.footer__site-maintenance {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 34px;
  padding: 0 5px;
}
@media (min-width: 992px) {
  .footer__site-maintenance {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 5/6;
    grid-row: 5/6;
    justify-self: end;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 0;
  }
}
.footer__site-maintenance--item-title {
  display: inline-block;
  color: currentColor;
  font-size: 18px;
  font-weight: 300;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.02rem;
  margin-bottom: 8px;
}
.footer__copyright_bottom_icons_container {
  display: flex;
  justify-content: center;
}
.footer__copyright_bottom_icons_list {
  display: flex;
  width: max-content;
  gap: 32px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__copyright_bottom_icons_list_item img {
  width: 32px;
  height: 32px;
}
.footer__copyright_last {
  grid-area: copyright_last;
  grid-column: span 5;
}
.footer.hide-air-cta .footer__promo {
  display: none;
}
.footer.hide-air-cta .footer__container {
  grid-template-areas: "contact_section contact_section contact_section contact_section" "seperator-one seperator-one seperator-one seperator-one" "customer_support_section customer_support_section customer_support_section  customer_support_section" "seperator-two seperator-two seperator-two seperator-two" "links links social-media credits" "copyright_last copyright_last copyright_last copyright_last";
  grid-template-columns: 1fr 1fr 1fr max-content;
}
.footer.hide-air-cta .footer__contact-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__contact-form-container {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__contact-info-logo {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__contact-info-details {
    grid-column: 3/4;
  }
}
.footer.hide-air-cta .footer__contact-info-business-hours {
  grid-column: 4/5;
  grid-row: 3/4;
}
.footer.hide-air-cta .footer__contact-info-business-hours > * {
  grid-column: span 1;
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__links-column:nth-child(1) {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__links-column:nth-child(2) {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__social-media {
    grid-column: 3/4;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__site-maintenance {
    grid-column: 4/5;
    justify-self: end;
  }
}
@media (min-width: 992px) {
  .footer.hide-air-cta .footer__site-maintenance--item {
    width: 136px;
    justify-self: end;
  }
}
.footer.hide-air-cta .footer__copyright_last {
  grid-area: copyright_last;
  grid-column: span 4;
}
.footer .hbspt-form .hs_error_rollup,
.footer .hs-form.hs-form .hs_error_rollup {
  display: none;
}

.specials-bar {
  position: relative;
  background: var(--section-background, #b79555);
  flex-direction: column;
  text-align: center;
  padding: 12px 3.05%;
  z-index: 100;
}
@media (max-width: 991.8px) {
  .specials-bar {
    padding: 12px 16px;
  }
}
.specials-bar__slide-wrap {
  margin: 0 auto;
  position: relative;
  align-items: center;
}
.specials-bar__column1 {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  flex: 1;
}
@media (min-width: 992px) {
  .specials-bar__column1 {
    font-size: 18px;
    flex: unset;
  }
}
.specials-bar__column1 a {
  text-decoration-skip-ink: none;
}
.specials-bar__column2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  right: 0;
}
@media (min-width: 992px) {
  .specials-bar__column2 {
    position: unset;
    right: unset;
    font-size: 18px;
  }
}
.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 button {
  cursor: pointer;
  margin-left: 19px;
}
@media (max-width: 991.8px) {
  .specials-bar__column2 button svg {
    width: 10px;
    height: 10px;
  }
}
.specials-bar,
.specials-bar a {
  color: #f8f7f1;
}

.banner {
  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: #000000;
  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 .banner__slider img.normal-parallax {
  position: relative;
}
.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 h1 {
  font-family: "acumin-pro", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .banner__text-container h1 {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01rem;
  }
}
.banner__text-container h2 {
  margin-bottom: 60px;
}
.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-top: 30px;
}
.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-bottom: 30px;
}
.banner__text-container .btn:hover, .banner__text-container .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .banner__text-container input[type=submit]:hover,
.banner__text-container .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .banner__text-container input[type=submit]:hover {
  border-color: #b79555 !important;
  color: #212322 !important;
  background-color: #b79555 !important;
}
.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: 80px 5.56vw;
}
.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);
}

.card-swipper-section {
  padding: 60px 0;
}

.card-swipper-header {
  margin: 0 auto 40px;
  padding: 0 5.55vw;
  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-sub-title {
  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;
  color: #212322;
  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-link:hover {
  color: #212322;
}

.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: 10px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card img {
  flex: 0 0 35%;
  width: 35%;
  max-height: 80px;
  background-size: contain;
  max-width: 80px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card .default-thumb {
  flex: 0 0 35%;
  width: 35%;
  max-height: 80px;
  min-height: unset;
  background-size: contain;
  max-width: 80px;
}
.card-swipper__mob-wrapper.slick-slider .slick-slide .card-swipper__slide .card .card__content {
  width: calc(65% - 10px);
  flex: 0 0 calc(65% - 10px);
  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: 80px;
  }
  .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: 80px;
  }
}
.card-swipper__mob-wrapper.left-aligned-slide .slick-track {
  margin-left: 0px;
  margin-right: 0px;
}
.card-swipper__slide {
  margin-left: 20px;
  margin-right: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 991.8px) {
  .card-swipper__slide {
    padding: 0 10px 0 0;
  }
}
.card-swipper__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-swipper__nav--prev {
  left: 20px;
  transform: rotate(135deg) translateY(-50%);
  -webkit-transform: rotate(135deg) translateY(-50%);
}
@media (max-width: 991.8px) {
  .card-swipper__nav--prev {
    display: none !important;
  }
}
.card-swipper__nav--next {
  right: 20px;
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
}
@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 20px 20px 0;
}
@media (max-width: 991.8px) {
  .card__content {
    padding: 0;
  }
  .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: #b79555;
  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: #212322;
}
.card__link.active_btn {
  color: #a0a0a0;
}
.card__link.active_btn:hover {
  color: #212322;
}

.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;
  color: #212322;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
}
.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;
  }
}

.two_col_wrapper {
  display: flex;
  gap: 5.56vw;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  padding: 80px 0;
}
.two_col_wrapper:has(.reduced-horizontal-padding) {
  gap: 0px;
}
@media (max-width: 800px) {
  .two_col_wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0px 40px 20px;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper.img_left {
    padding: 40px 20px 40px 0px;
  }
}
.two_col_wrapper .two_col_img {
  position: relative;
}
@media (max-width: 800px) {
  .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;
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.top_left {
    border-top-left-radius: 60px !important;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.top_right {
    border-top-right-radius: 60px !important;
  }
}
@media (max-width: 800px) {
  .two_col_wrapper .two_col_img img.bottom_left {
    border-bottom-left-radius: 100px !important;
  }
}
@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;
}
.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);
}
.two_col_wrapper .two_col_img_slider_prev svg, .two_col_wrapper .two_col_img_slider_next svg {
  stroke: #f8f7f1;
  fill: #f8f7f1;
  stroke-width: 0.4px;
}
@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 {
  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: 40px;
  }
}
.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: min-content;
}
.two_col_wrapper .two_col_content h3,
.two_col_wrapper .two_col_content p {
  font-weight: 300;
  width: 100%;
}
.two_col_wrapper .two_col_content h3 {
  font-family: "RecklessNeue-Light", sans-serif;
  width: 100%;
}
.two_col_wrapper .two_col_content h3 {
  font-size: 30px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper .two_col_content h3 {
    font-size: calc(30px + 12 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper .two_col_content h3 {
    font-size: 42px;
  }
}
.two_col_wrapper .two_col_content h4 {
  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;
  }
}
.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: 992px) {
  .two_col_wrapper.zero_margin {
    gap: 0;
  }
}
.two_col_wrapper.zero_margin .two_col_content {
  padding: 80px 5.56vw;
  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 h4 {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  margin-bottom: 50px;
}
.two_col_wrapper.zero_margin .two_col_content h4 {
  font-size: 20px;
}
@media screen and (min-width: 390px) {
  .two_col_wrapper.zero_margin .two_col_content h4 {
    font-size: calc(20px + 8 * (100vw - 390px) / 1050);
  }
}
@media screen and (min-width: 1440px) {
  .two_col_wrapper.zero_margin .two_col_content h4 {
    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 {
  aspect-ratio: 1.0285714;
}
.two_col_wrapper.zero_margin .content_box {
  display: block;
  width: 100%;
  max-width: unset;
}

.amenities_list_wrapper {
  padding: 80px 13.88vw;
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper {
    padding: 40px 20px;
  }
}
.amenities_list_wrapper h2 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  margin-bottom: 60px;
  text-align: center;
}
.amenities_list_wrapper h2 {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .amenities_list_wrapper h2 {
    font-size: calc(30px + 26 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .amenities_list_wrapper h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper h2 {
    margin-bottom: 40px;
  }
}
.amenities_list_wrapper h4 {
  margin-bottom: 32px;
  font-family: "RecklessNeue-MediumItalic", sans-serif;
}
.amenities_list_wrapper h4 {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .amenities_list_wrapper h4 {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .amenities_list_wrapper h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper h4 {
    margin-bottom: 10px;
  }
}
.amenities_list_wrapper p {
  font-size: 18px;
}
.amenities_list_wrapper ul {
  list-style-type: disc;
  margin-top: 32px;
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper ul {
    padding: 0;
    margin-left: 20px;
  }
}
.amenities_list_wrapper ul .list-item {
  font-size: 20px;
  padding: 14.07px 0;
}
.amenities_list_wrapper ul .list-item:first-child {
  padding-top: 0px;
}
.amenities_list_wrapper ul .bordered_list {
  border-bottom: 1px solid #a0a0a0;
  font-family: "RecklessNeue-Light", sans-serif;
}
.amenities_list_wrapper .column_wrapper {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 200px;
  row-gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper .column_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.amenities_list_wrapper.bordered-list-wrapper {
  padding: 80px 12.5% 40px;
}
.amenities_list_wrapper.bordered-list-wrapper h2 {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper.bordered-list-wrapper {
    padding: 40px 20px;
  }
}
.amenities_list_wrapper.bordered-list-wrapper .col_heading {
  text-align: left;
}
@media (min-width: 992px) {
  .amenities_list_wrapper.bordered-list-wrapper .col_heading {
    text-align: center;
  }
}
.amenities_list_wrapper.bordered-list-wrapper .column_wrapper {
  max-width: none;
  row-gap: 80px;
}
@media screen and (max-width: 991px) {
  .amenities_list_wrapper.bordered-list-wrapper .column_wrapper {
    gap: 40px;
  }
}
.amenities_list_wrapper.bordered-list-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.amenities_list_wrapper.bordered-list-wrapper .heading_level_four {
  margin-bottom: 40px;
}

.guidelines_wrapper ul .list-item {
  font-size: 18px;
  padding: 0px;
}

.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 0;
}
@media (min-width: 992px) {
  .faq-accordion {
    padding: 0 0;
  }
}
.faq-accordion__container {
  padding: 0 5.55vw;
  display: flex;
  gap: 60px;
  position: relative;
}
@media (max-width: 991.8px) {
  .faq-accordion__container {
    flex-direction: column;
    gap: 30px;
    row-gap: 0;
  }
}
.faq-accordion__tabs {
  flex: 0 0 280px;
  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 (min-width: 992px) {
  .faq-accordion__tabs {
    padding: 80px 0;
  }
}
@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__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: 15px 20px;
    background: #f8f7f1;
    border: 1px solid #212322;
    color: #212322;
    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 #212322;
    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: #212322;
    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 #212322;
    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 #212322;
    border-bottom: 2px solid #212322;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: all 0.3s ease;
  }
}
.faq-accordion__tab {
  padding: 10px 20px 10px 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  color: #212322;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 26.9px;
}
.faq-accordion__tab:hover {
  color: #b79555;
}
.faq-accordion__tab.active {
  color: #b79555;
  font-style: normal;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
}
@media (max-width: 991.8px) {
  .faq-accordion__tab {
    padding: 15px 20px;
    border-bottom: 1px solid #212322;
  }
  .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: 809px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .faq-accordion__content {
    padding: 80px 0;
  }
}
.faq-accordion__panel {
  display: block;
  margin-bottom: 40px;
}
.faq-accordion__panel:last-child {
  margin-bottom: 0;
}
.faq-accordion__panel.active {
  display: block;
}
.faq-accordion__title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 47.08px;
  margin: 0 0 30px;
  color: #212322;
}
.faq-accordion__title--spacing {
  margin-top: 60px;
}
@media (max-width: 991.8px) {
  .faq-accordion__title {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
@media (max-width: 575.8px) {
  .faq-accordion__title {
    font-size: 1.75rem;
  }
}
.faq-accordion__item {
  border-bottom: 1px solid #a0a0a0;
}
.faq-accordion__item:first-child {
  border-top: 1px solid #a0a0a0;
}
.faq-accordion__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}
.faq-accordion__icon:before, .faq-accordion__icon:after {
  content: "";
  position: absolute;
  background: #212322;
  transition: all 0.3s ease;
}
.faq-accordion__icon:before {
  width: 12px;
  height: 2px;
  top: 5px;
  left: 0;
  transform-origin: center;
}
.faq-accordion__icon:after {
  width: 2px;
  height: 12px;
  left: 5px;
  top: 0;
  transform-origin: center;
}
.faq-accordion__question {
  width: 100%;
  padding: 20px 40px 20px 0;
  text-align: left;
  background: none;
  border: none;
  color: #212322;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  line-height: 26.9px;
}
.faq-accordion__question {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .faq-accordion__question {
    font-size: calc(20px + 4 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .faq-accordion__question {
    font-size: 24px;
  }
}
.faq-accordion__question:hover {
  color: #212322;
}
.faq-accordion__question.active .faq-accordion__icon::before {
  transform: rotate(180deg);
}
.faq-accordion__question.active .faq-accordion__icon::after {
  transform: rotate(90deg) scale(0);
}
.faq-accordion__answer {
  display: none;
  padding: 0 0 20px;
  color: #212322;
  font-size: 1rem;
  line-height: 1.6;
  will-change: height;
}
.faq-accordion__answer 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;
}
.faq-accordion__answer p:last-child {
  margin: 0;
}
.faq-accordion__answer strong {
  font-weight: 600;
}
.faq-accordion__answer a {
  color: #b79555;
  text-decoration: none;
  border-bottom: 1px solid;
}
.faq-accordion__answer a:hover {
  opacity: 0.7;
}
.faq-accordion__answer ul,
.faq-accordion__answer ol {
  margin: 15px 0;
  padding-left: 20px;
  opacity: 1;
  transform: none;
}
.faq-accordion__answer ul li,
.faq-accordion__answer 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;
}
.faq-accordion__answer ul li ul,
.faq-accordion__answer ul li ol,
.faq-accordion__answer ol li ul,
.faq-accordion__answer ol li ol {
  margin-top: 5px;
}
.faq-accordion .open .faq-accordion__icon:after {
  transform: rotate(90deg) scale(0);
}
.faq-accordion .open .faq-accordion__icon:before {
  transform: rotate(180deg);
}
.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 {
  padding: 20px 6.39vw 60px;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper {
    padding: 20px;
    grid-template-columns: none;
  }
}
.grid_two_col_wrapper .grid_two_col {
  max-width: 2100px;
  display: grid;
  column-gap: 2.78vw;
  margin: 0 auto;
  row-gap: 40px;
}
@media (min-width: 576px) {
  .grid_two_col_wrapper .grid_two_col {
    row-gap: 60px;
    grid-template-columns: repeat(2, calc(50% - 20px));
  }
}
.grid_two_col_wrapper .grid_two_col .grid_two_col {
  max-width: 2100px;
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 20px));
  column-gap: 2.78vw;
  row-gap: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .grid_two_col_wrapper .grid_two_col .grid_two_col {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item {
  text-align: center;
}
.grid_two_col_wrapper .grid_two_col .grid_item .heading_level_three {
  margin: 24px 0 20px;
}
.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;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.551020408;
}
.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 {
    aspect-ratio: 1.395256917;
  }
}
.grid_two_col_wrapper .grid_two_col .grid_item .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
}
.grid_two_col_wrapper .grid_two_col .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
}

.grid_bordered_list {
  display: flex;
  column-gap: 80px;
  row-gap: 20px;
  padding: 80px 6.39vw;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list {
    flex-direction: column-reverse;
    padding: 40px 20px 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: 31.8471%;
  }
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
}
.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 {
    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: 8.4px 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;
}
.grid_bordered_list .grid_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
}
.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;
  background-color: #2a5b57;
}
@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 {
  color: #f8f7f1;
  padding: 20px 20px 49px 20px;
}
@media screen and (min-width: 991px) {
  .map_wrapper .col_poi_list {
    width: 33.61%;
    padding: 47px 40px;
  }
}
.map_wrapper .col_poi_list .heading_level_three {
  margin-bottom: 27px;
}
@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: 16px;
  }
}
.map_wrapper .col_poi_list .heading_level_five {
  font-family: "RecklessNeue-Light", sans-serif;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  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: 10px 0;
  }
}
@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 16px;
}
.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: #a0a0a0;
}
.map_wrapper #map_page .gm-style-iw {
  padding: 18px 20px 22px !important;
  background-color: #2a5b57;
  width: 273px !important;
  overflow: visible;
  max-height: unset !important;
}
.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: 18px;
}
.map_wrapper #map_page #content-sect {
  width: 90%;
}
.map_wrapper #map_page #content-sect,
.map_wrapper #map_page #content-sect a {
  color: #f8f7f1;
}
.map_wrapper #map_page #content-sect h3 {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
.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;
  }
}
.map_wrapper #map_page #content-sect .map-address {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.map_wrapper #map_page #content-sect .map-btns {
  line-height: 20px;
}
.map_wrapper #map_page #content-sect .map-btns a {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  color: #f8f7f1;
  font-size: 16px;
}
.map_wrapper #map_page .tooltip {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  border-radius: 4px;
  background: #2a5b57;
  transform: rotate(45deg) translateX(-50%) translateY(4px);
}

.neighborhood .image-two-content-block .btn:hover, .neighborhood .image-two-content-block .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .neighborhood .image-two-content-block input[type=submit]:hover,
.neighborhood .image-two-content-block .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .neighborhood .image-two-content-block input[type=submit]:hover {
  background-color: #f8f7f1 !important;
  color: #212322 !important;
  border-color: #f8f7f1 !important;
}
.neighborhood .banner__text-container {
  max-width: 700px;
}
@media screen and (min-width: 500px) and (max-width: 1200px) {
  .neighborhood .banner__text-container {
    max-width: 550px;
  }
}
.neighborhood .banner__text-container h2 {
  margin: 30px 0;
}
.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;
}

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

.grid_bordered_list {
  display: flex;
  column-gap: 80px;
  row-gap: 20px;
  padding: 80px 6.39vw;
}
@media screen and (max-width: 991px) {
  .grid_bordered_list {
    flex-direction: column-reverse;
    padding: 40px 20px 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: 31.8471%;
  }
}
.grid_bordered_list .col-bordered-list .heading_level_two {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
}
.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 {
    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: 8.4px 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;
}
.grid_bordered_list .grid_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
}
.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__container {
  width: 100%;
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .media-banner-with-content__container {
    padding: 80px 5.56vw;
  }
}
.media-banner-with-content:not([data-media-type=video]):not([data-media-type=image]) .media-banner-with-content__container {
  padding-bottom: 40px;
}
.media-banner-with-content:not([data-media-type=video]):not([data-media-type=image]) .media-banner-with-content__content {
  margin-bottom: 0;
}
.media-banner-with-content__content {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 40px;
}
@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: 50px;
  }
}
.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;
  margin-bottom: 30px;
}
.media-banner-with-content__paragraph:last-child {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .media-banner-with-content__paragraph {
    margin-bottom: 20px;
  }
}
.media-banner-with-content__media {
  line-height: 0;
}
@media (min-width: 992px) {
  .media-banner-with-content__media {
    padding-top: 20px;
  }
}
.media-banner-with-content__media-container {
  position: relative;
  height: 42.99vw;
  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 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;
}

.image-two-content-block {
  background: var(--section-background, "none");
}
.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 5.56vw;
    gap: 0;
  }
}
.image-two-content-block__content .image-two-content-block__col {
  color: #f8f7f1;
  display: contents;
}
@media (min-width: 992px) {
  .image-two-content-block__content .image-two-content-block__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 50%;
    width: 50%;
    margin-bottom: 0;
  }
}
.image-two-content-block__content-heading-container {
  order: 0;
}
@media (min-width: 992px) {
  .image-two-content-block__content-heading-container {
    order: unset;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content-heading-container:has(+ div) {
    margin-bottom: 40px;
  }
}
.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;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content-paragraph-container:has(+ div) {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .image-two-content-block__content .image-two-content-block__content-paragraph-slider {
    max-width: 336px;
  }
}
.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: 336px;
    font-weight: 300;
  }
}
.image-two-content-block__content-cta-button-container {
  order: 3;
}
.image-two-content-block__content-cta-button-container button {
  text-transform: capitalize;
  border-color: var(--cta-button-border-color);
  color: var(--cta-button-text-color);
  background-color: var(--cta-button-bg);
}
.image-two-content-block__content-cta-button-container button:hover {
  border-color: #212322;
  color: #f8f7f1;
  background-color: #212322;
}
@media (min-width: 992px) {
  .image-two-content-block__content-cta-button-container {
    order: unset;
  }
}
.image-two-content-block__content-slider-controls {
  order: 2;
}
@media (min-width: 992px) {
  .image-two-content-block__content-slider-controls {
    align-self: flex-end;
    order: unset;
    max-width: 336px;
    width: 100%;
    display: flex;
  }
}
.image-two-content-block__content-slider-controls--next, .image-two-content-block__content-slider-controls--prev {
  cursor: pointer;
  padding: 0;
}
.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 {
  stroke: #a0a0a0;
  fill: #a0a0a0;
}
.image-two-content-block__content-slider-controls--next svg, .image-two-content-block__content-slider-controls--prev svg {
  stroke: #212322;
  fill: #212322;
  stroke-width: 1px;
}
.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;
}

.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: 40px;
    padding: 60px 5.56vw;
  }
}
.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;
  }
}
@media (min-width: 992px) {
  .instagram-feed__col:nth-child(2) {
    grid-column: span 3;
  }
}
.instagram-feed__heading {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 33.63px;
  letter-spacing: 0px;
  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;
  }
}
@media (min-width: 992px) {
  .instagram-feed__paragraph {
    margin-bottom: 16px;
    font-family: "RecklessNeue-Regular", sans-serif;
    font-weight: 400;
  }
}
.instagram-feed__follow-along {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 1%;
  color: #b79555;
}
.instagram-feed__follow-along:hover {
  color: #212322 !important;
}
.instagram-feed #sb_instagram {
  padding: 0 !important;
}
.instagram-feed #sb_instagram #sbi_images {
  padding: 0;
  gap: 10px !important;
}
@media (min-width: 992px) {
  .instagram-feed #sb_instagram #sbi_images {
    gap: 40px !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;
  }
}

.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(--footer-text-color) !important;
  -webkit-text-fill-color: var(--footer-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(--footer-text-color) !important;
  -webkit-text-fill-color: var(--footer-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: #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: #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: #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: 18px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 22px;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .hbspt-form .hs-form-field label,
  .hs-form .hs-form-field label {
    font-size: 20px;
  }
}
.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 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 .hs-error-msgs:nth-child(2n+1),
.hs-form .hs-form-field .hs-error-msgs:nth-child(2n+1) {
  display: 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-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: 10px;
}
.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);
  text-transform: capitalize;
  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;
}

.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-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-top: var(--section-padding-top, 40px);
    --_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;
}
@media (min-width: 992px) {
  .floorplan-listing__total-result {
    display: none;
  }
}
.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;
}
.floorplan-listing__grid-wrapper {
  display: contents;
}
.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__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__button,
.floorplan-listing #schedule-tour-popup-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 #schedule-tour-popup-button a, .floorplan-listing__button.fill_btn a {
  color: #212322;
}
.floorplan-listing__button:hover,
.floorplan-listing #schedule-tour-popup-button:hover, .floorplan-listing__button.fill_btn:hover {
  background: #212322;
  color: #f8f7f1;
}
.floorplan-listing #schedule-tour-popup-button {
  background-color: #f7efd8;
}
.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);
}
@media (min-width: 768px) {
  .floorplan-listing__card {
    margin: 0 0 0 32px;
  }
}
.floorplan-listing__image {
  position: relative;
  width: 100%;
  padding: 0 7.51%;
  flex: 1;
}
@media (min-width: 1200px) {
  .floorplan-listing__image {
    padding: 0;
  }
}
.floorplan-listing__image img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  aspect-ratio: 1.6042;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .floorplan-listing__image img {
    width: auto;
    aspect-ratio: 1.1;
  }
}
.floorplan-listing__content {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
@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: flex;
  align-items: center;
  justify-content: center;
  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;
}
.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;
}
@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: 3px;
  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;
    margin-bottom: 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-lease-cta-border-color: var(
      --section-lease-cta-border-color,
      #212322
  );
  --_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: 30px 54px 40px;
  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: 40px 50px;
  }
}
.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: #212322;
  border-color: #212322;
}
.floorplan-listing__lease-container #schedule-tour-popup-button:hover {
  background-color: #f7efd8;
  border-color: #f7efd8;
  color: #212322;
}
.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 {
  font-family: "RecklessNeue-Light", sans-serif;
  margin-bottom: 20px;
  color: var(--_section-text-color);
  font-size: 42px;
  font-weight: 300;
  line-height: 47.08px;
}
.floorplan-listing__lease-title strong {
  display: block;
  font-style: italic;
  font-family: "RecklessNeue-Regular", sans-serif;
}
@media (min-width: 992px) {
  .floorplan-listing__lease-title strong {
    display: inline-block;
  }
}
@media (max-width: 767.8px) {
  .floorplan-listing__lease-title {
    font-size: 42px;
  }
}
@media (max-width: 575.8px) {
  .floorplan-listing__lease-title {
    font-size: 32px;
  }
}
.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-lease-cta-border-color);
  min-width: 160px;
  display: inline-block;
}
.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: #f7efd8;
  color: #212322;
  border-color: #f7efd8;
}
.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 {
  padding: 0 20px;
  place-self: center;
}
@media (min-width: 768px) {
  .floorplan-listing__no-results {
    grid-column: span 1;
  }
}
@media (min-width: 1200px) {
  .floorplan-listing__no-results {
    grid-column: span 2;
  }
}
.floorplan-listing__no-results-title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 32px;
  color: #212322;
  margin-bottom: 18px;
}
.floorplan-listing__no-results-text {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.5em;
  color: #212322;
  text-align: center;
  line-height: 1.4;
}
.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: 800px;
}
@media (min-width: 1920px) {
  .siteplan-section iframe {
    min-height: 1200px;
  }
}

.is-safari .floorplan-listing__badges .badge {
  padding: 1px 6px 3px;
}
.is-safari .floorplan-listing__details {
  row-gap: 0;
  margin-bottom: 0;
}

.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: 768px) {
  .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);
  }
}
@media (min-width: 1200px) {
  .floorplan-search.tabs-hidden .floorplan-search__content {
    justify-content: flex-start;
  }
}
.floorplan-search__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 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) {
  .floorplan-search__container {
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
}
@media (min-width: 1280px) {
  .floorplan-search__container {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.floorplan-search__filter-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .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: 12px 16px;
  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;
}
@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;
}
.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);
}
.floorplan-search__filters {
  display: none;
}
@media (max-width: 767.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: 767.8px) and (min-width: 992px) {
  .floorplan-search__filters {
    display: none;
  }
}
@media (max-width: 767.8px) {
  .floorplan-search__filters.v-transform {
    transform: translateY(0);
  }
  .floorplan-search__filters.show {
    display: block;
  }
}
@media (max-width: 767.8px) and (min-width: 992px) {
  .floorplan-search__filters.show {
    display: none;
  }
}
@media (min-width: 768px) {
  .floorplan-search__filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.8px) {
  .floorplan-search__filters-container {
    padding: 40px 20px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
.floorplan-search__header {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .floorplan-search__header {
    display: none;
  }
}
.floorplan-search__title {
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 767.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: 767.8px) {
  .floorplan-search__reset-btn {
    color: var(--_section-search-filters-mob-text-color);
  }
}
.floorplan-search__content {
  display: flex;
  flex-direction: row;
  column-gap: 28px;
  row-gap: 4px;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 30px;
  row-gap: 30px;
}
@media (min-width: 576px) {
  .floorplan-search__content {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .floorplan-search__content {
    column-gap: 48px;
  }
}
@media (min-width: 768px) {
  .floorplan-search__content {
    flex-direction: row;
    max-width: 860px;
    justify-content: start;
    row-gap: 10px;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .floorplan-search__content {
    margin-top: 0px;
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .floorplan-search__content > div {
    width: max-content;
  }
}
.floorplan-search__content > div.floorplan-search__toggle {
  width: 100%;
}
.floorplan-search__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .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: 767.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: 767.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: 767.8px) {
  .floorplan-search__filter {
    flex: 1;
    width: 100%;
  }
}
.floorplan-search__filter-label {
  display: none;
}
@media (max-width: 767.8px) {
  .floorplan-search__filter-label {
    display: flex;
    align-items: center;
    font-family: "acumin-pro", sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 10px;
    color: var(--_section-search-filters-desktop-text-color);
  }
}
@media (max-width: 767.8px) and (max-width: 767.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: 20px;
  font-family: "acumin-pro", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--_section-search-filters-desktop-text-color);
  height: 43px;
}
@media (max-width: 767.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__label-icon {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}
.floorplan-search__filter .selectivo__label-icon svg {
  position: absolute;
  top: -9px;
  transition: transform 200ms ease-in-out;
  width: 16px;
  height: 7px;
}
.floorplan-search__filter .selectivo__label-icon svg path {
  stroke: var(--_section-search-filters-desktop-text-color);
}
.floorplan-search__filter .selectivo.selectivo--open .selectivo__label-icon svg {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}
.floorplan-search__filter .selectivo__dropdown {
  width: 100%;
  min-width: max-content;
  border-top: none;
  top: 18px;
  background: #f8f7f1;
  border: 0.5px solid #212322;
  box-shadow: 0px 6px 12px 0px rgba(56, 61, 72, 0.1019607843);
  margin-top: 18px;
  transform: translateX(-50%);
  margin-left: 50%;
  max-height: 260px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .floorplan-search__filter .selectivo__dropdown {
    margin-left: 0;
    transform: translateX(0);
  }
}
@media (min-width: 1280px) {
  .floorplan-search__filter .selectivo__dropdown {
    transform: translateX(-50%);
    margin-left: 50%;
  }
}
@media (max-width: 767.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;
  }
}
.floorplan-search__filter .selectivo__option {
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 12px 15px;
  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: 767.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 {
  color: #f8f7f1;
  background-color: var(--_section-text-color);
}
.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: 767.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: 767.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: 767.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: 767.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%;
}

.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: 3px solid #f8f7f1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transform: translateX(-50%);
}
@media (max-width: 767.8px) {
  .price-range #price-slider .ui-slider-handle {
    border: 3px 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: 20px;
}
@media (max-width: 767.8px) {
  .range-slider {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
  }
}
.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: 767.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: 767.8px) {
  .range-slider .ui-slider {
    background: #a0a0a0;
  }
}
.range-slider .ui-slider .ui-slider-range {
  background: #212322;
  height: 4px;
}
@media (max-width: 767.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: 767.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;
  cursor: pointer;
  font-weight: 400;
  color: var(--_section-search-filters-desktop-text-color);
}
@media (max-width: 767.8px) {
  .range-slider .range-clear {
    color: var(--_section-search-filters-mob-text-color);
    width: max-content;
  }
}

.checkbox-group {
  padding: 18px;
  background-color: #f8f7f1;
}
@media (max-width: 767.8px) {
  .checkbox-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    background-color: transparent;
  }
}
@media (max-width: 767.8px) {
  .checkbox-group .checkbox-group-items {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
}
.checkbox-group .checkbox-item {
  display: block;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (max-width: 767.8px) {
  .checkbox-group .checkbox-item {
    width: 50%;
  }
}
@media (max-width: 320px) {
  .checkbox-group .checkbox-item {
    width: 100%;
  }
}
.checkbox-group .checkbox-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #a0a0a0;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-right: 6px;
}
@media (max-width: 767.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: 767.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: 1px;
  width: 4px;
  height: 8px;
  border: solid #f8f7f1;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
@media (max-width: 767.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);
}
@media (max-width: 767.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: 400;
  font-size: 12px;
  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: 767.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;
}

@media (min-width: 768px) {
  #available-floorplan-toggle {
    order: 5;
  }
}

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

@media (min-width: 768px) {
  #unit-features-filter {
    order: 2;
  }
}
@media (min-width: 768px) {
  #unit-features-filter .selectivo__label {
    display: inline-block;
  }
}
#unit-features-filter .selectivo__label span {
  width: 5.5em;
  display: inline-block;
}

@media (min-width: 768px) {
  #sqft-range-filter {
    order: 0;
  }
}
#sqft-range-filter .selectivo__dropdown {
  min-width: 100%;
}
@media (min-width: 768px) {
  #sqft-range-filter .selectivo__dropdown {
    min-width: 332px;
  }
}
@media (min-width: 768px) {
  #price-range-filter {
    order: 1;
  }
}
#price-range-filter .selectivo__dropdown {
  min-width: unset;
}
@media (min-width: 768px) {
  #price-range-filter .selectivo__dropdown {
    min-width: 316px;
  }
}
#price-range-filter .selectivo__label span {
  display: inline-block;
  width: 2em;
}

@media (min-width: 768px) {
  #sort-results-filter {
    order: 4;
  }
}
@media (min-width: 1280px) {
  #sort-results-filter .selectivo__dropdown {
    margin-left: 50%;
  }
}
#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 {
  color: #f8f7f1;
}
@media (max-width: 767.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: 767.8px) {
  #sort-results-filter .selectivo__option:nth-of-type(1) {
    display: none;
  }
}
#sort-results-filter .selectivo__option:last-of-type {
  font-weight: 400;
  font-size: 12px;
  font-family: "acumin-pro", sans-serif;
  color: var(--_section-search-filters-mob-text-color);
}
@media (min-width: 768px) {
  #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: 767.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;
}
#sort-results-filter .selectivo__label {
  width: 8.1em;
}

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

.is-safari .floorplan-search__filter .selectivo__label::after {
  top: 16px;
}
@media (min-width: 992px) {
  .is-safari .floorplan-search__tab {
    padding: 10.5px 36px 10.5px;
  }
}

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

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

#floorSelect {
  display: inline-block;
  width: fit-content;
  background: none;
  width: 300px;
}

.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 {
  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;
  height: 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;
}

.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;
}

.gallery-page {
  padding: 0 5.55vw;
  background-color: #f8f7f1;
}
@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;
  text-align: center;
  border-bottom: 1px solid #a0a0a0;
}
.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: 12px;
  padding: 0;
}
@media (max-width: 991.8px) {
  .gallery-page .gallery-list-wrapper .gallery-controls__tabs {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #212322;
  color: #212322;
  display: inline-block;
}
@media (min-width: 992px) {
  .gallery-page .gallery-list-wrapper .gallery-controls__tabs li a {
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 400;
  }
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a:hover {
  background-color: #212322;
  border: 1px solid #212322;
  color: #f8f7f1;
}
.gallery-page .gallery-list-wrapper .gallery-controls__tabs li a.active {
  pointer-events: none;
  background-color: #212322 !important;
  border: 1px solid #212322 !important;
  color: #f8f7f1 !important;
}
.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;
}
.media-gallery.col-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 65px;
}
@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));
  }
}
@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;
}

.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 {
  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;
}
.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 {
  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;
}
.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;
  margin-bottom: 65px;
  position: relative;
}
@media (max-width: 991.8px) {
  .gallery-cta {
    padding: 40px;
  }
}
.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 .banner .btn:hover, body.gallery .banner .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit body.gallery .banner input[type=submit]:hover,
body.gallery .banner .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit body.gallery .banner input[type=submit]:hover {
  background-color: #f8f7f1 !important;
}
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;
  }
}
body.gallery .banner__layout-left .banner__text-container a:hover {
  background: #b79555 !important;
  color: #f8f7f1 !important;
  border-color: #b79555 !important;
}

.grid_book-a-tour {
  display: flex;
  justify-content: space-between;
  padding: 40px 20px;
  padding-top: var(--padding-top, 40px);
  padding-bottom: var(--padding-bottom, 40px);
}
@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_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;
}
.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;
}
.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_image .book-a-tour .footer__container {
  grid-template-rows: 1fr;
  grid-template-areas: "copyright_last copyright_last copyright_last copyright_last copyright_last" !important;
  padding-bottom: 80px;
  padding-top: 80px;
}
@media (min-width: 992px) {
  .grid_book-a-tour .grid_item_image .book-a-tour .footer__container {
    grid-template-areas: "copyright_last copyright_last copyright_last copyright_last copyright_last" !important;
  }
}
.grid_book-a-tour .grid_item_image .book-a-tour .footer__contact,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__seperator,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__contact-info,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__social-media,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__site-maintenance,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__links,
.grid_book-a-tour .grid_item_image .book-a-tour .footer__promo {
  display: none;
}
.grid_book-a-tour .grid_item_image .book-a-tour .footer__credits {
  margin-top: 0;
  padding: 0;
}
.grid_book-a-tour .grid_item_image .book-a-tour .footer__container {
  padding: 40px 0;
}
.grid_book-a-tour .grid_item_image .book-a-tour .footer__copyright_reserved {
  margin-bottom: 24px;
}

.page-not-found-page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #b79555;
  padding: 120px 20px;
}
@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__take_me_home_button {
  background: #b79555;
  width: max-content;
  font-size: 16px;
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02rem;
}

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

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

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

.resources-filters {
  display: flex;
  justify-content: space-between;
  padding: 80px 5.55vw 40px;
}
body.resources .resources-filters {
  border-bottom: 1px solid #a0a0a0;
}
@media (max-width: 991.8px) {
  .resources-filters {
    flex-direction: column;
    padding: 42px 20px 22px 20px;
  }
}
.resources-filters .faq-section {
  max-width: 287px;
}
@media (max-width: 991.8px) {
  .resources-filters .faq-section {
    max-width: unset;
    display: none;
  }
}
.resources-filters .faq-section .heading_level_five {
  font-family: "RecklessNeue-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 26.9px;
  text-align: left;
  margin-bottom: 18px;
}
.resources-filters .faq-section a {
  font-family: "acumin-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #b79555;
}
.resources-filters .faq-section a:hover {
  color: #212322;
}
.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-family: "RecklessNeue-RegularItalic", sans-serif;
  font-weight: 400;
  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: 40px;
}
@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-family: "RecklessNeue-Light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  padding: 6px 6px 6px 12px;
  height: 40px;
  color: #a0a0a0;
  position: relative;
  height: 41px;
  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: 12px 12px 10px;
  color: #212322;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.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;
}
@media (max-width: 991.8px) {
  .resources-filters .filter-section .dropdown-menu li {
    padding: 10px;
  }
}
.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;
}
.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;
  gap: 40px;
  padding: 40px 5.55vw;
  border-bottom: 1px solid #a0a0a0;
  background-color: #f8f7f1;
}
@media (max-width: 991.8px) {
  .resources-two-col-container {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }
}
.resources-two-col-container .resources-left-section {
  flex: 1;
  padding: 80px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section {
    padding: 40px 20px;
  }
}
.resources-two-col-container .resources-left-section:only-child {
  padding-left: calc((100% - 800px) / 2);
  padding-right: calc((100% - 800px) / 2);
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section:only-child {
    padding: 40px 20px;
  }
}
.resources-two-col-container .resources-left-section .heading_level_three {
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-left-section .heading_level_three {
    font-size: 26px;
    line-height: 29.15px;
  }
}
.resources-two-col-container .resources-left-section p {
  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) {
  .resources-two-col-container .resources-left-section p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
  }
}
.resources-two-col-container .resources-left-section .submitted-message {
  padding: 0 40px;
}
.resources-two-col-container .resources-left-section .submitted-message span {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #c47e5a !important;
}
.resources-two-col-container .resources-left-section .submitted-message span a {
  text-decoration: underline;
  color: inherit !important;
}
.resources-two-col-container .resources-right-section {
  flex: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  background-color: rgba(34, 33, 39, 0.4);
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section {
    min-height: 510px;
    aspect-ratio: 0.6;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content {
  padding: 80px;
  border-radius: 5px;
  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 {
    padding: 20px 20px 80px;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content .heading_level_three {
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content .heading_level_three {
    margin-bottom: 36px;
    font-weight: 500;
    font-size: 26px;
  }
}
.resources-two-col-container .resources-right-section .resources-image-content .paragraph {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content .paragraph {
    margin-bottom: 36px;
    font-size: 16px;
  }
}
@media (max-width: 991.8px) {
  .resources-two-col-container .resources-right-section .resources-image-content button {
    font-size: 16px;
  }
}
body.resources .card-swipper-section {
  border-bottom: 1px solid #a0a0a0;
  padding-top: 40px;
  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-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
}
@media (max-width: 991.8px) {
  body.resources .card-swipper-section .card-swipper-title {
    font-family: "RecklessNeue-RegularItalic", sans-serif;
    font-weight: 400;
    font-size: 36px;
  }
}

body.resources .banner .btn:hover, body.resources .banner .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit body.resources .banner input[type=submit]:hover,
body.resources .banner .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit body.resources .banner input[type=submit]:hover {
  background-color: #b79555 !important;
  color: #f8f7f1 !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-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 26.9px;
  letter-spacing: 0px;
  color: #212322;
  margin-bottom: 12px;
  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;
  }
}
.resources-list .resources-card a {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  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-family: "acumin-pro", sans-serif;
  font-weight: 300;
  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: 2/span 2;
  padding: 91.5px 40px;
  background-color: #b79555;
  color: #f8f7f1;
}
@media (max-width: 767.8px) {
  .resources-list .signup-inbox {
    order: 999;
    padding: 40px 20px;
  }
}
.resources-list .signup-inbox p {
  margin-bottom: 104px;
}
@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 {
  padding: 0;
}
.resources-list.hide-hubspot-form-block .signup-inbox {
  display: none;
}

.topic-filter-page .resources-container .heading_level_two {
  padding-left: 5.55vw;
  padding-right: 5.55vw;
  text-align: center;
}
@media (max-width: 991.8px) {
  .topic-filter-page .resources-container .heading_level_two {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
}

body.topic-filter-page .resources-list {
  border-bottom: 0;
}

.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-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  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: 864px;
  padding: 80px 20px;
  margin: 0 auto;
}
@media (max-width: 991.8px) {
  .individual-resource-container {
    padding: 40px 30px;
  }
}
.individual-resource-container p {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 1%;
  color: #29353f;
}
@media (max-width: 991.8px) {
  .individual-resource-container p {
    margin-bottom: 20px;
  }
}
.individual-resource-container img {
  margin-bottom: 12px;
}
@media (max-width: 991.8px) {
  .individual-resource-container img {
    margin-bottom: 15px;
  }
}
.individual-resource-container .wp-block-image {
  margin-bottom: 40px;
}
.individual-resource-container .wp-block-image.size-full {
  width: 100%;
}
@media (max-width: 991.8px) {
  .individual-resource-container .wp-block-image {
    margin-bottom: 30px;
  }
}
.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-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 47.08px;
  letter-spacing: 0px;
  color: #212322;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 33.63px;
  }
}
.individual-resource-container h3 {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 35.87px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h3 {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 29.15px;
  }
}
.individual-resource-container h4 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 26.9px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h4 {
    margin-bottom: 20px;
  }
}
.individual-resource-container h5 {
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 26.9px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
@media (max-width: 991.8px) {
  .individual-resource-container h5 {
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
.individual-resource-container q {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  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 ul,
.individual-resource-container ol {
  padding-left: 12px;
  margin-left: 12px;
}
.individual-resource-container ul li,
.individual-resource-container ol li {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  color: #29353f;
}
.individual-resource-container .wp-element-caption,
.individual-resource-container .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) {
  .individual-resource-container .wp-element-caption,
  .individual-resource-container .caption {
    margin: 15px 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: 60px 0px;
}
.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-family: "RecklessNeue-Light", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
  }
}
.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;
}
@media (max-width: 991.8px) {
  .individual-resource-container table td {
    font-family: "RecklessNeue-Light", sans-serif;
    font-size: 16px;
    line-height: 19.2px;
    padding: 16px 4px;
  }
}
.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-top: 80px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper {
    padding-top: 30px;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial {
  display: flex;
  align-items: center;
}
@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;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 58px;
  max-width: 171px;
  max-height: 171px;
  margin-bottom: 0px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial img {
    max-width: 209px;
    max-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;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial .testimonial-text h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 35.87px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .testimonial .testimonial-text h3 {
    font-size: 26px;
    line-height: 29.15px;
  }
}
.individual-resource-container .testimonial-wrapper .testimonial .testimonial-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1%;
  margin-bottom: 0;
}
.individual-resource-container .testimonial-wrapper .paragraph {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #212322;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .paragraph {
    margin-top: 40px;
  }
}
.individual-resource-container .testimonial-wrapper .heading_level_six {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #212322;
  margin-bottom: 30px;
}
@media (max-width: 991.8px) {
  .individual-resource-container .testimonial-wrapper .heading_level_six {
    margin-bottom: 40px;
  }
}

.blog-h1,
.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-h1,
body.article .banner .banner__text-container .banner-h2 {
  display: none;
}
body.article .banner .banner__text-container .blog-h1,
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;
}

@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;
}
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;
  }
}
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;
}

.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 .faq-accordion__title {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  padding-bottom: 40px;
  margin-bottom: 0;
  border-bottom: 1px solid #a0a0a0;
}
@media (max-width: 991.8px) {
  .faq .faq-accordion__title {
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0px;
    padding-bottom: 20px;
  }
}
.faq .faq-accordion__title:not(:first-child) {
  margin-top: 40px;
}
.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;
  }
}
.faq .faq-accordion__item {
  padding: 20px 0;
}
@media (max-width: 991.8px) {
  .faq .faq-accordion__item {
    padding: 20px 0 0;
  }
}
@media (max-width: 991.8px) {
  .faq .faq-accordion__item .faq-accordion__question {
    padding-top: 0;
  }
}
@media (max-width: 991.8px) {
  .faq .faq-accordion__item .faq-accordion__answer {
    padding-bottom: 20px;
  }
}
.faq .faq-accordion__item .faq-accordion__icon {
  width: 15px;
  height: 15px;
}
@media (max-width: 991.8px) {
  .faq .faq-accordion__item .faq-accordion__icon {
    width: 14px;
    height: 14px;
  }
}
.faq .faq-accordion__tab-list {
  row-gap: 0;
}

.search-results {
  background: #f8f7f1;
}
.search-results__container {
  padding: 0px 20px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .search-results__container {
    padding: 0px 80px 80px;
  }
}
.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 {
  color: #212322;
}
.search-results__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 40px;
  column-gap: 40px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .search-results__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .search-results__list {
    row-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.search-results__list-item.floorplan-item .card__media {
  width: 84.986%;
  margin: 0 auto;
  aspect-ratio: 1.6042;
}
@media (min-width: 992px) {
  .search-results__list-item.floorplan-item .card__media {
    width: 100%;
    aspect-ratio: 1.3333;
  }
}
.search-results__list-item.floorplan-item .card__image {
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.search-results__list-item.floorplan-item .card__content {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
@media (min-width: 768px) {
  .search-results__list-item.floorplan-item .card__content {
    width: 100%;
    margin: 0 auto;
  }
}
.search-results__list-item.floorplan-item .badge-wrapper {
  margin-bottom: 0;
}
.search-results__list-item.floorplan-item .floorplan__name {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  color: #212322;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (min-width: 992px) {
  .search-results__list-item.floorplan-item .floorplan__name {
    font-size: 28px;
    font-weight: 500;
    line-height: 0.679;
    letter-spacing: 0px;
  }
}
.search-results__list-item.floorplan-item .floorplan__price {
  color: #212322;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
}
@media (min-width: 992px) {
  .search-results__list-item.floorplan-item .floorplan__price {
    font-size: 18px;
  }
}
.search-results__list-item.floorplan-item .floorplan__details {
  display: flex;
  color: #212322;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
  flex-direction: column;
}
@media (min-width: 992px) {
  .search-results__list-item.floorplan-item .floorplan__details {
    row-gap: 1.5px;
    line-height: 100%;
    font-size: 18px;
  }
}
.search-results__list-item.floorplan-item .card__link {
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #b79555;
  line-height: 0.723;
}
.search-results__list-item.floorplan-item .card__link:hover {
  color: #212322;
}
@media (min-width: 992px) {
  .search-results__list-item.floorplan-item .card__link {
    font-size: 18px;
  }
}
.search-results__list-item .card {
  position: relative;
  height: auto;
  border-radius: 0;
  border: 0;
  flex-direction: column;
}
.search-results__list-item .card__media {
  flex-shrink: 0;
  width: 100%;
  line-height: 0;
}
@media (min-width: 992px) {
  .search-results__list-item .card__media {
    width: 100%;
  }
}
.search-results__list-item .card__image {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card__image {
    max-height: unset;
  }
}
.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;
  }
}
.search-results__list-item .card__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media (max-width: 991.8px) {
  .search-results__list-item .card__content {
    justify-content: flex-start;
    padding: 20px 20px 20px 0;
  }
}
.search-results__list-item .card__link {
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 992px) {
  .search-results__list-item .card__link {
    font-size: 18px;
  }
}

.home_page #mainContent {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .home_page #mainContent {
    display: block;
  }
}
@media (max-width: 991.8px) {
  .home_page #mainContent > *:nth-child(4) {
    order: 5;
  }
}
@media (max-width: 991.8px) {
  .home_page #mainContent > *:nth-child(5) {
    order: 4;
  }
}
@media (max-width: 991.8px) {
  .home_page #mainContent > *:nth-child(n+6) {
    order: 6;
  }
}
.home_page .card-swipper-section {
  padding-top: 65px;
}
@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;
  }
}
.home_page .instagram-feed__container {
  padding: 0px 20px 40px;
}
@media (min-width: 992px) {
  .home_page .instagram-feed__container {
    padding: 20px 5.56vw 60px;
  }
}
@media (max-width: 991.8px) {
  .home_page .two_col_wrapper .two_col_content h3 {
    padding-top: 30px;
    padding-right: 30px;
  }
}
.home_page .media-banner-with-content:not([data-media-type=video]):not([data-media-type=image]) .media-banner-with-content__container {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .home_page .media-banner-with-content:not([data-media-type=video]):not([data-media-type=image]) .media-banner-with-content__container {
    padding-bottom: 80px;
  }
}
@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;
  }
}
@media (max-width: 991.8px) {
  .home_page .fp-similar-units ~ .card-swipper-section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.privacy-policy .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content {
  max-width: 1040px;
}
.privacy-policy .media-banner-with-content .media-banner-with-content__container .media-banner-with-content__content span {
  letter-spacing: 0.01em;
}

.contact h1 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 992px) {
  .contact h1 {
    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 {
  padding: 0px 5.55vw;
}
.contact .resources-two-col-container a:hover {
  color: #212322 !important;
}
@media (max-width: 991.8px) {
  .contact .banner.noimage {
    padding: 40px 24px;
  }
}
.contact .banner.noimage .banner__text-container {
  margin-bottom: 80px;
}
@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;
    margin-bottom: 40px;
  }
}
.contact .banner.noimage .btn:hover, .contact .banner.noimage .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .contact .banner.noimage input[type=submit]:hover,
.contact .banner.noimage .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .contact .banner.noimage input[type=submit]:hover {
  background-color: #212322 !important;
  color: #f8f7f1 !important;
}

@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;
}
.resource-thank-you .grid_book-a-tour .grid_item a:hover {
  background-color: #f7efd8 !important;
  color: #212322;
  border-color: #f7efd8;
}
@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-thank-you .footer__container {
  grid-template-rows: 1fr;
  grid-template-areas: "copyright_last copyright_last copyright_last copyright_last copyright_last" !important;
  padding-bottom: 80px;
  padding-top: 80px;
}
@media (min-width: 992px) {
  .resource-thank-you .footer__container {
    grid-template-areas: "copyright_last copyright_last copyright_last copyright_last copyright_last" !important;
  }
}
.resource-thank-you .footer__contact,
.resource-thank-you .footer__seperator,
.resource-thank-you .footer__contact-info,
.resource-thank-you .footer__social-media,
.resource-thank-you .footer__site-maintenance,
.resource-thank-you .footer__links,
.resource-thank-you .footer__promo {
  display: none;
}
.resource-thank-you .footer__credits {
  margin-top: 0;
  padding: 0;
}

.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;
}

.special-offers .two_col_wrapper .two_col_content {
  margin-bottom: 10px;
}
.special-offers .two_col_wrapper .two_col_content h3 {
  margin-bottom: 20px;
}
.special-offers .two_col_wrapper .two_col_content p {
  font-family: "RecklessNeue-Light", sans-serif;
  margin-top: 10px;
  margin-bottom: 0px;
}
.special-offers .two_col_wrapper .two_col_content.resident_referral p {
  font-size: 24px;
}

@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 .banner__text-container .btn, .amenities .banner__text-container .hbspt-form .hs-submit input[type=submit], .hbspt-form .hs-submit .amenities .banner__text-container input[type=submit],
.amenities .banner__text-container .hs-form .hs-submit input[type=submit],
.hs-form .hs-submit .amenities .banner__text-container input[type=submit] {
  margin-top: 36px;
}
.amenities .grid_two_col_wrapper {
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .amenities .grid_two_col_wrapper {
    padding-bottom: 60px;
  }
}
.amenities .banner .btn:hover, .amenities .banner .hbspt-form .hs-submit input[type=submit]:hover, .hbspt-form .hs-submit .amenities .banner input[type=submit]:hover,
.amenities .banner .hs-form .hs-submit input[type=submit]:hover,
.hs-form .hs-submit .amenities .banner input[type=submit]:hover {
  background-color: #b79555 !important;
}
.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 (max-width: 991.8px) {
  .amenities .amenities_list_wrapper.bordered-list-wrapper .column_wrapper .column:nth-child(2) {
    margin-top: -27px;
  }
}

@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;
  background-color: #f8f7f1;
}
@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 6.39vw;
}
@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: calc(65% - 90px);
}
@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 {
  background-color: #f8f7f1;
  width: 35%;
}
@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: 40px 60px 60px;
  background-color: #f7efd8;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text {
    margin-top: 30px;
    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;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detail-wrapper .fp-text .heading_level_four {
    font-family: "RecklessNeue-RegularItalic", sans-serif;
    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 {
  width: 20%;
  min-width: 100px;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 9.5px;
}
@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: 20px;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  margin-bottom: 15px;
  margin-top: 15px;
}
@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;
}
.fp-detail-page .fp-detail-wrapper .fp-slider .slick-arrow {
  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: 18px;
  height: 10px;
  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.active-slide {
  opacity: 1;
}
.fp-detail-page .fp-detail-wrapper .slider-preview {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.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 (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 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: 4/3;
  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-family: "acumin-pro", sans-serif;
  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: 10px;
    margin-bottom: 20px;
  }
}
.fp-detail-page .fp-detail-wrapper .slider-preview .col_heading.mob {
  margin-bottom: 20px;
  font-family: "RecklessNeue-RegularItalic", sans-serif;
  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;
}
@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: 15px;
}
.fp-detail-page .fp-detailView .heading_level_five {
  font-family: "RecklessNeue-Light", sans-serif;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .heading_level_five {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    font-weight: 300;
  }
}
.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 {
  margin-bottom: 48px;
  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;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .download-fp svg {
    fill: #b79555;
  }
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .download-fp {
    color: #b79555;
    margin-bottom: 30px;
  }
}
.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 {
    color: #b79555;
    margin-bottom: 30px;
  }
  .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: 24px;
  max-width: 192px;
  margin-bottom: 20px;
}
@media (max-width: 991.8px) {
  .fp-detail-page .fp-detailView .unit-button-wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    gap: 10px;
  }
}
.fp-detail-page .fp-detailView .unit-button-wrapper .transparent_btn {
  border-color: #212322;
  color: #212322;
}
.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] {
  height: 39px;
  padding: 13px 20px 7px;
  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: 14.5px 36px 14.5px;
    height: 41px;
  }
}
.fp-detail-page .fp-detailView .unit-button-wrapper .btn.fill_btn_tan:hover, .fp-detail-page .fp-detailView .unit-button-wrapper .hbspt-form .hs-submit input.fill_btn_tan[type=submit]:hover, .hbspt-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input.fill_btn_tan[type=submit]:hover,
.fp-detail-page .fp-detailView .unit-button-wrapper .hs-form .hs-submit input.fill_btn_tan[type=submit]:hover,
.hs-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input.fill_btn_tan[type=submit]:hover {
  border: 1.5px solid #212322;
  background-color: #212322;
  color: #f8f7f1;
}
.fp-detail-page .fp-detailView .unit-button-wrapper .btn.transparent_btn:hover, .fp-detail-page .fp-detailView .unit-button-wrapper .hbspt-form .hs-submit input.transparent_btn[type=submit]:hover, .hbspt-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input.transparent_btn[type=submit]:hover,
.fp-detail-page .fp-detailView .unit-button-wrapper .hs-form .hs-submit input.transparent_btn[type=submit]:hover,
.hs-form .hs-submit .fp-detail-page .fp-detailView .unit-button-wrapper input.transparent_btn[type=submit]:hover {
  border: 1.5px solid #212322;
  background-color: #212322;
  color: #f8f7f1;
}
.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;
  margin-bottom: 30px;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-item {
  border-top: unset;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-header {
  padding: 20px 0px;
  font-family: "RecklessNeue-Light", sans-serif;
  font-weight: 300;
  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 .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;
}
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ul li,
.fp-detail-page .fp-detailView .unit-accordion .accordion-content ol li {
  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.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 .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-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-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 6px 3px;
  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;
}
.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-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 .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-family: "RecklessNeue-MediumItalic", sans-serif;
  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-family: "RecklessNeue-RegularItalic", sans-serif;
    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-family: "acumin-pro", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1%;
  }
}

.fp-similar-units {
  padding: 75px 5.55vw;
  background-color: #f8f7f1;
}
@media (max-width: 991.8px) {
  .fp-similar-units {
    padding: 75px 20px;
  }
}
.fp-similar-units h2 {
  font-family: "RecklessNeue-Regular", sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0%;
  color: #212322;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.fp-similar-units h2 {
  font-size: 36px;
}
@media screen and (min-width: 393px) {
  .fp-similar-units h2 {
    font-size: calc(36px + 20 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-similar-units h2 {
    font-size: 56px;
  }
}
.fp-similar-units h2 {
  line-height: 40px;
}
@media screen and (min-width: 393px) {
  .fp-similar-units h2 {
    line-height: calc(40px + 22.78 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-similar-units h2 {
    line-height: 62.78px;
  }
}
@media (max-width: 991.8px) {
  .fp-similar-units h2 {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.fp-similar-units h2 a {
  font-family: "RecklessNeue-MediumItalic", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 31.39px;
  color: #212322;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fp-similar-units h2 a {
  font-size: 20px;
}
@media screen and (min-width: 393px) {
  .fp-similar-units h2 a {
    font-size: calc(20px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-similar-units h2 a {
    font-size: 28px;
  }
}
.fp-similar-units h2 a {
  line-height: 22.42px;
}
@media screen and (min-width: 393px) {
  .fp-similar-units h2 a {
    line-height: calc(22.42px + 8.97 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-similar-units h2 a {
    line-height: 31.39px;
  }
}
.fp-similar-units h2 a:hover {
  color: #212322;
}
@media (max-width: 991.8px) {
  .fp-similar-units h2 a {
    margin-top: 15px;
  }
}
.fp-similar-units .similar-units-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}
@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 {
    border-right: 1px solid #a0a0a0;
  }
  .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: 0 16px 0 16px;
  max-width: 296px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .badge-wrapper {
  max-width: unset;
}
.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;
}
@media (max-width: 575.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .similar-unit-img-wrapper img {
    min-height: 144px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card .heading_level_four {
  margin-bottom: 12px;
  color: #212322;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0px;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card .heading_level_four {
    font-family: "RecklessNeue-RegularItalic", sans-serif;
    font-weight: 400;
    font-size: 20px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card p {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #212322;
  line-height: 21.6px;
  letter-spacing: 1%;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card p s {
  color: #888;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card p {
    font-size: 16px;
    line-height: 18px;
  }
}
.fp-similar-units .similar-units-wrapper .similar-unit-card a {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21.6px;
  color: #b79555;
  margin-top: 14px;
  display: block;
}
.fp-similar-units .similar-units-wrapper .similar-unit-card a:hover {
  color: #212322;
}
@media (max-width: 1024.8px) {
  .fp-similar-units .similar-units-wrapper .similar-unit-card a {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
  }
}
@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;
  }
}

.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: 1.9vw;
  top: 42px;
  font-size: 0;
  width: 32px;
  height: 32px;
  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 {
    right: 22px;
    top: 22px;
  }
}

.availability-overlay .availability-overlay_content {
  background: #f8f7f1;
  max-width: 70vw;
  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: 95vw;
    max-height: 70vh;
    min-width: auto;
  }
}
.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: 39px 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: 25px 20px;
  }
}
@media (max-width: 575.8px) {
  .availability-overlay table th {
    padding: 18px 6px;
  }
}
.availability-overlay table td {
  padding: 34px 50px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  color: #212322;
  font-family: "acumin-pro", sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
}
.availability-overlay table td .transparent_btn {
  border-color: #212322;
  color: #212322;
  padding: 13.5px 36px 14.5px;
  height: 41px;
  display: inline-block;
}
.availability-overlay table td .transparent_btn:active, .availability-overlay table td .transparent_btn:hover {
  background-color: #212322;
  border: 1px solid #212322;
  color: #f8f7f1;
}
@media (max-width: 991.8px) {
  .availability-overlay table td {
    padding: 25px 20px;
  }
}
@media (max-width: 575.8px) {
  .availability-overlay table td {
    padding: 18px 6px;
  }
}

.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: #c47e5a !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 h1 {
  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 h1 {
  font-size: 30px;
}
@media screen and (min-width: 393px) {
  .fp-not-found-wrapper .fp-not-found-content h1 {
    font-size: calc(30px + 8 * (100vw - 393px) / 1047);
  }
}
@media screen and (min-width: 1440px) {
  .fp-not-found-wrapper .fp-not-found-content h1 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .fp-not-found-wrapper .fp-not-found-content h1 {
    font-size: 42px;
  }
}

.is-safari .badge-wrapper .badge {
  padding: 1px 6px 3px;
}

.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;
}

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