@charset "UTF-8";
@import url("reset.css");
@import url("fonts.css");
@import url("swiper-bundle.min.css");
:root {
  --app-height: 100vh;
  --headroom-height: auto;
  --c0: #fffcf3;
  --c1: #2c2c2c;
  --c2: #f8f4ef;
  --c3: #ea0000;
  --c4: #ec8877;
  --c5: #e6624b;
  --c6: #436a55;
  --c7: color-mix(in srgb, currentColor 20%, transparent);
  --c8: color-mix(in srgb, currentColor 30%, transparent);
  --c9: color-mix(in srgb, currentColor 60%, transparent);
  --c10: color-mix(in srgb, currentColor 80%, transparent);
  --wr: 40rem;
  --awr: calc(-1 * var(--wr));
  --gap: 20rem;
  --sl: max(1px, 1rem);
  --br1: 4rem;
  --btn: max(50px, 64rem);
  --f-s: max(14px, 16rem);
  --f-d: max(14px, 18rem);
  --f-m: max(14px, 22rem);
  --f-b: max(14px, 24rem);
  --f-l: max(14px, 28rem);
  --f-xl: max(14px, 32rem);
  --f-xxl: max(14px, 48rem);
  --f-xxxl: max(14px, 61.2rem);
  --f-xxxxl: clamp(36rem, 5.859375vw ,80rem);
  --mw: 192000px;
}

