.hero {
  position: relative;
  margin-bottom: var(--section-spacing);
}
.hero__container {
  /* keep */
}
.hero__tagline {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0px 4px 10px rgba(32, 34, 21, 0.15);
  padding: 30px;
}
.hero__tagline small {
  letter-spacing: 0.35em;
}
.hero__slider {
  position: relative;
}
.hero__slider:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.hero__slider-img canvas {
  min-height: 400px;
}
.hero__button {
  position: absolute;
  z-index: 2;
  bottom: max(1.875vw, 30px);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-decoration: none;
}
.hero__button i {
  transform: rotate(90deg);
  margin-left: min(-0.0625vw, -1px);
}

.overview {
  margin: var(--section-spacing) 0;
  --slider-width: max(34.75vw, 450px);
}
.overview__container {
  position: relative;
}
.overview__info {
  position: relative;
  z-index: 2;
  padding-top: max(1.875vw, 20px);
  pointer-events: none;
}
.overview__info--hide-intro {
  padding-top: 0;
}
.overview__info--hide-intro .overview__other {
  padding: 0;
  max-width: 100%;
}
.overview__info--hide-intro .overview__other ul {
  justify-content: center;
}
.overview__title {
  max-width: calc(100% - var(--slider-width));
  padding-right: max(4.6875vw, 30px);
  pointer-events: auto;
}
.overview__content {
  line-height: 2;
  margin-top: max(1.875vw, 20px);
  max-width: calc(100% - var(--slider-width));
  padding-right: max(4.6875vw, 30px);
  pointer-events: auto;
}
.overview__link {
  margin-top: max(2.5vw, 30px);
}
.overview__link a {
  pointer-events: auto;
}
.overview__other {
  padding: max(4.375vw, 30px) max(3.125vw, 30px) max(3.75vw, 30px) 0;
  background: #fff;
  max-width: max-content;
  pointer-events: auto;
  display: none;
}
.overview__other ul {
  display: flex;
  flex-flow: row wrap;
}
.overview__other ul > * + * {
  margin-left: 3.75vw;
}
.overview__other ul li {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.overview__other ul li > * + * {
  margin-left: max(1.25vw, 15px);
}
.overview__other ul li > span {
  flex-shrink: 0;
  background: var(--primary);
}
.overview__other ul li > div > * + * {
  margin-top: 5px;
}
.overview__other ul li > div strong {
  display: block;
  font-family: var(--font-family-title);
  font-size: max(2.5vw, 25px);
  font-weight: 400;
  color: var(--primary);
}
.overview__other ul li > div small {
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--primary-text);
}
.overview__slider {
  position: absolute !important;
  top: 0;
  right: 15px;
  width: var(--slider-width);
  bottom: 0;
}
.overview__slider-controls {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 9%;
}
.overview__slider .splide__track, .overview__slider .splide__track * {
  width: 100%;
  height: 100%;
}

.cta {
  position: relative;
  z-index: 1;
  margin: var(--section-spacing) 0;
}
.cta__container {
  /* keep */
}
.cta__title {
  /* keep */
}
.cta__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(0.1875vw, 3px);
}
.cta__links > a {
  position: relative;
  display: block;
  height: max(21.875vw, 200px);
  background: var(--secondary);
  background: #ffffff;
  transition: background var(--default-transition);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.cta__links > a img,
.cta__links > a strong {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta__links > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
  transform: scale(1.05);
  opacity: 0;
  transition: var(--default-transition) !important;
  transition-property: opacity, transform !important;
}
.cta__links > a strong {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-title);
  font-size: max(1.875vw, 25px);
  font-weight: 400;
  color: var(--secondary-text);
  color: var(--secondary);
  padding: 20px;
}
.cta__links > a:active, .cta__links > a:hover {
  /* background: #000; */
}
.cta__links > a:active img, .cta__links > a:hover img {
  opacity: 0.23;
  transform: none;
}
.cta__links > a:last-child {
  display: none;
}
.cta__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta__bg:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.cta__bg canvas {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
}
.cta--theme-b .cta__container {
  height: max(43.75vw, 350px);
  display: flex;
  align-items: center;
}
.cta--theme-b .cta__links {
  width: 100%;
}
.cta--theme-b .cta__links > a {
  height: max(7.5vw, 90px);
  background: #fff;
}
.cta--theme-b .cta__links > a strong {
  color: var(--primary-text);
  font-size: max(1.5625vw, 20px);
  transition: color var(--default-transition);
}
.cta--theme-b .cta__links > a:focus, .cta--theme-b .cta__links > a:hover {
  background: var(--primary);
}
.cta--theme-b .cta__links > a:focus strong, .cta--theme-b .cta__links > a:hover strong {
  color: #fff;
}