/* globals */
@media screen {
  html {
    font-size: 0.0625vw;
    background-color: var(--c2);
  }
  .document {
    font-weight: 400;
    font-family: "Freigeist", sans-serif;
    font-size: var(--f-d);
    line-height: 1.2;
    color: var(--c1);
    background-color: var(--c2);
    letter-spacing: -0.04em;
  }
  .wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--wr);
    max-width: var(--mw);
  }
  .preloader {
    background-color: var(--c2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    display: flex;
    color: var(--c1);
    will-change: transform;
  }
  .preloader-inner {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: 50rem;
    grid-template-columns: auto;
    padding: 50rem var(--wr);
    width: 100%;
  }
  .preloader-inner::before {
    content: "";
  }
  .preloader-logo {
    max-width: 300rem;
    width: 100%;
    margin: auto;
  }
  .preloader-progress {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    flex-direction: column;
    position: relative;
  }
  .preloader-progress::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--c8);
    border-radius: var(--br1);
  }
  .preloader-progress-bar {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--c4);
    border-radius: var(--br1);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.01s;
  }
  .preloader-progress-text {
    margin-top: 5rem;
    font-size: var(--f-b);
    color: var(--c4);
  }
  .loading {
    pointer-events: none;
  }
  .loading .preloader {
    transition: none;
    opacity: 1;
    visibility: visible;
  }
  .s14-1 {
    will-change: transform;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  .s14-8::before,
  .s14-8::after {
    will-change: transform;
  }
  .loading .s14-1 {
    transform: translateY(100rem);
    opacity: 0;
    transition-delay: 0s;
  }
  .icon {
    display: flex;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    line-height: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translateY(2rem);
  }
  .cover,
  .contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    pointer-events: none;
  }
  .cover {
    object-fit: cover;
  }
  .contain {
    object-fit: contain;
  }
  .fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .button {
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    user-select: none;
    cursor: pointer;
    align-items: center;
    z-index: 1;
    position: relative;
    background-clip: border-box;
    border-radius: var(--br1);
    padding: 10rem 40rem;
    border: var(--sl) solid transparent;
    height: var(--btn);
  }
  .button:not(.fill) {
    overflow: hidden;
    position: relative;
  }
  .button-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 0 0.1em;
    font-weight: 500;
  }
  .button__default {
    background-color: var(--c4);
    color: var(--c2);
  }
  .button__secondary {
    color: var(--c4);
    border: var(--sl) solid;
  }
  .button__contrast {
    background-color: var(--c2);
    color: var(--c6);
    border: var(--sl) solid var(--c2);
  }
  .button__action {
    background-color: var(--c6);
    color: var(--c2);
  }
  .button__wide {
    width: 100%;
  }
  .button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .title {
    font-weight: normal;
    width: 100%;
    letter-spacing: -4%;
  }
  .title__small {
    font-size: var(--f-l);
    line-height: 1.2;
    font-weight: 400;
  }
  .title__medium {
    font-size: var(--f-xl);
  }
  .title__default {
    font-size: var(--f-xxl);
    line-height: 1;
  }
  .title__large {
    font-size: var(--f-xxxl);
    line-height: 0.9;
  }
  .subtitle {
    font-size: var(--f-b);
  }
  .subtitle:not(:first-child) {
    margin-top: 20rem;
  }
  .container {
    display: flex;
    flex-direction: column;
    min-height: var(--app-height);
  }
  .header {
    margin-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--c2);
    transition: background-color 0.3s;
  }
  body.is-home:not(.scrolled) .header {
    background-color: transparent;
  }
  .header-inner {
    z-index: 2;
    position: relative;
  }
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-gap: 50rem;
    align-items: center;
    padding: 11rem 0;
  }
  .topbar-logo {
    max-width: 225rem;
  }
  .topbar-nav ul {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 30rem;
    font-size: max(14px, 25rem);
    letter-spacing: -6%;
  }
  .topbar-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .topbar-menu-icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(30px, 45rem);
    height: max(30px, 45rem);
    border: max(1px, 2rem) solid var(--c4);
    border-radius: var(--br1);
    padding: 7%;
    margin-left: 15rem;
  }
  .topbar-menu-text {
    font-size: max(14px, 25rem);
    text-transform: uppercase;
  }
  .main {
    margin-top: 0;
    flex: auto;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
  }
  .page-header {
    position: relative;
    z-index: 1;
  }
  .page-header:not(:last-child) {
    margin-bottom: 100rem;
  }
  .page-header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-header-media {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 50rem var(--awr) 100rem;
    align-self: stretch;
  }
  .page-header-media:first-child {
    margin-top: 0;
  }
  .page-header-media:last-child {
    margin-bottom: 0;
  }
  .page-header-media::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 30%;
  }
  .page-header-title {
    max-width: 1100rem;
  }
  .page-header-subtitle {
    max-width: 1100rem;
  }
  .page-header-text {
    max-width: 760rem;
    margin-top: 40rem;
  }
  .page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .page-header-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, rgb(0, 0, 0));
    opacity: 0.7;
  }
  .page-header-bg ~ .page-header-main {
    padding: 400rem 0 40rem;
    color: var(--c2);
  }
  .section {
    position: relative;
    z-index: 1;
    margin-bottom: 130rem;
  }
  .section:only-child {
    flex: auto;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-header:not(:last-child) {
    margin-bottom: 50rem;
  }
  .section-header-main {
    max-width: 1100rem;
  }
  .section-header-secondary {
    max-width: 1100rem;
    margin-top: 20rem;
  }
  .tag {
    background-color: var(--c6);
    color: var(--c2);
    border-radius: var(--br1);
    font-weight: 500;
    padding: 5rem 16rem;
    display: inline-block;
    font-size: 20rem;
  }
  .map-image::before,
  .map-image::after {
    content: "";
    position: absolute;
    height: 100rem;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  .map-image::before {
    top: 0;
    background-image: linear-gradient(var(--c2), transparent);
  }
  .map-image::after {
    bottom: 0;
    background-image: linear-gradient(transparent, var(--c2));
  }
  .map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: 1;
    transition: opacity 0.25s;
    cursor: pointer;
  }
  .map-pin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: none;
    position: relative;
  }
  .map-pin-icon {
    flex: 1;
    width: 60rem;
    min-height: 80rem;
    background-image: url(../img/pin.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
  }
  .map-pin-title {
    flex: 1;
    text-align: center;
    max-width: 200rem;
    text-transform: uppercase;
    color: var(--c6);
    font-weight: 500;
    padding-top: 10rem;
  }
  .map-pin-card {
    position: absolute;
    bottom: 100%;
    margin-bottom: 0;
    padding-bottom: 20rem;
    width: 100%;
    min-width: 280rem;
    display: flex;
    flex-direction: column;
    will-change: transform;
    transition: all 0.25s;
    padding-top: calc(var(--headroom-height) + 50rem);
  }
  .map-pin-image {
    display: flex;
    border-radius: var(--br1);
    overflow: hidden;
    position: relative;
  }
  .map-pin-image::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 110%;
  }
  .map-pin-action {
    margin-top: 10rem;
    box-shadow: 0 3rem 10rem var(--c7);
    padding: 10rem 20rem;
    border-radius: var(--br1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c2);
  }
  .map-pin:not(.active) .map-pin-card {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50rem);
  }
  .map-pin.active {
    z-index: 2;
  }
  .map-pin.hidden {
    opacity: 0.3;
  }
  .carousel-buttons {
    display: inline-grid;
    grid-auto-flow: column;
    grid-gap: 10rem;
  }
  .carousel-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(36px, 42rem);
    height: max(36px, 42rem);
    cursor: pointer;
    border: var(--sl) solid;
    border-radius: 50%;
    padding: 12rem;
  }
  .carousel-button.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
  }
  .formbox {
    display: grid;
    grid-template-columns: auto;
  }
  .formbox-footer {
    margin-top: 20rem;
  }
  .formbox-label {
    margin-bottom: 10rem;
    font-size: max(14px, 20rem);
  }
  .textfield {
    border: var(--sl) solid var(--c7);
    overflow: hidden;
    display: flex;
    width: 100%;
  }
  .textfield:has(.custom-select + .wpcf7-not-valid-tip) {
    border-color: var(--c3);
  }
  .textfield .wpcf7-form-control-wrap {
    width: 100%;
  }
  .textfield .wpcf7-form-control-wrap > * {
    width: 100%;
  }
  .textfield:has(#datepicker) {
    position: relative;
  }
  .textfield:has(#datepicker) .icon {
    position: absolute;
    right: 24rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .textfield .icon {
    transition: all 0.25s;
    width: max(12px, 1.2em);
    height: max(12px, 1.2em);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: var(--c6);
  }
  .cf7-theme-select.active .icon,
  .formbox-row:has(.calendar-inner.active) .icon {
    transform: translateY(-50%) scaleY(-1) !important;
  }
  .textfield-input {
    text-overflow: ellipsis;
    text-transform: uppercase;
    font-size: var(--f-s);
    flex: auto;
    min-width: 0;
    padding: 24rem;
  }
  .textfield-error {
    color: var(--c3);
    margin-top: 10rem;
    display: none;
  }
  .textfield:has(:invalid) {
    border-color: var(--c3);
  }
  .textfield:has(:invalid) ~ .textfield-error {
    display: block;
  }
  .play-button {
    display: flex;
    align-items: center;
  }
  .play-button-text {
    text-transform: uppercase;
    font-size: var(--f-s);
    font-weight: 500;
  }
  .play-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(40px, 46rem);
    height: max(40px, 46rem);
    flex: none;
    margin-left: 10rem;
  }
  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    margin: -10rem -15rem;
  }
  .checkbox-group .checkbox {
    margin: 15rem 15rem;
  }
  .checkbox {
    position: relative;
    overflow: hidden;
    user-select: none;
  }
  .checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
  }
  .checkbox-icon {
    width: 1.3em;
    height: 1.3em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10rem;
    border: max(1px, 2rem) solid;
    transition: all 0.15s;
  }
  .checkbox-icon .icon {
    transform: scale(0);
    transition: transform 0.15s;
    will-change: transform;
  }
  .checkbox-title a {
    text-decoration: underline;
  }
  .checkbox-control {
    position: absolute;
    right: 100%;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .checkbox-control[type=radio] ~ .checkbox-icon {
    border-radius: 50%;
    background-clip: content-box;
    padding: 0.15em;
  }
  .checkbox-control[type=checkbox] ~ .checkbox-icon {
    border-radius: var(--br1);
  }
  .checkbox-control[type=radio]:checked ~ .checkbox-icon {
    background-color: var(--c6);
    border-color: var(--c6);
  }
  .checkbox-control[type=checkbox]:checked ~ .checkbox-icon {
    border-color: var(--c6);
    color: var(--c6);
  }
  .checkbox-control[type=checkbox]:checked ~ .checkbox-icon .icon {
    transform: scale(1);
  }
  .selector-list,
  .sort-list {
    width: 100%;
    margin-top: 5rem;
  }
  .selector-list,
  .sort-list-inner {
    background-color: var(--c2);
    border-radius: var(--br1);
    padding: 20rem;
    box-shadow: 0 3rem 10rem var(--c7);
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .sort {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }
  .sort-icon {
    width: max(12px, 1.2em);
    height: max(12px, 1.2em);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-left: 5rem;
    color: var(--c6);
  }
  .sort-value {
    font-weight: 500;
  }
  .sort-label {
    margin-right: 10rem;
  }
  .sort-list {
    position: absolute;
    z-index: 99;
    display: flex;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .sort-list:not(.active) {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    pointer-events: none;
  }
  .sort-list-inner {
    margin-left: auto;
  }
  .chip-group {
    display: flex;
    flex-wrap: wrap;
    margin: -5rem;
  }
  .chip-group .chip {
    margin: 5rem;
  }
  .chip {
    display: flex;
    align-items: center;
    padding: 5rem 15rem;
    border-radius: 999rem;
    border: var(--sl) solid var(--c7);
    position: relative;
    overflow: hidden;
  }
  .chip-icon {
    width: max(12px, 14rem);
    height: max(12px, 14rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-left: 5rem;
    margin-right: -5rem;
    opacity: 0.5;
    line-height: 1;
  }
  .selector-holder {
    display: flex;
    align-items: center;
  }
  .selector-holder-input {
    flex: auto;
    min-width: 0;
    user-select: none;
  }
  .selector-holder-icon {
    width: max(12px, 1.2em);
    height: max(12px, 1.2em);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-left: 5rem;
    color: var(--c6);
  }
  .js-selector-list {
    position: fixed;
  }
  .selector-list {
    position: absolute;
    z-index: 99;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .cf7-theme-select-options {
    position: absolute !important;
  }
  .selector-list:not(.active) {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    pointer-events: none;
  }
  .search {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .search-icon {
    width: max(12px, 1.2em);
    height: max(12px, 1.2em);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-right: 10rem;
    color: var(--c6);
  }
  .search-field {
    flex: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .search-reset {
    flex: none;
    margin-left: 10rem;
    width: max(12px, 1.2em);
    height: max(12px, 1.2em);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c6);
    cursor: pointer;
  }
  .search-field:placeholder-shown ~ .search-reset {
    visibility: hidden;
    opacity: 0;
  }
  .filter-search:has(.search-field:not(:placeholder-shown):not(:focus)) {
    border-color: var(--c6);
    transition: border-color 0.15s 0.15s;
  }
  .filter {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .filter-form {
    display: flex;
    margin: 0 -5rem;
  }
  .filter-form-option {
    cursor: pointer;
    flex: 1;
  }
  .filter-form-option .selector,
  .filter-form-option .selector-holder {
    width: 100%;
    justify-content: space-between;
  }
  .filter-form-option[data-homes-selector=listing_type] {
    order: 1;
  }
  .filter-form-option[data-homes-selector=community] {
    order: 2;
  }
  .filter-form-option[data-homes-selector=community_type] {
    order: 3;
  }
  .filter-form-option[data-homes-selector=sale_price] {
    order: 4;
  }
  .filter-form-option[data-homes-selector=rent_price] {
    order: 5;
  }
  .filter-form-option[data-homes-selector=beds] {
    order: 6;
  }
  .filter-form-option[data-homes-selector=baths] {
    order: 7;
  }
  .filter-form .filter-search {
    order: 8;
  }
  .filter-form .filter-action {
    order: 9;
  }
  .filter-form-option,
  .filter-search,
  .filter-action {
    margin: 0 5rem;
    height: var(--btn);
  }
  .filter-selected {
    margin-top: 20rem;
    overflow: hidden;
  }
  .filter-selected:empty {
    display: none;
  }
  .filter-bottombar {
    margin-top: 50rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 50rem;
    align-items: start;
  }
  .filter-reset {
    font-weight: 500;
    color: var(--c6);
  }
  .filter-msg {
    color: var(--c9);
    text-align: center;
  }
  .filter-msg a {
    color: #2C2C2C;
  }
  .filter-sort {
    margin-left: auto;
  }
  .filter-form-option {
    background-color: var(--c0);
    border: var(--sl) solid var(--c6);
    border-radius: var(--br1);
    display: flex;
    align-items: center;
    padding: 20rem;
  }
  .filter-form-option:not(.selected) {
    border-color: var(--c7);
  }
  .filter-search {
    background-color: var(--c0);
    border: var(--sl) solid var(--c7);
    border-radius: var(--br1);
    display: flex;
    align-items: center;
    padding: 20rem 15rem;
    overflow: hidden;
    flex: 1;
  }
  .filter-form-option.active .selector-holder-icon {
    transform: scaleY(-1);
  }
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .popup-overlay {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s;
    background-color: var(--c1);
  }
  .popup.active ~ .popup-overlay {
    visibility: visible;
    opacity: 0.9;
  }
  .curtain {
    background-color: var(--c6);
    color: var(--c2);
    z-index: 1;
    position: absolute;
    height: var(--app-height);
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--headroom-height) 0 0;
    display: flex;
    overflow: auto;
    transition: clip-path 0.5s;
    clip-path: inset(0 0 0% 0);
  }
  .menu {
    padding: 50rem 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: var(--gap) 0;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
  }
  .m1 {
    grid-area: m1;
    margin-right: 80rem;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: var(--br1);
  }
  .m1::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 60%;
  }
  .m2 {
    grid-area: m2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .m2 ul {
    letter-spacing: -0.05em;
    font-size: var(--f-xxl);
    line-height: 1;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20rem;
  }
  .m2-cta {
    margin-top: 30rem;
  }
  .m2-cta .button {
    width: 100%;
    font-size: var(--f-xxl);
    height: initial;
    font-weight: normal;
    letter-spacing: -4%;
  }
  .m3 {
    grid-area: m3;
    color: var(--c9);
    margin-top: auto;
  }
  .m4 {
    grid-area: m4;
    margin-top: auto;
  }
  .m5 {
    grid-area: m5;
    margin-top: auto;
  }
  .m5 ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .m6 {
    grid-area: m6;
    margin-top: auto;
  }
  .m6 ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .header:not(.menu-opened) .curtain {
    clip-path: inset(0 0 100% 0);
  }
  .topbar {
    transition: color 0.25s 0.2s;
  }
  .topbar-logo {
    background-image: url(../img/wfc-logo-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .topbar-logo img {
    transition: opacity 0.25s 0.2s;
  }
  .topbar-menu-icon {
    transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  }
  .topbar-menu-icon .icon {
    will-change: transform;
    transition: transform 0.25s;
  }
  .menu-opened .topbar {
    color: var(--c2);
    transition-delay: 0s;
  }
  .menu-opened .topbar-logo img {
    opacity: 0;
    transition-delay: 0s;
  }
  .menu-opened .topbar-menu-icon {
    color: var(--c6);
    background-color: var(--c2);
    border-color: var(--c2);
  }
  .menu-opened .topbar-menu-icon .icon {
    transform: rotate(-45deg);
  }
  .menu-opened .m1,
  .menu-opened .m2 {
    opacity: 1;
    transition-delay: 0.5s;
  }
  .textbox h2 {
    margin: 3em 0 1.5em;
    text-transform: uppercase;
  }
  .textbox h2:first-child {
    margin-top: 0;
  }
  .textbox ul,
  .textbox ol {
    margin: 1em 0;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 0.65em;
    counter-reset: index;
  }
  .textbox ol {
    counter-reset: index;
  }
  .textbox ul:first-child,
  .textbox ol:first-child {
    margin-top: 0;
  }
  .textbox ul:last-child,
  .textbox ol:last-child {
    margin-bottom: 0;
  }
  .textbox li {
    position: relative;
    padding-left: 1.5em;
  }
  .textbox ul li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    text-align: center;
  }
  .textbox ol li::before {
    content: counter(index) ".";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    text-align: center;
    counter-increment: index;
  }
  .textbox a {
    text-decoration: underline;
  }
  .s3-6 .s3-5:nth-child(1) *::-moz-selection,
  .s3-6 .s3-5:nth-child(2) *::-moz-selection,
  .s5-2 *::-moz-selection,
  .s7-3 *::-moz-selection,
  .s13-7 *::-moz-selection,
  .s15-3 *::-moz-selection,
  .s16 *::-moz-selection {
    background-color: var(--c2);
    color: var(--c6);
    -webkit-text-fill-color: var(--c6);
  }
  .s3-6 .s3-5:nth-child(1) *::selection,
  .s3-6 .s3-5:nth-child(2) *::selection,
  .s5-2 *::selection,
  .s7-3 *::selection,
  .s13-7 *::selection,
  .s15-3 *::selection,
  .s16 *::selection {
    background-color: var(--c2);
    color: var(--c6);
    -webkit-text-fill-color: var(--c6);
  }
  .calendar-wrapper {
    position: relative;
    width: 100%;
    z-index: 99;
  }
  .calendar-inner {
    position: absolute;
    max-width: 400rem;
    margin-top: 15rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3rem 10rem var(--c7);
    background-color: var(--c2);
    padding: 20rem;
  }
  .calendar-buttons {
    margin-top: 20rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10rem;
  }
  .calendar-inner:not(.active) {
    display: none;
  }
  .calendar {
    position: relative;
    font-size: var(--f-s);
  }
  .calendar .custom-top {
    text-align: center;
    font-weight: 500;
    padding-bottom: 30rem;
  }
  .calendar .prev,
  .calendar .next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    min-height: 30rem;
    cursor: pointer;
  }
  .calendar .month-name::first-letter {
    text-transform: uppercase;
  }
  .calendar .week-name {
    text-transform: uppercase;
  }
  .calendar .apply-btn {
    display: none;
  }
  .calendar .caption th {
    padding-bottom: 10rem;
  }
  .calendar .invalid {
    opacity: 0.5;
    pointer-events: none;
  }
  .calendar .lastMonth,
  .calendar .nextMonth {
    opacity: 0;
    pointer-events: none;
  }
  .calendar .day {
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    cursor: pointer;
  }
  .calendar .day::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .calendar .day.checked {
    color: var(--c2);
  }
  .calendar .day.checked::before {
    background-color: var(--c6);
  }
  .calendar .real-today:not(.checked) {
    border: var(--sl) solid;
    border-radius: 50%;
  }
  .calendar .first-date-selected,
  .calendar .last-date-selected {
    background-color: var(--c1);
    color: var(--c2);
    border-radius: 50%;
  }
  .calendar .first-date-selected::before {
    border-radius: 50% 0 0 50%;
  }
  .calendar .last-date-selected::before {
    border-radius: 0 50% 50% 0;
  }
  .date-picker-wrapper {
    position: relative;
    min-width: 100%;
  }
  .date-picker-wrapper .footer {
    display: none;
  }
  .month-wrapper table {
    margin: 0;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    border-collapse: separate;
    border-spacing: 0 5rem;
  }
  .month-wrapper td {
    width: 14.2857142857%;
    position: relative;
    z-index: 1;
  }
}
/* cards */
@media screen {
  .card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 100%;
    flex-direction: column;
  }
  .card-1 .card-header {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20rem;
  }
  .card-1 .card-header::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 110%;
  }
  .card-1 .card-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .card-1 .card-action {
    width: 100%;
  }
  .card-1 .card-content {
    display: flex;
    flex-direction: column;
    margin-top: 20rem;
    text-align: center;
  }
  .card-1 .card-title {
    font-size: var(--f-l);
    font-weight: 500;
    letter-spacing: -0.05em;
  }
  .card-1 .card-subtitle {
    margin-top: 10rem;
  }
  .card-2 .card-header {
    position: relative;
    overflow: hidden;
    border-radius: var(--br1);
    display: flex;
  }
  .card-2 .card-header::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 107%;
    min-height: 200rem;
  }
  .card-2 .card-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .card-2 .card-listing-type {
    position: absolute;
    top: 20rem;
    right: 20rem;
    z-index: 1;
    padding: 14rem 20rem;
    color: var(--c6);
    background-color: var(--c0);
    border-radius: var(--br1);
    font-size: var(--f-m);
    font-weight: 500;
  }
  .card-2 .card-content {
    margin: -120rem 15rem 0;
    background-color: var(--c0);
    border-radius: var(--br1);
    position: relative;
    z-index: 1;
    padding: 30rem 20rem 20rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 0 25rem;
    flex-grow: 1;
  }
  .card-2 .card-content::before {
    content: "";
    pointer-events: none;
    color: var(--c6);
    border: var(--sl) solid var(--c7);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .card-2 .card-tag {
    position: absolute;
    bottom: 100%;
    right: 50%;
    z-index: 1;
    width: max-content;
    transform: translate(50%, 50%);
  }
  .card-2 .card-loc {
    font-weight: 500;
  }
  .card-2 .card-subtitle {
    grid-column: 1/-1;
    font-weight: 500;
    text-transform: uppercase;
    font-size: var(--f-m);
  }
  .card-2 .card-subtitle:not(:first-child) {
    margin-top: 20rem;
  }
  .card-2 .card-action {
    grid-column: 1/-1;
    margin-top: 25rem;
  }
  .card-2 .card-text {
    grid-column: 1/-1;
  }
  .card-2 .card-text:not(:first-child) {
    margin-top: 10rem;
  }
  .card-2 .card-info {
    grid-column: 1/-1;
    overflow: hidden;
    border-top: var(--sl) solid var(--c7);
    margin-top: 25rem;
    padding-top: 25rem;
  }
  .card-2 .card-options {
    display: flex;
    flex-wrap: wrap;
    margin: -10rem -20rem;
  }
  .card-2 .card-option {
    display: flex;
    align-items: center;
    margin: 10rem 20rem;
  }
  .card-2 .card-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(20px, 24rem);
    height: max(20px, 24rem);
    flex: none;
    margin-right: 10rem;
  }
  .home-price-value {
    color: #436A55;
    font-size: 130%;
  }
  [data-cf7-select-list] .js-cf7-select-option {
    cursor: pointer;
    padding: 12rem 20rem;
  }
  [data-cf7-select-list] .js-cf7-select-option:hover,
  [data-cf7-select-list] .js-cf7-select-option.active {
    color: var(--c0);
    background-color: var(--c6);
  }
  [data-cf7-select-list] .js-cf7-select-option.disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
  .card-3 .card-header {
    margin-bottom: 20rem;
    display: flex;
  }
  .card-3 .card-media {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    width: 80rem;
    height: 80rem;
    box-shadow: 0 0 0 2rem var(--c2);
  }
  .card-3 .card-media:not(:first-child) {
    margin-left: -20rem;
  }
  .card-3 .card-media::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 100%;
  }
  .card-3 .card-title {
    font-weight: 500;
    font-size: var(--f-m);
  }
  .card-3 .card-title::before {
    content: "• ";
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
  }
  .card-3 .card-subtitle {
    margin-top: 10rem;
    color: var(--c9);
  }
  .card-3 .card-text {
    margin-top: 50rem;
    color: var(--c10);
  }
  .card-4 .card-inner {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 40rem 0;
    grid-template-rows: 1fr auto;
  }
  .card-4 .card-header {
    position: relative;
    overflow: hidden;
    border-radius: 12rem;
    width: 100%;
    height: clamp(230px, 14.375vw, 300rem);
  }
  .card-4 .card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .card-4 .card-content {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .card-4 .card-content::before {
    width: max(40px, 50rem);
    height: max(40px, 50rem);
    border-radius: 50%;
    border: var(--sl) solid var(--c2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20rem;
    transition: all 0.25s;
    opacity: 0.5;
  }
  .card-4 .card-title {
    font-size: var(--f-l);
    font-weight: 500;
    letter-spacing: -0.05em;
  }
  .card-4 .card-subtitle {
    color: var(--c9);
    margin-top: 15rem;
  }
}
/* sections */
@media screen {
  .section.s1 {
    padding-top: clamp(20rem, 2.44140625vw, 30rem);
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 1024px) {
  .section.s1 .wpcf7 {
    order: 99;
  }
}
@media screen {
  .s1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40rem 60rem;
  }
  .s1-2 {
    margin-right: 40rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .s1-3 {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: var(--br1);
  }
  .s1-4 {
    grid-column: 1/-1;
    max-width: 630rem;
  }
  .s1-4 .title {
    font-size: var(--f-xxxxl);
  }
  .s1-3::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 80%;
  }
  .s1-5 {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20rem;
    margin-right: auto;
  }
  .s1-5:not(:first-child) {
    margin-top: 30rem;
  }
  .s1-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .s1-7:not(:first-child) {
    margin-top: 30rem;
  }
  .s1-7-1 {
    margin-bottom: 15rem;
    text-transform: uppercase;
    color: var(--c9);
  }
  .s1-8 {
    width: 100%;
    max-width: 600rem;
  }
  .s1-8:not(:first-child) {
    margin-top: 30rem;
  }
  .s1-8-1 {
    font-size: var(--f-m);
    font-weight: 500;
    padding: 15rem 0;
    border-top: var(--sl) solid var(--c7);
  }
  .s1-8-1:last-child {
    border-bottom: var(--sl) solid var(--c7);
  }
  .s1-9:not(:last-child) {
    margin-bottom: 40rem;
  }
  .s1-10 {
    column-count: 2;
    column-gap: 80rem;
  }
  .s1-11:not(:first-child) {
    margin-top: 40rem;
  }
  .s1-11 {
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .s1-11-1 {
    margin-bottom: 20rem;
    font-weight: 500;
    font-size: var(--f-m);
  }
  .s1-11-2 {
    color: var(--c9);
    max-width: 210rem;
  }
  .s1-11-2 ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .s2-1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: var(--gap);
  }
  .s2-2 {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 50rem;
    margin-bottom: 30rem;
    align-items: flex-end;
  }
  .s2-3:last-child {
    grid-column: 1/-1;
  }
  .s2-4 {
    margin-top: 40rem;
    display: flex;
    justify-content: center;
  }
  .s2-6 {
    margin-bottom: 30rem;
  }
  .s3-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    grid-template-rows: 1fr auto;
    align-items: flex-start;
  }
  .s3-2 {
    margin-right: 200rem;
  }
  .s3-2-2 {
    margin-right: -50rem;
    margin-top: 30rem;
    font-size: var(--f-b);
  }
  .s3-2-3 {
    margin-top: 30rem;
  }
  .s3-3 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
    counter-reset: index;
  }
  .s3-4 {
    margin-right: 200rem;
    margin-top: 100rem;
    position: relative;
    display: flex;
    border-radius: var(--br1);
    overflow: hidden;
  }
  .s3-4::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 65%;
  }
  .s3-4-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.25s;
  }
  .s3-4-1:not(.active):not(:first-child) {
    opacity: 0;
  }
  .s3-5 {
    padding: 35rem 70rem 35rem 55rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto;
    grid-gap: var(--gap);
    align-items: baseline;
    border-radius: var(--br1);
  }
  .s3-5::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: var(--sl) solid var(--c6);
    border-radius: var(--br1);
    opacity: 0.4;
  }
  .s3-6 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .s3-3 .s3-5 {
    grid-template-columns: auto 1fr;
  }
  .s3-3 .s3-5::before {
    content: counter(index) ".";
    counter-increment: index;
    min-width: 2em;
    font-size: var(--f-l);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.9;
  }
  .s3-3 .s3-5-2 {
    grid-column: 2/3;
  }
  .s3-6 .s3-5:nth-child(1),
  .s3-6 .s3-5:nth-child(2) {
    background-color: var(--c6);
    color: var(--c2);
  }
  .s4-1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: var(--sl);
  }
  .s4-2 {
    position: relative;
    display: flex;
  }
  .s4-3 {
    text-transform: uppercase;
    font-weight: 500;
  }
  .s4-3:not(:last-child) {
    margin-bottom: 40rem;
  }
  .s4-4 {
    padding: 0 20rem 25rem;
    position: relative;
    width: 100%;
  }
  .s4-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-left: var(--sl) solid var(--c6);
    opacity: 0.2;
  }
  .s4-4-1 {
    position: relative;
    overflow: hidden;
    width: max(40px, 46rem);
    height: max(40px, 46rem);
    margin-bottom: 22rem;
  }
  .s4-4-2 {
    font-size: 20rem;
  }
  .s5-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--gap) 10rem;
  }
  .s5-2 {
    background-color: var(--c6);
    color: var(--c2);
    border-radius: var(--br1);
    padding: 40rem;
    display: flex;
    flex-direction: column;
    min-height: 600rem;
  }
  .s5-3 {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: var(--br1);
  }
  .s5-3::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 75%;
  }
  .s5-4 {
    flex: auto;
  }
  .s5-5:not(:first-child) {
    margin-top: 60rem;
  }
  .s5-6 {
    padding-top: 30rem;
    display: flex;
    flex-wrap: wrap;
    margin: -10rem;
  }
  .s5-6-1 {
    margin: 10rem;
  }
  .s6-2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 100rem;
    align-items: flex-start;
    border-top: var(--sl) solid var(--c7);
    padding: var(--gap) 0;
  }
  .s6-2:last-child {
    border-bottom: var(--sl) solid var(--c7);
  }
  .s6-2-2 {
    max-width: 380rem;
  }
  .s6-2-3 {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: var(--br1);
  }
  .s6-2-3::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 55%;
  }
  .s6-3 {
    margin-top: 50rem;
    display: flex;
    justify-content: center;
  }
  .s7-1 {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-gap: 0 40rem;
    overflow: hidden;
    border-radius: var(--br1);
  }
  .s7-2 {
    grid-column: 1/6;
    position: relative;
    overflow: hidden;
    margin-right: -40rem;
    display: flex;
  }
  .s7-2::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 70%;
  }
  .s7-3 {
    grid-column: 6/-1;
    background-color: var(--c6);
    color: var(--c2);
    padding: 50rem;
  }
  .s7-3-1 {
    max-width: 380rem;
  }
  .s7-3-2 {
    margin-top: 40rem;
  }
  .s7-3-3 {
    margin-top: 40rem;
  }
  .s8-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    align-items: flex-start;
    padding: 0 20rem;
  }
  .s8-2 {
    margin-top: 100rem;
    text-align: center;
  }
  .s8-3 {
    margin-right: 200rem;
    border-radius: var(--br1);
    overflow: hidden;
  }
  .s8-4-2 {
    margin-top: 60rem;
  }
  .s9-1 {
    margin-bottom: 50rem;
  }
  .s9-2 {
    display: flex;
    margin: calc(var(--gap) / -2);
    flex-wrap: wrap;
  }
  .s9-3 {
    padding: 25rem;
    position: relative;
    z-index: 1;
    flex: 1;
    margin: calc(var(--gap) / 2);
  }
  .s9-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--br1);
    border: var(--sl) solid var(--c6);
    opacity: 0.3;
    z-index: -1;
  }
  .s9-3-1 {
    color: var(--c6);
  }
  .s9-3-2 {
    margin-top: 25rem;
  }
  .s10 {
    margin: 0;
  }
  .s10:not(:first-child) {
    margin-top: -130rem;
  }
}
@media screen and (min-width: 1025px) {
  .section.s10 {
    aspect-ratio: 1600/1100;
    padding: 200rem 0 230rem;
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .section.s10 {
    overflow-x: clip;
  }
  .section.s10 .wrapper {
    max-width: 100%;
  }
  .section.s10 .s10-2 {
    margin: auto;
  }
}
@media screen {
  .s10-1 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 0 var(--gap);
  }
  .section.s10 {
    position: relative;
    z-index: 10;
  }
  .interactive-map {
    inset: 0;
    display: flex;
    width: 100%;
  }
  .interactive-map:before {
    height: 50rem;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    position: absolute;
    display: flex;
    z-index: 2;
    background: linear-gradient(180deg, #F8F4EF 42.46%, rgba(248, 244, 239, 0) 100%);
  }
}
@media screen and (min-width: 1025px) {
  .interactive-map {
    position: absolute;
  }
}
@media screen and (max-width: 1024px) {
  .interactive-map {
    position: relative;
    z-index: 10;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .interactive-map {
    position: relative;
    z-index: 10;
    width: 250%;
    transform: translate(-53%);
  }
}
@media screen {
  .interactive-map__stage {
    display: flex;
    position: relative;
    width: 100%;
  }
  .interactive-map__stage img {
    width: 100%;
    object-fit: cover;
  }
  .interactive-map__pin-label {
    flex: 1;
    text-align: center;
    color: var(--c6);
    font-size: clamp(12px, 1.3671875vw, 16rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
  }
  .interactive-map__point {
    max-width: clamp(120px, 17.578125vw, 180rem);
    width: 100vw;
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    gap: 8rem;
    z-index: 1;
  }
  .interactive-map__marker {
    max-width: clamp(25px, 3.41796875vw, 45rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .interactive-map__marker img {
    width: 100%;
    height: auto;
  }
  .interactive-map__tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14rem);
    width: min(clamp(200px, 24.4140625vw, 290rem), 100vw - 32px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
  }
  .interactive-map__tooltip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18rem;
    height: 18rem;
  }
  .interactive-map__tooltip .interactive-map__tooltip-image {
    display: block;
    width: 100%;
    aspect-ratio: 435/480;
    object-fit: cover;
  }
  .interactive-map__point[data-tooltip-positioned] .interactive-map__tooltip {
    left: var(--tooltip-left);
    top: var(--tooltip-top);
    right: auto;
    bottom: auto;
  }
  .interactive-map__point.is-tooltip-preparing .interactive-map__tooltip {
    transition: none;
  }
  .interactive-map__point[data-tooltip-positioned][data-tooltip-placement=top] .interactive-map__tooltip {
    transform: translateY(10rem);
  }
  .interactive-map__point[data-tooltip-positioned][data-tooltip-placement=bottom] .interactive-map__tooltip {
    transform: translateY(-10rem);
  }
  .interactive-map__point[data-tooltip-positioned][data-tooltip-placement=left] .interactive-map__tooltip {
    transform: translateX(10rem);
  }
  .interactive-map__point[data-tooltip-positioned][data-tooltip-placement=right] .interactive-map__tooltip {
    transform: translateX(-10rem);
  }
  .interactive-map__point[data-tooltip-positioned] .interactive-map__tooltip::after {
    width: auto;
    height: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .interactive-map__point[data-tooltip-placement=top] .interactive-map__tooltip::after {
    left: 0;
    right: 0;
    bottom: -18rem;
    height: 18rem;
  }
  .interactive-map__point[data-tooltip-placement=bottom] .interactive-map__tooltip::after {
    left: 0;
    right: 0;
    top: -18rem;
    height: 18rem;
  }
  .interactive-map__point[data-tooltip-placement=left] .interactive-map__tooltip::after {
    top: 0;
    right: -18rem;
    bottom: 0;
    width: 18rem;
  }
  .interactive-map__point[data-tooltip-placement=right] .interactive-map__tooltip::after {
    top: 0;
    bottom: 0;
    left: -18rem;
    width: 18rem;
  }
  .interactive-map__point.is-tooltip-visible {
    z-index: 10;
  }
  .interactive-map__point.is-tooltip-visible .interactive-map__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .interactive-map__point[data-tooltip-positioned].is-tooltip-visible .interactive-map__tooltip {
    transform: translate(0, 0);
  }
  .interactive-map__tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 14rem;
    max-height: var(--tooltip-max-height, calc(100vh - 32px));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .interactive-map__tooltip-content:has(a.interactive-map__tooltip-link:hover) img {
    transform: scale(1.05);
  }
  .interactive-map__tooltip-field {
    width: 100%;
  }
  .interactive-map__tooltip-field--image {
    overflow: hidden;
    border-radius: var(--br1);
    box-shadow: 0 8rem 24rem color-mix(in srgb, var(--c1) 14%, transparent);
  }
  .interactive-map__tooltip-field--image img {
    transition: transform 0.25s;
  }
  .interactive-map__tooltip-field--link {
    display: flex;
  }
  .interactive-map__tooltip-field:not(.interactive-map__tooltip-field--image):not(.interactive-map__tooltip-field--link) {
    padding: 16rem;
    background-color: var(--c2);
    border-radius: var(--br1);
    box-shadow: 0 8rem 24rem color-mix(in srgb, var(--c1) 10%, transparent);
  }
  .interactive-map__tooltip-field-label {
    display: block;
    margin-bottom: 6rem;
    color: var(--c6);
    font-size: var(--f-s);
    font-weight: 700;
  }
  .interactive-map__tooltip-field-value {
    display: block;
    color: var(--c1);
    font-size: var(--f-d);
  }
  .interactive-map__tooltip-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44rem;
    gap: 10rem;
    background-color: var(--c2);
    border-radius: var(--br1);
    box-shadow: 0 8rem 24rem color-mix(in srgb, var(--c1) 10%, transparent);
    color: var(--c1);
    font-size: clamp(14px, 1.7578125vw, 20rem);
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid var(--Stroke-Border-Card, rgba(61, 103, 80, 0.2));
  }
  .interactive-map__tooltip-link:hover, .interactive-map__tooltip-link:focus-visible {
    background-color: var(--c6);
    color: var(--c2);
  }
  .interactive-map__tooltip-link:hover svg, .interactive-map__tooltip-link:focus-visible svg {
    color: var(--c2);
    transform: rotate(0deg);
  }
  .interactive-map__tooltip-link svg {
    width: clamp(14px, 1.7578125vw, 20rem);
    height: clamp(14px, 1.7578125vw, 20rem);
    transition: transform 0.2s ease, color 0.2s ease;
    transform: rotate(-45deg);
    color: var(--c6);
  }
  .s10-2 {
    grid-column: 1/3;
    position: relative;
    z-index: 1;
    margin-top: auto;
    max-width: 616rem;
  }
  .s10-3 {
    grid-column: 3/-1;
    position: relative;
    margin: -150rem 0 -150rem;
  }
  .s10-5 {
    margin-top: 60rem;
  }
  .s10-5-1 {
    text-transform: uppercase;
    font-weight: 500;
  }
  .s10-5-1:not(:last-child) {
    margin-bottom: 25rem;
  }
  .s10-5-2 {
    border-left: var(--sl) solid var(--c7);
    padding: 5rem 25rem;
  }
  .s10-5-2 ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
    font-size: var(--f-s);
    color: var(--c10);
  }
  .s10-6 {
    margin-top: 60rem;
  }
  .s10-7 {
    margin-top: 20rem;
  }
  .s11-1 {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 50rem;
    align-items: flex-start;
    margin-bottom: 50rem;
  }
  .s11-1-2 {
    display: flex;
    align-items: center;
    min-height: var(--f-xxl);
  }
  .s11-2 {
    margin: 0 -5rem;
  }
  .s11-2 .swiper {
    overflow: visible;
  }
  .s11-2 .swiper-slide {
    width: auto;
  }
  .s11-3 {
    padding: 0 5rem;
  }
  .s11-3 img {
    overflow: hidden;
    border-radius: var(--br1);
    height: 450rem;
    width: auto;
    max-width: none;
  }
  .s12-1 {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 50rem;
    align-items: flex-start;
    margin-bottom: 50rem;
  }
  .s12-1-2 {
    display: flex;
    align-items: center;
    min-height: var(--f-xxl);
  }
  .s12-2 {
    margin: 0 var(--awr);
    border-top: var(--sl) solid var(--c7);
    padding: 0 var(--wr);
  }
  .s12-2 .swiper {
    overflow: hidden;
    margin: 0 -30rem;
  }
  .s12-2 .swiper-slide {
    height: auto !important;
    display: flex;
  }
  .s12-3 {
    padding: 40rem 30rem;
    position: relative;
  }
  .s12-2 .swiper-slide-active .s12-3::after,
  .s12-2 .swiper-slide-active ~ .swiper-slide .s12-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    background-image: linear-gradient(var(--c7), transparent);
    width: var(--sl);
    height: 100%;
  }
  .s13 {
    padding: 180rem 0 130rem;
  }
  .s13:not(:first-child) {
    margin-top: -60rem;
  }
  .s13:last-child {
    margin-bottom: 0;
  }
  .s13-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 80rem var(--gap);
    z-index: 2;
  }
  .s13-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    mask-image: linear-gradient(transparent, #000, #000, #000);
  }
  .s13-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, #000);
    opacity: 0.5;
  }
  .s13-2 img {
    object-position: top;
  }
  .s13-3 {
    width: 100%;
    max-width: 783rem;
    position: relative;
    z-index: 10;
    padding: 40rem;
    background-color: var(--c2);
    border-radius: var(--br1);
  }
  .s13-4 {
    text-align: center;
  }
  .s13-4-2 {
    margin-top: 20rem;
    color: var(--c9);
    font-size: var(--f-b);
  }
  .s13-5 {
    margin-top: 28rem;
  }
  .s13-6 {
    margin-top: 30rem;
    text-align: center;
    color: var(--c9);
  }
  .s13-7 {
    grid-column: 1/-1;
    text-align: center;
    color: var(--c2);
    position: relative;
    z-index: 1;
    font-size: var(--f-l);
    margin: 0 auto;
    max-width: 900rem;
  }
  .s14 {
    margin: 0 !important;
  }
  .s14-1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 100rem var(--gap);
    position: relative;
    z-index: 2;
    padding: 47rem 0 150rem;
    min-height: calc(var(--app-height) - var(--headroom-height) - 200rem);
    grid-template-rows: 1fr auto;
  }
}
@media screen and (max-width: 576px) {
  .s14-1 {
    min-height: calc(var(--app-height) - var(--headroom-height) - 20rem);
  }
}
@media screen {
  .s14-2 {
    grid-column: 1/-1;
    max-width: 1100rem;
    height: fit-content;
  }
  .s14-3 {
    grid-column: 3/4;
    padding: 15rem;
    border: var(--sl) solid;
    border-radius: var(--br1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10rem;
    grid-template-rows: 1fr auto;
    position: relative;
  }
  .s14-3:hover .s14-3-1 > img,
  .s14-3:hover .s14-3-1 > video,
  .s14-3:hover .s14-3-1 > iframe {
    transform: scale(1.2);
  }
  .s14-3.js-video-play {
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  .s14-3.js-video-play:hover {
    border-color: var(--c6);
    background-color: color-mix(in srgb, var(--c6) 5%, transparent);
  }
  .s14-3-1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--br1);
    grid-row: 1/3;
    aspect-ratio: 228/132;
  }
  .s14-3-1 > img, .s14-3-1 > video, .s14-3-1 > iframe {
    transition: transform 0.2s ease;
  }
  .s14-3-2 {
    margin-left: auto;
  }
  .s14-3-2 .play-button-icon svg path {
    transition: transform 0.2s ease;
    transform-origin: 23px 23px;
  }
  .s14-3.js-video-play:hover .play-button-icon svg path {
    transform: scale(1.1);
  }
  .s14-3-3 {
    text-transform: uppercase;
    font-size: var(--f-b);
  }
  .s14-5 {
    margin-top: 20rem;
    max-width: 600rem;
    margin-bottom: 30rem;
    font-size: max(14px, 18rem);
  }
  .s14-6 {
    display: flex;
    flex-wrap: wrap;
    margin: -10rem;
  }
  .s14-6-1 {
    margin: 10rem;
  }
  .s14-7 {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    bottom: 15%;
    z-index: 1;
    mask-image: linear-gradient(transparent, #000, transparent);
  }
}
@media screen and (max-width: 1024.98px) {
  .s14-7 {
    top: var(--box-height);
  }
}
@media screen {
  .s14-8 {
    position: relative;
  }
  .s14-8::before,
  .s14-8::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    background-size: auto 100%;
    background-repeat: no-repeat;
    mask-image: linear-gradient(transparent, #000, #000, transparent);
    pointer-events: none;
    margin: 0 var(--awr);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 576px) {
  .s14-8::before,
  .s14-8::after {
    left: calc(100vw - var(--mw) / -4);
    right: calc(100vw - var(--mw) / -4);
  }
}
@media screen {
  .s14-8::before {
    top: calc(-1 * var(--headroom-height) - 15%);
    background-position: top;
    background-image: url(../img/clouds-up.png);
    background-size: cover;
  }
  .s14-8::after {
    background-position: bottom;
    background-image: url(../img/clouds-down-new.png);
    background-size: cover;
  }
  .s15-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    background-color: var(--c6);
    color: var(--c2);
    overflow: hidden;
    border-radius: var(--br1);
  }
  .s15-2 {
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .s15-2::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 90%;
  }
  .s15-2-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .s15-2-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, transparent, rgb(0, 0, 0));
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
  }
  .s15-2-1 .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .s15-2-2 {
    position: relative;
    z-index: 1;
    padding: 30rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .s15-3 {
    padding: 50rem;
    display: flex;
    flex-direction: column;
  }
  .s15-3-2 {
    margin-top: 40rem;
    font-size: var(--f-b);
  }
  .s15-3-3 {
    margin-bottom: auto;
    margin-top: 40rem;
  }
  .s15-3-3 ul {
    display: grid;
    grid-template-columns: auto;
  }
  .s15-3-3 li {
    border-top: var(--sl) solid var(--c7);
    padding: 15rem 0;
    display: flex;
  }
  .s15-3-3 li:last-child {
    border-bottom: var(--sl) solid var(--c7);
  }
  .s15-3-3 li::before {
    content: "• ";
    min-width: 1.5em;
    text-align: center;
    display: inline-block;
  }
  .s15-3-4 {
    margin-top: 40rem;
  }
  .s16 {
    background-color: var(--c6);
    color: var(--c2);
    padding: 100rem 0;
  }
  .s16-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    counter-reset: index;
  }
  .s16-2 {
    margin-bottom: 30rem;
  }
  .s16-3 {
    display: grid;
    width: 100%;
    grid-gap: 0 160rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
  }
  .s16-3::before {
    content: "";
    border-bottom: var(--sl) solid var(--c7);
    margin: 0 var(--awr);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    height: calc(clamp(230px, 14.375vw, 300rem) + 21rem);
  }
  .s16-4 {
    margin-top: 60rem;
  }
  .s16-5 {
    grid-column: 1/-1;
    position: relative;
  }
  .s16-5::before {
    content: "";
    border-bottom: var(--sl) solid var(--c2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    height: 50%;
  }
  .s16-5 .swiper {
    overflow: visible;
    margin: 0 -80rem;
    padding: 0 80rem;
  }
}
@media screen and (max-width: 1024px) {
  .s16-5 .swiper {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}
@media screen {
  .s16-5 .swiper-slide .card-4 .card-content::before {
    content: counter(index, decimal-leading-zero);
    counter-increment: index;
  }
  .s16-5 .swiper-slide-active .card-4 .card-content::before {
    opacity: 1;
    background-color: var(--c2);
    color: var(--c6);
  }
  .s16-6 {
    padding: 0 16rem;
  }
  .s16-5 .swiper-slide:not(.swiper-slide-active) .s16-6 .card {
    cursor: pointer;
  }
  .s16-no-slider .s16-5 {
    grid-column: 1/-1;
  }
  .s16-no-slider .s16-5::before {
    content: none;
  }
  .s16-no-slider .card-content:after {
    position: absolute;
    width: 100%;
    height: 1rem;
    content: "";
    left: 0;
    background-color: #fff;
    top: -20rem;
    z-index: 20;
    opacity: 0;
    transition: all 0.3s;
  }
  .s16-no-slider .card-content {
    position: relative;
  }
  .s16-no-slider .swiper-slide-active .card-content:after {
    opacity: 1;
  }
  .s16-no-slider .s16-5 .swiper {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .s16-no-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 0 32rem;
    width: 100%;
    transform: none !important;
  }
  .s16-no-slider .swiper-slide {
    width: auto !important;
    height: auto !important;
  }
  .s16-no-slider .s16-6 {
    padding: 0;
  }
  .s16-no-slider .s16-5 .swiper-slide:not(.swiper-slide-active) .s16-6 .card {
    cursor: default;
  }
  .s17 {
    z-index: 2;
    padding-top: 25rem;
  }
  .s17-1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 50rem var(--gap);
  }
  .s17-2 {
    grid-column: 1/3;
    display: flex;
    overflow: hidden;
    border-radius: var(--br1);
    position: relative;
    align-items: center;
  }
  .s17-2::before {
    content: "";
    flex: none;
    width: 0;
    padding-top: 45%;
  }
  .s17-2-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .s17-2-2 {
    position: relative;
    z-index: 1;
    padding: 20rem;
    color: var(--c4);
    width: 100%;
  }
  .s17-2-2 .carousel-buttons {
    width: 100%;
  }
  .s17-2-2 .carousel-button {
    background-color: var(--c2);
    border-color: var(--c2);
  }
  .s17-2-2 .carousel-button__next {
    margin-left: auto;
  }
  .s17-2 .swiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: 0 -1px;
  }
  .s17-3 {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-gap: var(--gap);
  }
  .s17-3 .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .s17-3 .swiper-slide {
    padding: calc(var(--gap) / 2) 0;
    display: flex;
  }
  .s17-4 {
    grid-column: 1/3;
  }
  .s17-5 {
    position: sticky;
    top: var(--headroom-height);
    z-index: 1;
    margin-bottom: auto;
  }
  .s17-6-1-1 {
    margin-bottom: 30rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20rem;
  }
  .s17-6-3 {
    margin-top: 15rem;
    font-size: var(--f-b);
  }
  .s17-7 {
    margin-top: 40rem;
  }
  .s17-8 {
    padding: 20rem 0;
    border-top: var(--sl) solid var(--c7);
    font-size: var(--f-m);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 10rem;
    align-items: baseline;
  }
  .s17-8:last-child {
    border-bottom: var(--sl) solid var(--c7);
  }
  .s17-8-1 {
    color: var(--c9);
  }
  .s17-8-2 {
    font-weight: 500;
  }
  .s17-9 {
    margin-top: 40rem;
  }
  .s17-9-2 {
    font-size: var(--f-b);
    margin-top: auto;
  }
  .s17-9-3 {
    grid-column: 2/3;
    color: var(--c9);
  }
  .s17-10 {
    padding-top: 58rem;
    display: flex;
    flex-wrap: wrap;
    margin: -10rem -15rem;
  }
  .s17-11 {
    padding-top: 28rem;
    display: flex;
    flex-wrap: wrap;
    margin: -10rem -15rem;
  }
  .s17-12 {
    margin-top: 58rem;
  }
  .s17-12-1 {
    margin-bottom: 20rem;
    color: #2C2C2C;
    font-size: max(14px, 36rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.8rem;
  }
  .s17-12-2 {
    color: var(--c9);
    max-width: 760rem;
  }
  .s17-12-3 ul:not(:has(.community-feature)) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15rem var(--gap);
  }
  .s17-12-3 ul:not(:has(.community-feature)) li::before {
    content: "• ";
    display: inline-block;
    text-align: center;
    min-width: 1.5em;
  }
  .s17-12-3 ul:not(:has(.community-feature)) li {
    display: flex;
    color: var(--c9);
  }
}
@media screen and (max-width: 767px) {
  .s17-12-3 ul:not(:has(.community-feature)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .s17-12-3 ul:not(:has(.community-feature)) {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen {
  .s17-12-3 ul:has(.community-feature) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 15rem var(--gap);
  }
}
@media screen and (max-width: 576px) {
  .s17-12-3 ul:has(.community-feature) {
    grid-gap: var(--gap);
  }
}
@media screen {
  .s17-12-3 ul:has(.community-feature) li {
    display: flex;
    align-items: center;
    gap: 20rem;
    color: var(--Fill-Black, #2C2C2C);
    font-size: 20rem;
  }
}
@media screen and (max-width: 576px) {
  .s17-12-3 ul:has(.community-feature) li {
    grid-column: 1/-1;
  }
}
@media screen {
  .s17-12-3 ul:has(.community-feature) li img {
    max-width: 60rem;
    flex-shrink: 0;
  }
  .s17-13 {
    display: flex;
    align-items: center;
    margin: 10rem 15rem;
    font-size: var(--f-b);
  }
  .s17-13-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(20px, 1em);
    height: max(20px, 1em);
    flex: none;
    margin-right: 10rem;
  }
  .s17-13-3 {
    flex: none;
    margin-right: 10rem;
    color: var(--c9);
  }
  .s17-14 {
    margin-bottom: 20rem;
  }
  .s17-15 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 23rem;
    background-color: var(--c0);
    padding: 32rem 30rem;
  }
  .s17-15-1 {
    text-align: center;
  }
  .s17-15-3 {
    text-align: center;
    color: var(--c9);
  }
  .s17-15-3 a {
    color: #2C2C2C;
  }
  .s17-15-3 a:hover {
    text-decoration: underline;
  }
  .s17-16 {
    position: relative;
    margin: calc(var(--gap) / -2) 0;
  }
  .s17-16-1 {
    position: relative;
    border-radius: var(--br1);
    overflow: hidden;
    width: 100%;
  }
  .s17-5 form:has(:invalid) .button[type=submit] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .s18-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 var(--gap);
  }
  .s18-2 {
    grid-column: 2/4;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20rem;
  }
  .s18-3 {
    font-size: var(--f-s);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .s19-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 var(--gap);
  }
  .s19-2 {
    grid-column: 2/4;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 50rem;
  }
  .s19-3-2 {
    margin-top: 20rem;
    font-size: var(--f-b);
  }
  .s19-3-2 ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20rem;
  }
  .s19-3-2 a {
    text-decoration: underline;
  }
  .s404 {
    margin: 0;
  }
  .s404-1 {
    padding: 100rem 0 calc(var(--headroom-height) + 100rem);
    margin: 0;
    display: flex;
    min-height: calc(var(--app-height) - var(--headroom-height));
  }
  .s404-2 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin: auto;
  }
  .s404-2-1 {
    line-height: 1;
    font-size: 180rem;
    color: var(--c6);
  }
  .s404-2-2 {
    max-width: 500rem;
    margin-top: 50rem;
  }
  .s404-2-3 {
    margin-top: 25rem;
  }
  .s404-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .s404-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/404-image.png);
  }
}
@media screen and (max-width: 1023.98px) {
  :root {
    --wr: 12rem;
    --btn: 60rem;
    --f-xs: 12rem;
    --f-s: 14rem;
    --f-d: 16rem;
    --f-m: 20rem;
    --f-b: 20rem;
    --f-l: 20rem;
    --f-xl: 26rem;
    --f-xxl: 28rem;
    --f-xxxl: 36rem;
    --mw: 640rem;
  }
  html {
    font-size: 1px;
  }
  .desktop {
    display: none !important;
  }
  .button {
    width: 100%;
  }
  .title br {
    display: none;
  }
  .subtitle br {
    display: none;
  }
  .title__small {
    line-height: 1.1;
  }
  .header {
    margin-bottom: 20rem;
  }
  .topbar {
    padding: 10rem 0;
    grid-template-columns: 1fr auto;
  }
  .topbar-nav {
    display: none;
  }
  .topbar-logo {
    max-width: 120rem;
  }
  .topbar-menu-text {
    font-size: var(--f-s);
  }
  .topbar-menu-icon {
    margin-left: 10rem;
    width: 24rem;
    height: 24rem;
    padding: 5rem;
  }
  .page-header:not(:last-child) {
    margin-bottom: 100rem;
  }
  .page-header-main {
    align-items: flex-start;
    text-align: left;
  }
  .page-header-media {
    margin: 20rem 0 100rem;
  }
  .page-header-media::before {
    padding-top: 65%;
  }
  .page-header-text {
    margin-top: 20rem;
  }
  .page-header-bg ~ .page-header-main {
    padding: 350rem 0 30rem;
    align-items: center;
    text-align: center;
  }
  .section-header {
    text-align: left;
    align-items: flex-start;
  }
  .section-header:not(:last-child) {
    margin-bottom: 30rem;
  }
  .section {
    margin-bottom: 100rem;
  }
  .map {
    position: relative;
  }
  .map-inner {
    position: relative;
  }
  .play-button-icon {
    width: 40rem;
    height: 40rem;
  }
  .play-button-icon svg {
    width: 100%;
    height: 100%;
  }
  .play-button-text {
    font-size: var(--f-xs);
  }
  .textfield-input {
    padding: 20rem;
  }
  .card-2 .card-header {
    border-radius: 0;
  }
  .card-2 .card-listing-type {
    top: 15rem;
    right: 15rem;
  }
  .card-2 .card-content {
    margin-left: var(--wr);
    margin-right: var(--wr);
    grid-template-columns: auto;
    padding: 30rem 15rem 15rem;
  }
  .card-2 .card-tag {
    display: flex;
    justify-content: center;
  }
  .card-2 .card-loc {
    order: -1;
    margin-left: auto;
    margin-bottom: 5rem;
  }
  .card-2 .card-info {
    padding-top: 20rem;
    margin-top: 20rem;
  }
  .card-2 .card-options {
    margin: -10rem;
  }
  .card-2 .card-option {
    margin: 10rem;
  }
  .card-2 .card-option-icon {
    margin-right: 5rem;
  }
  .card-2 .card-action {
    margin-top: 20rem;
  }
  .card-3 .card-text {
    margin-top: 30rem;
  }
  .card-4 .card-inner {
    grid-gap: 30rem;
    grid-template-rows: auto;
  }
  .s1-1 {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-gap: 30rem;
  }
  .s1-2 {
    margin: 0;
  }
  .s1-2:not(:last-child) {
    order: -2;
  }
  .s1-3::before {
    padding-top: 60%;
  }
  .s1-5 {
    margin: 0;
    width: 100%;
    grid-auto-flow: row;
    grid-gap: 10rem;
  }
  .s1-5:not(:first-child) {
    margin-top: 25rem;
  }
  .s1-6 {
    margin: 0;
  }
  .s1-8:not(:first-child) {
    margin-top: 15rem;
  }
  .s1-9:not(:last-child) {
    margin-bottom: 20rem;
  }
  .s1-10 {
    column-count: 1;
  }
  .s1-11:not(:first-child) {
    margin-top: 30rem;
  }
  .s1-11-1 {
    margin-bottom: 15rem;
  }
  .s2-1 {
    grid-template-columns: auto;
    grid-gap: 40rem;
  }
  .s2-1-1 {
    margin: 0 var(--awr);
  }
  .s2-2 {
    margin-bottom: 30rem;
  }
  .s2-4 {
    margin-top: 30rem;
  }
  .s2-4 .button__default {
    width: auto;
  }
  .s2-6 {
    display: block;
    margin-bottom: 16rem;
  }
  .mobile-filter-header {
    display: flex;
    flex-direction: column;
  }
  .mobile-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    grid-gap: 10rem;
    width: 100%;
  }
}
@media screen and (max-width: 1023.98px) and (max-width: 480px) {
  .mobile-search-row {
    display: flex;
    flex-direction: column;
  }
  .mobile-search-row > * {
    width: 100%;
  }
}
@media screen and (max-width: 1023.98px) {
  .mobile-search-row .filter-search {
    margin: 0;
    flex: 1;
    height: 50rem;
  }
  .mobile-search-btn {
    height: 50rem;
    padding: 0 20rem;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  .mobile-filter-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25rem;
    gap: 25rem;
  }
  .mobile-filter-count {
    font-size: 18rem;
    font-weight: 400;
    opacity: 0.6;
    color: var(--c9);
  }
  .mobile-filter-bar .button {
    width: 100%;
    padding: 0 20rem;
    font-size: var(--f-s);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: var(--sl) solid #436a55;
    border-radius: var(--br1);
    color: #2c2c2c;
    gap: 12rem;
    transition: all 0.25s;
  }
  .mobile-filter-bar .button:hover {
    background-color: #436a55;
    color: #fff;
  }
  .mobile-filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background-color: var(--c0);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s 0.3s;
    visibility: hidden;
  }
  .mobile-filter-modal.active {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s 0s;
  }
  .mobile-filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20rem 12rem;
    flex: none;
  }
  .mobile-filter-modal-title {
    font-size: 24rem;
    font-weight: 500;
    color: var(--c1);
    letter-spacing: -0.04em;
  }
  .mobile-filter-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-filter-modal-close .icon {
    width: 24rem;
    height: 24rem;
  }
  .mobile-filter-modal-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 220rem;
  }
  .mobile-accordion-item {
    border-bottom: var(--sl) solid var(--c7);
  }
  .mobile-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24rem 12rem;
    cursor: pointer;
    user-select: none;
  }
  .mobile-accordion-header span:first-child {
    font-size: 20rem;
    font-weight: 500;
    color: var(--c1);
  }
  .mobile-accordion-icon {
    width: 24rem;
    height: 24rem;
    color: var(--c6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
  }
  .mobile-accordion-item.active .mobile-accordion-icon {
    transform: scaleY(-1);
  }
  .mobile-accordion-body {
    padding-bottom: 24rem;
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .mobile-accordion-body-inner {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 15rem;
  }
  .mobile-filter-modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--c0);
    border-top: var(--sl) solid var(--c7);
    padding: 20rem var(--wr) calc(20rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 20rem;
    align-items: center;
    z-index: 10;
  }
  .mobile-filter-modal-count {
    font-size: var(--f-s);
    font-weight: 500;
    color: var(--c9);
  }
  .mobile-filter-modal-footer .button__action {
    width: 100%;
    height: 50rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c6);
    border-radius: var(--br1);
    color: var(--c2);
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: var(--f-s);
    padding: 0 30rem;
  }
  .mobile-filter-modal-footer .js-mobile-filter-reset {
    width: 100%;
    height: 50rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--sl) solid var(--c6);
    border-radius: var(--br1);
    color: var(--c6);
    background-color: transparent;
    font-size: var(--f-s);
    font-weight: 500;
  }
  body.filter-modal-open {
    overflow: hidden;
  }
  .s3-1 {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .s3-2 {
    margin: 0 0 30rem;
  }
  .s3-2-2 {
    margin: 20rem 0 0;
  }
  .s3-4 {
    display: none;
  }
  .s3-5 {
    padding: 20rem 15rem;
    grid-gap: 15rem;
  }
  .s3-3 .s3-5::before {
    min-width: 0;
  }
  .s3-3 .s3-5-2 {
    grid-column: 1/-1;
  }
  .s4-1 {
    grid-template-columns: auto;
    grid-gap: 0;
  }
  .s4-4 {
    padding: 0 0 25rem;
    border-bottom: var(--sl) solid var(--c8);
    display: flex;
    align-items: center;
  }
  .s4-4::before {
    display: none;
  }
  .s4-4-1 {
    margin: 0 20rem 0 0;
    flex: none;
  }
  .s4-2:not(:last-child) .s4-4 {
    margin-bottom: 25rem;
  }
  .s4-2 .s4-3 {
    margin-bottom: 30rem;
  }
  .s5-1 {
    grid-template-columns: auto;
    grid-gap: 10rem;
  }
  .s5-2 {
    padding: 30rem 15rem;
  }
  .s5-3 {
    order: -1;
  }
  .s5-5:not(:first-child) {
    margin-top: 30rem;
  }
  .s5-6 {
    margin: -5rem;
  }
  .s5-6-1 {
    padding: 5rem;
    margin: 0;
    width: 100%;
  }
  .s6-2 {
    grid-template-columns: auto;
    padding: 30rem 0;
    grid-gap: 20rem;
  }
  .s6-2-3 {
    order: -1;
  }
  .s6-3 {
    margin-top: 30rem;
  }
  .s7-1 {
    grid-template-columns: auto;
    grid-gap: 10rem;
    border-radius: 0;
  }
  .s7-2 {
    grid-column: auto;
    border-radius: var(--br1);
  }
  .s7-3 {
    grid-column: auto;
    border-radius: var(--br1);
    padding: 30rem 15rem;
  }
  .s7-3-2 {
    margin-top: 20rem;
  }
  .s7-3-3 {
    margin-top: 25rem;
  }
  .s8-1 {
    grid-template-columns: auto;
    padding: 0;
  }
  .s8-2 {
    text-align: left;
    max-width: 320rem;
  }
  .s8-3 {
    margin: 0;
  }
  .s8-4 {
    margin-top: 30rem;
  }
  .s8-4-2 {
    margin-top: 30rem;
  }
  .s9-1 {
    margin-bottom: 30rem;
  }
  .s9-2 {
    flex-direction: column;
    margin: -5rem;
  }
  .s9-3 {
    margin: 5rem;
  }
  .s9-3-2 {
    margin-top: 20rem;
  }
  .s10:not(:first-child) {
    margin-top: 0;
  }
  .s10-1 {
    grid-template-columns: auto;
    padding: 0;
    min-height: 0;
  }
  .s10-2 {
    grid-column: auto;
  }
  .s10-3 {
    grid-column: auto;
    margin: 0 0 0rem;
  }
  .s10-5 {
    margin-top: 20rem;
  }
  .s10-5-2 {
    padding: 15rem 25rem;
  }
  .s10-5-2 ul {
    font-size: var(--f-xs);
  }
  .s10-6 {
    margin-top: 20rem;
  }
  .s11-1 {
    margin-bottom: 30rem;
  }
  .s11-2 {
    margin: 0 -2rem;
  }
  .s11-3 {
    padding: 0 2rem;
  }
  .s11-3 img {
    height: 220rem;
  }
  .s12-1 {
    margin-bottom: 30rem;
    grid-template-columns: auto;
    grid-gap: 0;
    position: relative;
    z-index: 2;
  }
  .s12-1-2 {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 50rem;
  }
  .s12-2 .swiper {
    margin: 0;
  }
  .s12-3 {
    padding: 20rem var(--wr) 0;
  }
  .s12-3::after {
    display: none;
  }
  .s13 {
    padding: 60rem 0;
  }
  .s13:not(:first-child) {
    margin-top: -100rem;
  }
  .s13-1 {
    grid-template-columns: auto;
    grid-gap: 60rem;
  }
  .s13-3 {
    grid-column: auto;
    padding: 30rem 20rem;
  }
  .s13-6 {
    margin-top: 20rem;
  }
  .s13-7 {
    grid-column: auto;
  }
  .s14-1 {
    grid-template-columns: auto;
    padding: 0 0 30rem;
    grid-gap: 0;
    grid-template-rows: 1fr auto;
  }
  .s14-3 {
    grid-column: auto;
    padding: 10rem;
    grid-template-columns: 1fr auto;
    grid-gap: 30rem 15rem;
  }
  .s14-6 {
    margin: -5rem;
  }
  .s14-6-1 {
    padding: 5rem;
    margin: 0;
    width: 100%;
  }
  .s15-1 {
    grid-template-columns: auto;
    grid-gap: 10rem;
    background-color: transparent;
    border-radius: 0;
  }
  .s15-2 {
    border-radius: var(--br1);
  }
  .s15-2-2 {
    padding: 15rem;
  }
  .s15-3 {
    order: -1;
    padding: 30rem 15rem;
    background-color: var(--c6);
    border-radius: var(--br1);
  }
  .s15-3-2 {
    margin-top: 20rem;
  }
  .s15-3-3 {
    margin-top: 20rem;
  }
  .s15-3-4 {
    margin-top: 25rem;
  }
  .s16 {
    padding: 60rem 0;
  }
  .s16 .section-header-main * {
    text-align: center;
  }
  .s16 .s16-2 {
    display: none !important;
  }
  .s16-2 {
    display: none;
  }
  .s16-3 {
    grid-gap: var(--wr);
    grid-template-columns: minmax(0, 1fr);
  }
  .s16-3::before {
    display: none;
  }
  .s16-4 {
    margin-top: 30rem;
    width: 100%;
  }
  .s16-5 {
    grid-column: 1/-1;
    margin: 0 calc(var(--wr) / -2);
  }
  .s16-5::before {
    display: none;
  }
  .s16-5 .swiper {
    margin: 0;
  }
  .s16-6 {
    padding: 0 calc(var(--wr) / 2);
  }
  .s17-1 {
    grid-template-columns: auto;
    grid-gap: 30rem;
  }
  .s17-2 {
    grid-column: auto;
  }
  .s17-3 {
    display: none;
  }
  .s17-4 {
    grid-column: auto;
  }
  .s17-5 {
    grid-column: auto;
    position: sticky;
    bottom: -1px;
    margin: var(--awr);
    padding: var(--wr);
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10rem;
    background-color: var(--c2);
  }
  .s17-7 {
    margin-top: 20rem;
  }
  .s17-8 {
    grid-gap: 10rem;
    font-size: var(--f-d);
  }
  .s17-8-2 a {
    word-break: break-all;
    white-space: normal;
  }
  .s17-9-2 {
    grid-column: auto;
    margin-top: 30rem;
    font-size: var(--f-d);
  }
  .s17-9-3 {
    grid-column: auto;
    margin-top: 10rem;
  }
  .s17-10 {
    padding-top: 30rem;
    flex-direction: column;
  }
  .s17-12 {
    margin-top: 30rem;
  }
  .s17-12-1 {
    margin-bottom: 20rem;
  }
  .s17-12-3 ul {
    grid-template-columns: auto;
  }
  .s18-2 {
    grid-column: 1/-1;
  }
  .s19-2 {
    grid-column: 1/-1;
  }
  .s404:last-child {
    margin: 0;
  }
  .s404-2-1 {
    font-size: 120rem;
  }
  .s404-2-2 {
    margin-top: 20rem;
  }
  .s404-2-3 {
    margin-top: 20rem;
    width: 100%;
  }
  .menu {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "m2" "m3" "m4" "m6" "m5";
    grid-gap: 0;
  }
  .m1 {
    display: none;
  }
  .m2 {
    margin-top: 0;
  }
  .m2 ul {
    font-size: var(--f-xxl);
    grid-gap: 15rem;
  }
  .m3 {
    margin-top: 50rem;
  }
  .m4 {
    margin-top: 30rem;
  }
  .m5 {
    margin-top: 30rem;
  }
  .m6 {
    margin-top: 30rem;
  }
}
@media screen and (min-width: 1024px) {
  .mobile {
    display: none !important;
  }
  .menu {
    grid-template-areas: "m1 m1 m2 m2" "m3 m3 . ." "m4 . m5 m6";
  }
  .m1,
  .m2 {
    transition: opacity 0.25s 0s;
    opacity: 0;
  }
  .map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .map-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    height: 100%;
    justify-content: flex-end;
  }
  .map img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .s1-2 {
    order: -1;
  }
  .s1-2:last-child {
    grid-row: 1/3;
    margin-top: auto;
    margin-bottom: auto;
  }
  .s1-3 {
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .s3-3:not(:last-child) {
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .s4-2:nth-child(n+5) {
    margin-top: 50rem;
  }
  .s4-2:nth-child(n+5) .s4-4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: -1;
    border-top: var(--sl) solid var(--c6);
    opacity: 0.2;
    margin: 0 20rem 25rem;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 1px;
  }
}
.footer {
  color: var(--c2);
  background-color: var(--c6);
}

.footer a {
  transition: background-size 0.25s, color 0.25s;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 var(--sl);
}

.footer a:hover {
  background-position: left bottom;
  background-size: 100% var(--sl);
}

.footer .f3 {
  font-size: var(--f-xxl);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer .f3 .title {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.footer .f4,
.footer .f2,
.footer .f6,
.footer .f7 {
  font-size: var(--f-b);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.footer .footer-menu-title {
  font-size: var(--f-xl);
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 32rem;
}

.footer .bottombar {
  font-size: 20rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.filter-reset a,
.topbar-nav a,
.menu a:not(.button),
.s17-7 a,
.s1-8 a,
.s1-10 a {
  transition: background-size 0.25s, color 0.25s;
  background-size: 0 var(--sl);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: linear-gradient(currentColor, currentColor);
  display: inline;
  padding-bottom: 0;
}

.filter-reset a:hover,
.topbar-nav a:hover,
.menu a:not(.button):hover,
.s17-7 a:hover,
.s1-8 a:hover,
.s1-10 a:hover {
  background-size: 100% var(--sl);
  background-position: left bottom;
}

.m3 a:hover {
  color: var(--c2);
}

/* hover animations */
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .section.s14 .button__default:hover {
    background-color: var(--c2) !important;
  }
  .button {
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  }
  .button__default:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--c4);
    border-color: var(--c4);
  }
  .button__secondary:hover {
    background-color: var(--c4);
    color: var(--c2);
    border-color: var(--c4);
  }
  .button__contrast:hover {
    color: var(--c2);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--c2);
  }
  .button__action:hover {
    color: var(--c6);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--c6);
  }
  .carousel-button {
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  }
  .carousel-button:hover {
    background-color: var(--c4);
    color: var(--c2);
    border-color: var(--c4);
  }
  .card-media {
    transition: transform 0.25s;
    will-change: transform;
  }
  .card-1:hover .card-media,
  .card-2:hover .card-media {
    transform: scale(1.05);
  }
  .topbar-menu-icon {
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  .header:not(.menu-opened) .topbar-menu:hover .topbar-menu-icon {
    background-color: var(--c4);
    color: var(--c2);
    border-color: var(--c4);
  }
  .chip,
  .chip-icon {
    transition: all 0.25s;
  }
  .chip:hover {
    border-color: var(--c6);
  }
  .chip:hover .chip-icon {
    color: var(--c6);
    opacity: 1;
  }
  .s3-5 {
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  }
  .s3-5.active {
    background-color: var(--c6);
    border-color: var(--c6);
    color: var(--c2);
  }
}
.section-form {
  padding: clamp(20px, 2.9296875vw, 42rem) 0 clamp(60px, 8.7890625vw, 130rem);
}