.video {
  position: relative;
  margin: var(--section-spacing) 0;
}
.video__container {
  /* keep */
}
.video__img canvas {
  min-height: 300px;
}
.video__icon {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0;
  width: max(7.25vw, 60px);
  height: max(7.25vw, 60px);
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: max(2.5vw, 25px);
  color: #fff;
  padding-left: max(0.25vw, 4px);
  transition: var(--default-transition);
  transition-property: color, border, background;
}
.video__icon:focus, .video__icon:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.video__popup {
  position: relative;
  display: block;
}
.video__plyr {
  display: block;
  width: 100%;
  height: max(43.75vw, 450px);
  background: #333;
  object-fit: cover;
}
.video .plyr {
  --plyr-color-main: var(--primary);
  background-color: transparent;
  height: max(43.75vw, 450px);
}
.video .plyr__video-wrapper, .video .plyr__poster {
  background-color: transparent !important;
}
.video .plyr__poster {
  background-size: cover !important;
}
.video .plyr__video-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.video .plyr--paused .plyr__controls {
  opacity: 0;
}
.video .plyr__control--overlaid {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: max(7.25vw, 80px);
  height: max(7.25vw, 80px);
  background: transparent;
  border: 1px solid #fff;
}
.video .plyr__control--overlaid svg {
  width: max(1.875vw, 25px);
  height: max(2.25vw, 30px);
}
.video .plyr__control--overlaid:hover {
  border-color: var(--plyr-color-main);
}

.gallery {
  position: relative;
  margin: var(--section-spacing) 0;
  --info-height: 18.75vw;
  --controls-height: 12.5vw;
  --main-slide-width: 62%;
  --main-slide-height: 37.5vw;
  --thumb-slide-width: 57.333%;
  --thumb-slide-height: calc(100% - var(--info-height));
  --thumb-padding: max(3.125vw, 30px);
  --thumb-padding-right: max(6.25vw, 50px);
  --thumb-gap: max(0.375vw, 6px);
  --thumb-item-size: calc(50% - (var(--thumb-gap) / 2));
}
.gallery__container {
  /* keep */
}
.gallery__slider {
  position: relative;
  height: calc(var(--info-height) + var(--controls-height) + max(18.75vw, 100px));
}
.gallery__slider-img {
  position: absolute;
  display: block;
}
.gallery__slider-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__slider-img canvas {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  cursor: -webkit-zoom-out;
  transition: opacity var(--default-transition);
  pointer-events: none;
}
.gallery__slider-img canvas:hover {
  opacity: 0.75;
}
.gallery__slider-img--main {
  top: 0;
  left: 0;
  width: var(--main-slide-width);
  height: var(--main-slide-height);
}
.gallery__slider-img--main-size-full {
  width: 100%;
  height: 100%;
}
.gallery__slider-img--thumb {
  bottom: 0;
  right: 0;
  width: var(--thumb-slide-width);
  height: var(--thumb-slide-height);
  padding: var(--thumb-padding);
  padding-right: var(--thumb-padding-right);
  padding-bottom: 0;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, minmax(var(--thumb-item-size), 1fr));
  grid-template-rows: repeat(2, minmax(var(--thumb-item-size), 1fr));
  gap: var(--thumb-gap);
}
.gallery__slider-img--thumb-size-1 a {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__slider-img--thumb-size-2 a {
  grid-column: span 2;
}
.gallery__slider-img--thumb-size-3 a:last-child {
  grid-column: span 2;
}
.gallery__slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + var(--thumb-padding) - var(--thumb-slide-width));
  padding-right: var(--thumb-padding);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--controls-height);
  background: #fff;
}
.gallery__slider .splide__track, .gallery__slider .splide__slide {
  width: 100%;
  height: 100%;
}
.gallery__slider:not(.is-initialized) + * {
  display: none;
}
.gallery__single {
  /* keep */
}
.gallery__info {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: calc(100% - var(--main-slide-width));
  padding-right: max(6.25vw, 50px);
  height: var(--info-height);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
}
.gallery__info > * + * {
  margin-top: max(1.875vw, 30px);
}