.section-form__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: clamp(30px, 2.9296875vw, 40rem);
  align-items: flex-start;
}

.section-form__inner > .title {
  width: 100%;
  grid-column: 1/-1;
  text-align: center;
}

@media screen and (max-width: 1023.98px) {
  .section-form__inner > .title {
    order: -2;
  }
}
@media screen and (min-width: 1023.99px) {
  .section-form__inner > .title {
    padding-bottom: 120rem;
    border-bottom: 1px solid rgba(61, 103, 80, 0.4);
  }
}
@media screen and (max-width: 1023.98px) {
  .section-form__inner {
    display: flex;
    flex-direction: column;
  }
}
.section-form__list {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.8828125vw, 80rem);
}

.section-form__coll {
  padding: 32rem;
  background: var(--Fill-Milk, #fffcf3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28rem;
  width: 100%;
}

@media screen and (max-width: 1023.98px) {
  .section-form__coll {
    order: -1;
    border-radius: 4rem;
    border: 1px solid rgba(61, 103, 80, 0.4);
    padding: 30rem 20rem;
    gap: 30rem;
  }
}
@media screen and (min-width: 1023.99px) {
  .section-form__coll {
    position: sticky;
    top: calc(var(--headroom-height, 130rem) + 20rem);
  }
}
.section-form__coll:has(.form-thank-you) .section-form__coll-row {
  display: none;
}

.section-form__coll-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 475rem;
}

.section-form__coll-row .subtitle {
  opacity: 0.6;
}

.section-form__coll .formbox-row + .formbox-row {
  margin-top: 10rem !important;
}

.section-form__coll .wpcf7 {
  width: 100%;
}

.section-form__coll .wpcf7 p:not([class]) {
  text-align: center;
  margin: 28rem auto 0;
  color: color-mix(in srgb, var(--Fill-Black, #2c2c2c) 60%, transparent);
  font-size: 20rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.8px;
}

.section-form__coll .wpcf7 .form-thank-you {
  padding: 0 !important;
}

.section-form__coll .wpcf7-response-output {
  display: none;
}

.wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}

.wpcf7-form-control-wrap > * {
  width: 100%;
}

.wpcf7 input {
  width: 100%;
}

.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover,
.wpcf7 input:-webkit-autofill:focus {
  -webkit-text-fill-color: #2c2c2c;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0) 100%);
}

.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  left: 25rem;
  bottom: 2rem;
  font-size: 80%;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) {
  display: flex;
  margin: 28rem 0;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) .wpcf7-list-item {
  display: contents;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10rem;
  max-width: 390rem;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) label:before {
  flex-shrink: 0;
  margin-top: 5rem;
  content: "";
  width: 20rem;
  height: 20rem;
  position: relative;
  border: 2rem solid #2c2c2c;
  display: flex;
  border-radius: 4rem;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='6' fill='%232C2C2C'/%3E%3C/svg%3E%0A");
  background-size: 0%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) label:has(input:checked):before {
  background-size: 50%;
}