.floor-plan {
  position: relative;
  margin: var(--section-spacing) 0;
  padding: max(4.6875vw, 50px) max(6.875vw, 30px);
  background: var(--secondary);
}
.floor-plan__container {
  /* keep */
}
.floor-plan__title {
  /* keep */
}
.floor-plan__slider {
  margin-top: max(1.875vw, 30px);
  padding: 0 calc(max(4.0625vw, 30px) + var(--arrows-size));
}
.floor-plan__slider-img {
  /* keep */
}
.floor-plan__slider-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floor-plan__single {
  position: relative;
  margin: max(1.875vw, 30px) auto 0;
  max-width: calc(var(--content-container) - 30px);
}
.floor-plan__link {
  text-align: center;
  margin-top: max(3.125vw, 30px);
}

.property-info {
  margin: var(--section-spacing) 0;
  background: var(--primary-background);
}
.property-info__container {
  /* keep */
}
.property-info__title {
  /* keep */
}
.property-info__accordion {
  margin-top: max(1.25vw, 20px);
}
.property-info__accordion-item {
  display: block;
  overflow: hidden;
}
.property-info__accordion-item--open .property-info__accordion-header:after {
  content: "-";
  font-size: max(1.5625vw, 20px);
}
.property-info__accordion-header {
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: max(5vw, 60px);
  border-bottom: 1px solid var(--primary);
  padding: 0;
}
.property-info__accordion-header:after {
  content: "+";
  display: block;
  font-size: max(1.125vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary);
}
.property-info__accordion-header span {
  display: block;
  font-size: max(1.125vw, 16px);
  font-weight: 400;
  line-height: 1;
}
.property-info__accordion-body {
  padding: max(1.875vw, 20px) 0;
  border-bottom: 1px solid var(--primary);
}
.property-info__accordion-body > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(0.9375vw, 15px) max(3.125vw, 30px);
}
.property-info__accordion-body > ul > li {
  display: flex;
  align-items: baseline;
  font-size: max(0.875vw, 14px);
  line-height: 1.2;
  text-align: left;
}
.property-info__accordion-body > ul > li > * + * {
  margin-left: max(1.25vw, 15px);
}
.property-info__accordion-body > ul > li > strong {
  width: 200px;
  flex-shrink: 0;
}
.property-info__accordion-body > ul > li > p {
  flex-grow: 1;
}

.agent-info {
  margin: var(--section-spacing) 0;
  --spacing: max(3.125vw, 30px);
  background: var(--primary-background);
}
.agent-info__container {
  display: flex;
}
.agent-info__container > * + * {
  margin-left: max(5vw, 30px);
}
.agent-info__location {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  padding: var(--spacing) 0 0 var(--spacing);
}
.agent-info__location:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 57%;
  height: 64%;
  background: var(--secondary);
  pointer-events: none;
}
.agent-info__location-iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  background: rgba(var(--secondary-rgb), 0.5);
}
.agent-info__contact {
  min-height: max(31.25vw, 350px);
  padding: 30px;
  padding-left: 0;
  display: flex;
  align-items: center;
  width: max(40.625vw, 450px);
  max-width: 100%;
  flex-shrink: 0;
  flex-direction: column;
}
.agent-info__contact > * + * {
  margin-left: max(2.5vw, 20px);
}
.agent-info__contact > canvas {
  display: block;
  width: max(11.625vw, 80px);
  height: max(11.625vw, 80px);
  border: max(0.8125vw, 8px) solid #fff;
  border-radius: 50%;
  outline: 1px solid var(--primary);
  flex-shrink: 0;
  background-color: #dcdcdc;
  background-size: cover;
  background-position: top center;
}
.agent-info__contact > div {
  flex-grow: 1;
  padding: 30px;
}
.agent-info__contact > div > h2 {
  font-family: var(--font-family-title);
  font-size: max(2.1875vw, 25px);
  font-weight: 400;
  line-height: 1;
}
.agent-info__contact > div > ul {
  display: block;
  margin-top: max(0.9375vw, 15px);
}
.agent-info__contact > div > ul > * + * {
  margin-top: max(0.625vw, 10px);
}
.agent-info__contact > div > ul > li {
  display: block;
  text-transform: uppercase;
}
.agent-info__contact > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color var(--default-transition);
  text-overflow: ellipsis;
  overflow: hidden;
}
.agent-info__contact > div > ul > li > a:active, .agent-info__contact > div > ul > li > a:hover {
  color: var(--primary);
}
.agent-info__contact > div > .site-button {
  margin-top: max(1.875vw, 30px);
}