.section-form__coll .wpcf7 .wpcf7-form-control-wrap:has([type=checkbox]) label input {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.header.menu-opened *::-moz-selection {
  background-color: #f8f4ef;
  color: #3d6750;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #3d6750;
}
.header.menu-opened *::selection {
  background-color: #f8f4ef;
  color: #3d6750;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #3d6750;
}

.footer {
  margin-top: -1rem;
  padding: 40rem 0 20rem;
}
.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: clamp(10rem, 1.953125vw, 20rem);
}
@media (max-width: 1024px) {
  .footer-menu + .footer-menu {
    margin-top: 28rem;
  }
}
.footer .dd-icon {
  max-width: 24rem;
  display: inline-flex;
}
.footer .bottombar {
  margin-top: 120rem;
  padding-top: 20rem;
  border-top: 1rem solid rgba(247, 243, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20rem;
}
@media (max-width: 1024px) {
  .footer .bottombar {
    margin-top: 40rem;
    gap: 14rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .bottombar__coll {
  max-width: 549rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer .bottombar__coll {
    max-width: 100%;
    gap: 20rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .bottombar-author {
  flex-shrink: 0;
}
.footer .footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 75rem 20rem;
}
@media (max-width: 1024px) {
  .footer .footer-grid {
    flex-direction: column;
    gap: 0;
  }
  .footer .footer-grid .footer-menu-title {
    font-size: 24rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.2rem;
    margin-bottom: 16rem;
  }
}
.footer .footer-grid__coll:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75rem;
}
.footer .footer-grid__coll:first-child .f1 {
  grid-column: 1/-1;
}
.footer .footer-grid__coll:first-child .f1 a {
  display: flex;
  max-width: 348rem;
  background: none !important;
}
@media (max-width: 1024px) {
  .footer .footer-grid__coll:first-child .f1 {
    order: -10;
    margin-bottom: 40rem;
    max-width: 310rem;
  }
}
.footer .footer-grid__coll:last-child {
  display: flex;
  flex-direction: column;
  max-width: 549rem;
  width: 100%;
}
.footer .footer-grid__coll:last-child .f3 {
  min-height: var(--logo-height);
  display: flex;
  align-items: center;
  margin-bottom: 75rem;
}
@media (max-width: 1024px) {
  .footer .footer-grid__coll:last-child .f3 {
    order: -9;
    margin-bottom: 50rem;
    min-height: initial;
  }
}
.footer .footer-grid__coll:last-child .footer-info {
  display: flex;
  flex-direction: column;
  gap: 40rem;
}
@media (max-width: 1024px) {
  .footer .footer-grid__coll:last-child .footer-info {
    margin-top: 50rem;
    gap: 30rem;
  }
}
@media (max-width: 1024px) {
  .footer .footer-grid__coll {
    display: contents !important;
  }
}

.s17-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20rem;
}
.s17-contact-cards-grid a {
  transition: background-size 0.25s, color 0.25s;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 var(--sl);
}
.s17-contact-cards-grid a:hover {
  background-position: left bottom;
  background-size: 100% var(--sl);
}
@media (max-width: 1024px) {
  .s17-contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .s17-contact-cards-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.s17-contact-cards-grid .s17-contact-card {
  padding: 20rem;
  border-radius: 4rem;
  border: 1px solid rgba(61, 103, 80, 0.3);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .s17-contact-cards-grid .s17-contact-card:nth-child(3) {
    grid-column: 1/-1;
  }
}
.s17-contact-cards-grid .s17-contact-card .s17-contact-card-title {
  margin-bottom: 20rem;
  color: #3D6750;
  font-size: var(--f-xl);
  font-style: normal;
  line-height: 120%;
  letter-spacing: -1.6rem;
}
.s17-contact-cards-grid .s17-contact-card p {
  margin: 0;
  font-size: 20rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24rem */
  letter-spacing: -0.8rem;
}
.s17-contact-cards-grid .s17-contact-card p + p {
  margin-top: 10rem !important;
}

.s17-6-community {
  color: #EC8877;
}

.section.s2 {
  padding-top: 42rem;
}
.section.s2.mode {
  padding-top: 0;
}
.section.s2.mode .title__large {
  font-size: clamp(32px, 4.8828125vw, 72rem);
}
.section.s2.mode .subtitle {
  font-size: 20rem;
  max-width: 920rem;
}
.section.s2.mode .section-header .button {
  margin: 20rem auto 0;
  padding: 0;
}
@media (min-width: 1025px) {
  .section.s2.mode .section-header .button {
    max-width: 210rem;
  }
}
.section.s2.mode .card-1 .card-title {
  font-size: clamp(var(--f-l), 2.9296875vw, 32rem);
}
.section.s2.mode .card-subtitle {
  font-size: 20rem;
}

.checkbox-title {
  white-space: nowrap !important;
}

.selector-list:not(.cf7-theme-select-options) {
  max-width: fit-content !important;
  width: 100%;
}

.print-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  padding: 8rem 13rem;
  border-radius: 4rem;
  border: 1rem solid rgba(44, 44, 44, 0.3);
  background: #FFFCF3;
  color: #2C2C2C;
  font-size: max(14px, 20rem);
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  letter-spacing: -0.8rem;
}
.print-button svg {
  stroke: #436A55 !important;
}

.card.card-2 .title {
  font-size: max(var(--f-l), 35rem);
}

.cf7-theme-select {
  padding: 24rem;
  width: 100%;
}
.cf7-theme-select .selector-holder-input {
  color: #7e7c7a;
  text-transform: uppercase;
}
.cf7-theme-select.selected .selector-holder-input {
  color: rgb(44, 44, 44);
}

.formbox-row .button {
  padding: 0;
}

.formbox-row + .formbox-row {
  margin-top: 12rem;
}

.formbox-row:has(.formbox-label) {
  margin-top: 24rem;
}

.community-detail-hero .s1-4 .title {
  font-size: clamp(32px, 4.8828125vw, 72rem);
}
.community-detail-hero .s1-4 {
  max-width: 100%;
}
.community-detail-hero .s1-1 {
  gap: 55rem 0;
}
.community-detail-hero .s1-8:not(:first-child) {
  margin-top: 10rem;
}
.community-detail-hero .s1-8-1, .community-detail-hero .title.title__small {
  font-size: 20rem;
  font-weight: 500;
}
.community-detail-hero .subtitle {
  font-size: 20rem !important;
}
@media (min-width: 1025px) {
  .community-detail-hero .s1-3::before {
    padding-top: 70%;
  }
}
.community-detail-hero .tag {
  font-size: 19rem;
}

.filter-no-results-message {
  max-width: 560rem;
}

.wpcf7-response-output {
  display: none;
}

.mobile-links {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-links {
    display: block;
  }
  .mobile-links ul {
    display: flex;
    flex-direction: column;
    gap: 20rem;
  }
}
@media (max-width: 576px) {
  .mobile-links .title {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .desktop-links {
    display: none;
  }
}

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