.request-info {
  position: relative;
  padding: var(--section-spacing) 0;
}
.request-info__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.request-info__bg:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  pointer-events: none;
}
.request-info__bg canvas {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  filter: grayscale(1);
}
.request-info__container {
  /* keep */
}
.request-info__title {
  /* keep */
}
.request-info__cf7 {
  position: relative;
  margin: 0 auto;
  margin-top: max(3.4375vw, 30px);
  max-width: max(49.375vw, 650px);
}
.request-info__cf7 .ajax-loader,
.request-info__cf7 .wpcf7-spinner {
  position: absolute;
  filter: invert(1);
  right: 100%;
  top: 0;
  bottom: 0;
  margin: auto 20px;
}
.request-info__cf7 .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #fff !important;
  margin: max(1.875vw, 20px) 0 0 !important;
  text-align: center;
}
.request-info__cf7 .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  margin: auto 0;
  padding: 5px 10px;
  background: #fff;
  border: none;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: -0.015em;
}
.request-info__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(1.25vw, 15px) max(0.9375vw, 15px);
}
.request-info__form-field {
  position: relative;
}
.request-info__form-field--full-width {
  grid-column: span 2;
}
.request-info__form-field br,
.request-info__form-field label {
  display: none;
}
.request-info__form-field input[type=text],
.request-info__form-field input[type=tel],
.request-info__form-field input[type=email],
.request-info__form-field textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
  display: block;
  width: 100%;
  height: max(3.125vw, 40px);
  border-bottom: 1px solid rgba(var(--secondary-text-rgb), 0.5);
  font-size: max(0.875vw, 12px);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: rgba(var(--secondary-text-rgb), 0.75);
  padding: 0;
  transition: var(--default-transition);
}
.request-info__form-field input[type=text]:focus, .request-info__form-field input[type=text]:active,
.request-info__form-field input[type=tel]:focus,
.request-info__form-field input[type=tel]:active,
.request-info__form-field input[type=email]:focus,
.request-info__form-field input[type=email]:active,
.request-info__form-field textarea:focus,
.request-info__form-field textarea:active {
  border-color: var(--secondary-text);
  color: var(--secondary-text);
}
.request-info__form-field textarea {
  resize: none;
  padding-top: max(1.25vw, 15px);
  height: max(10vw, 100px);
  overflow: -moz-hidden-unscrollable;
  padding-right: calc(max(2.875vw, 36px) + max(1.875vw, 20px));
}
.request-info__form-field textarea::-webkit-scrollbar {
  display: none;
}
.request-info__form-submit {
  position: absolute;
  bottom: max(1.875vw, 20px);
  right: 0;
}
.request-info__form-submit i {
  width: max(2.875vw, 36px);
  height: max(2.9375vw, 37px);
  background: var(--secondary-text);
  cursor: pointer;
}
.request-info__form-submit input {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.request-info__form-submit:hover i {
  background: var(--primary);
}

.scrollspy {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.scrollspy__navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--spacing);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.scrollspy__navigation > * + * {
  margin-top: max(2.5vw, 20px);
}
.scrollspy__navigation-item {
  position: relative;
  display: block;
  pointer-events: auto;
}
.scrollspy__navigation-item .site-icon {
  transition-property: background, color, opacity;
}
.scrollspy__navigation-item .site-icon.main {
  background: var(--secondary);
}
.scrollspy__navigation-item--is-active .site-icon, .scrollspy__navigation-item:active .site-icon, .scrollspy__navigation-item:hover .site-icon {
  background: var(--primary);
}

.flyer {
  position: relative;
  display: block;
}
.flyer__container {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: max(1.5625vw, 25px);
  width: max(40.625vw, 650px);
  transition: opacity var(--default-transition);
  background: #fff;
}
.flyer__title {
  position: relative;
  display: block;
  text-align: center;
}
.flyer__title > * + * {
  margin-top: max(0.625vw, 10px);
}
.flyer__title strong {
  display: block;
  font-family: var(--font-family-title);
  font-size: max(2.5vw, 30px);
  font-weight: 400;
}
.flyer__title small {
  display: block;
  font-size: max(1vw, 16px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: inherit;
}
.flyer__specs {
  position: relative;
  display: block;
  margin-top: max(3.125vw, 50px);
}
.flyer__specs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  margin: min(-0.9375vw, -15px) min(-1.5vw, -24px);
}
.flyer__specs ul li {
  display: flex;
  align-items: center;
  padding: max(0.9375vw, 15px) max(1.5vw, 24px);
}
.flyer__specs ul li > * + * {
  margin-left: max(0.9375vw, 15px);
}
.flyer__specs ul li > span {
  background: var(--primary) !important;
}
.flyer__specs ul li > span.price {
  width: max(2.4375vw, 39px);
  height: max(2.4375vw, 39px);
}
.flyer__specs ul li > span.beds {
  width: max(2.25vw, 36px);
  height: max(2.375vw, 38px);
}
.flyer__specs ul li > span.baths {
  width: max(2.6875vw, 43px);
  height: max(2.3125vw, 37px);
}
.flyer__specs ul li > span.sqft {
  width: max(2.5625vw, 41px);
  height: max(2.5625vw, 41px);
}
.flyer__specs ul li > div {
  position: relative;
  display: block;
}
.flyer__specs ul li > div strong {
  display: block;
  font-family: var(--font-family-title);
  font-size: max(1.9075vw, 30.52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary) !important;
}
.flyer__specs ul li > div small {
  display: block;
  font-size: max(0.75vw, 12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.flyer__img {
  position: relative;
  display: block;
  margin-top: max(2.5vw, 40px);
}
.flyer__img img.print {
  display: none;
}
.flyer__heading {
  font-family: var(--font-family-title);
  font-size: max(2.75vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.flyer__overview {
  position: relative;
  display: block;
  max-width: var(--max-size);
  margin: max(3.75vw, 60px) auto;
  padding: 0 max(1.875vw, 30px);
}
.flyer__overview > * + * {
  margin-top: max(1.25vw, 20px);
}
.flyer__overview p {
  font-size: max(0.9375vw, 15px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
.flyer__overview > div > * + * {
  margin-top: 2em;
}
.flyer__information {
  position: relative;
  display: block;
  padding: 0 max(1.5625vw, 25px);
}
.flyer__information-heading {
  text-align: center;
}
.flyer__information-list {
  display: block;
  margin-top: max(2.5vw, 40px);
}
.flyer__information-list > * + * {
  margin-top: max(2.8125vw, 45px);
}
.flyer__information-list h3 {
  display: block;
  text-align: center;
  font-size: max(1.125vw, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.flyer__information-list ul {
  position: relative;
  display: block;
  margin-top: max(2.8125vw, 45px);
}
.flyer__information-list ul li {
  display: flex;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #d9d9d9;
  padding: max(1.25vw, 20px) 0 max(0.9375vw, 15px);
}
.flyer__information-list ul li:first-child {
  padding-top: 0;
}
.flyer__information-list ul li:last-child {
  border-bottom: none;
}
.flyer__information-list ul li > strong {
  width: max(9.0625vw, 145px);
  padding: 0 20px 0 15px;
  font-size: max(1vw, 16px);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.flyer__information-list ul li > p {
  flex-grow: 1;
  font-size: max(0.875vw, 14px);
  font-weight: 400;
  line-height: 1.4;
}
.flyer__footer {
  position: relative;
  display: block;
  background: var(--primary-text) !important;
  margin-top: max(4.6875vw, 75px);
  padding: max(5.3125vw, 85px) max(1.25vw, 20px) max(6.25vw, 100px);
  break-inside: avoid;
}
.flyer__logo {
  position: relative;
  display: block;
}
.flyer__logo img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
.flyer__logo img.print {
  display: none;
}
.flyer__contact {
  position: relative;
  display: block;
  margin-top: max(3.75vw, 60px);
}
.flyer__contact ul {
  position: relative;
  display: block;
}
.flyer__contact ul > * + * {
  margin-top: max(0.9375vw, 15px);
}
.flyer__contact ul li {
  display: block;
  color: #fff !important;
  text-align: center;
}
.flyer__contact ul li i {
  background: var(--primary) !important;
  display: inline-block;
  margin-right: 5px;
}
.flyer__contact ul li i.phone {
  transform: rotateY(-180deg);
  margin-top: -5px;
}
.flyer__contact ul li span {
  font-size: max(0.9375vw, 15px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff !important;
}
.flyer__print {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max(3.75vw, 60px);
  height: max(3.75vw, 60px);
  margin: max(1.25vw, 20px);
  padding: 0;
  border-radius: 50%;
  background: #f5f5f5;
  background: transparent;
  border: 4px dashed #ededed;
  transition: opacity var(--default-transition);
}
.flyer__print:hover {
  opacity: 0.75;
}
.flyer__print svg {
  width: 65%;
  height: 65%;
  display: block;
}
.flyer__print svg .part-primary {
  fill: #737070;
}

/*******************************************************
 *
 * Print
 *
 *******************************************************/
@media print {
  @page {
    margin: 30px;
  }
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .flyer {
    height: auto !important;
  }
  .flyer__container {
    transform: none !important;
  }
  .flyer__overview {
    page-break-before: always;
  }
  .flyer__img canvas {
    height: 700px;
  }
  .flyer__back, .flyer__print {
    display: none !important;
  }
  .flyer img.main {
    display: none;
  }
  .flyer img.print {
    display: block;
  }
}
/*******************************************************
 *
 * Media Queries
 *
 *******************************************************/
@media only screen and (max-width: 991px) {
  .scrollspy {
    display: none;
  }
  .overview__info {
    padding-top: 0;
    max-width: 100%;
    text-align: center;
  }
  .overview__info > * {
    min-width: 100%;
  }
  .overview__title {
    padding: 0;
  }
  .overview__other {
    margin-top: 50px;
    padding: 0;
  }
  .overview__other ul {
    justify-content: center;
    margin: -15px;
  }
  .overview__other ul li {
    margin-left: 0 !important;
    padding: 15px;
  }
  .overview__content {
    padding-right: 0;
  }
  .overview__slider {
    position: relative !important;
    width: 100%;
    margin-top: 40px;
    right: auto;
  }
  .overview__slider-controls {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
  }
  .gallery__info {
    padding-right: 0;
  }
  .gallery__slider {
    margin-top: var(--spacing);
  }
  .gallery__slider-img--thumb {
    padding-right: 0;
  }
  .gallery__single {
    margin-top: var(--spacing);
  }
  .gallery__info {
    position: relative;
    width: auto;
    height: auto;
    text-align: center;
  }
  .gallery__link {
    margin-top: var(--spacing);
  }
  .floor-plan {
    padding-left: 30px;
    padding-right: 30px;
  }
  .agent-info__container {
    flex-direction: column-reverse;
  }
  .agent-info__contact {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 0;
    display: block;
  }
  .agent-info__contact > canvas {
    margin: 0 auto;
  }
  .agent-info__contact > div {
    margin: 30px 0 0;
  }
  .agent-info__location {
    margin-top: 50px;
  }
  .agent-info__location iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .cta__links {
    grid-template-columns: 1fr;
  }
  .cta__links > a {
    height: 125px;
  }
  .video .plyr {
    height: 350px;
  }
  .video .plyr__control--overlaid {
    width: 48px;
    height: 48px;
  }
  .video .plyr__control--overlaid svg {
    width: 20px;
    height: 25px;
  }
  .gallery__slider {
    height: auto;
  }
  .gallery__slider-img {
    position: relative;
    width: 100% !important;
  }
  .gallery__slider-img--thumb {
    padding-left: 0;
    padding-top: var(--thumb-gap);
  }
  .gallery__slider-controls {
    position: static;
    background: transparent;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: var(--spacing);
    padding: 0;
  }
  .floor-plan {
    padding-left: 15px;
    padding-right: 15px;
  }
  .floor-plan__slider {
    padding: 0;
  }
  .floor-plan__slider-controls {
    position: relative;
    justify-content: center;
    margin-top: var(--spacing);
  }
  .property-info__accordion-body > ul {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 480px) {
  .gallery {
    --thumb-padding: 6px;
  }
  .property-info__accordion-body > ul {
    gap: var(--spacing);
  }
  .property-info__accordion-body > ul > li {
    display: block;
  }
  .property-info__accordion-body > ul > li > * + * {
    margin: 10px 0 0;
  }
  .property-info__accordion-body > ul > li strong {
    width: 100%;
  }
  .request-info__form {
    grid-template-columns: 1fr;
  }
  .request-info__form-field {
    grid-column: span 1 !important;
  }
}
