:root {
  --gap: 1.5rem;
  --item-gap: 1rem;
  --flow-max: 18vmin;
  --flow: max(4rem, var(--flow-max));
  --inner: 80rem;
  --inner-min: 58rem;
  --atime: .3s;
  --color: #000;
  --color-light: #777;
  --color-dark: #000;
  --color-primary: #A79870;
  --color-muted: #aaa;
  --color-sell: #987D22;
  --color-rent: #00FF1D;
  --bg: #fff;
  --bg-light: #F5F5F5;
  --bg-dark: #000;
  --bg-inverted: #000;
  --bg-primary: var(--color-primary);
  --font-color: var(--color);
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size: 1.25rem;
  --font-size-intro: clamp(1.5rem, 2.5vw + 0.5rem, 1.875rem);
  --font-size-small: 1rem;
  --font-size-tiny: .75rem;
  --lh: 1.45;
  --lh-heading: 1.35;
  --font-size-h1: clamp(3rem, 6vw + 1rem, 4rem);
  --font-size-h2: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  --font-size-h3: clamp(1.5rem, 2.5vw + 0.5rem, 1.75rem);
  --font-size-h4: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  --font-size-h5: clamp(.875rem, 1.5vw + 0.5rem, 1.25rem);
  --font-size-h6: clamp(.875rem, 1vw + 0.5rem, 1rem);
  --font-weight-thin: 100;
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-black: 900;
  --border-radius: .25rem;
  --border-radius-wide: 2rem;
  --border-color: rgb(0 0 0 / .25);
  --input-border-width: 2px;
  --input-border-radius: 2rem;
  --input-border-color: transparent;
  --input-background: rgb(255 255 255 / .25);
  --placeholder: #aaa;
  --btn-solid-bg: var(--bg-dark);
  --btn-solid-color: #fff;
  --btn-solid-hover-bg: color-mix(in srgb, var(--btn-solid-bg), white 20%);
  --btn-border-bg: transparent;
  --btn-border-color: var(--color);
  --btn-border-radius: 2rem;
  --btn-border-hover-bg: color-mix(in srgb, var(--btn-border-color), transparent 90%);
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:where(html) {
  color-scheme: light dark;
  hanging-punctuation: first allow-end last;
  interpolate-size: allow-keywords;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

:where(html.translated-rtl) {
  direction: rtl;
}

@media (prefers-reduced-motion: reduce) {
  :where(html) {
    scroll-behavior: auto;
  }
}
:where(body) {
  min-block-size: 100svb;
  min-inline-size: 300px;
}

body {
  font-size: 100%;
}

main {
  display: block;
}

:where(canvas, img, picture, svg, video) {
  block-size: auto;
  border: none;
  display: block;
  max-inline-size: 100%;
}

:where(button, input, progress, select, textarea) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  hanging-punctuation: none;
  line-height: inherit;
  text-align: start;
  touch-action: manipulation;
}

:where(button) {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

:where(textarea) {
  resize: vertical;
}

:where(textarea:not([rows])) {
  field-sizing: content;
}

:where(fieldset, iframe) {
  border: none;
}

:where(p, li, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

:where(a) {
  text-decoration: none;
}
:where(a):link, :where(a):visited {
  color: currentColor;
}
:where(a).currentcolor {
  color: currentColor;
}

:where(abbr[title]) {
  border: none;
  text-decoration: none;
}

:where(cite) {
  font-style: inherit;
}

:where(small) {
  font-size: inherit;
}

:where(ul) {
  list-style: square;
}

:where(ol) {
  list-style: decimal;
}

:where(dialog, [popover]) {
  background: transparent;
  border: none;
  color: inherit;
  margin: auto;
  max-block-size: none;
  max-inline-size: none;
  position: fixed;
}

:where(figure) > a {
  display: block;
}
:where(figure) img {
  width: 100%;
}

:where([popover]) {
  inset: auto;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.15);
}

::selection {
  background: rgba(0, 0, 0, 0.15);
}

::-moz-placeholder {
  color: var(--placeholder, --color);
}

::placeholder {
  color: var(--placeholder, --color);
}

.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

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

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

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

.around-xs {
  justify-content: space-around;
}

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

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.row {
  margin-left: calc(var(--item-gap) * -1);
  margin-right: calc(var(--item-gap) * -1);
}
.row div[class*=col-] {
  padding-left: var(--item-gap);
  padding-right: var(--item-gap);
}
.row div[class*=col-]:has(.teaser) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 64rem) {
  .row.row--mobile div[class*=col-] {
    margin-bottom: var(--gap);
  }
}
@media screen and (min-width: 64rem) {
  .row.row--listing div[class*=col-] {
    margin-bottom: max(3rem, 8vmin);
  }
}
.row.row--no-gap {
  margin-inline: 0;
}
.row.row--no-gap div[class*=col-] {
  padding-inline: 0;
}

.splide__track[style] {
  padding: 2px !important;
  margin-inline: -2px;
}

.splide .splide__arrows {
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0;
}
.splide .splide__arrow {
  position: static;
  transform: none;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0.5rem;
  opacity: 1;
  transition: opacity var(--atime) ease-in-out;
  color: var(--color);
}
.splide .splide__arrow svg {
  display: none;
}
.splide .splide__arrow::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.splide .splide__arrow--next::after {
  mask-image: url("../img/icon_arrow_right.svg");
  -webkit-mask-image: url("../img/icon_arrow_right.svg");
}
.splide .splide__arrow--prev::after {
  mask-image: url("../img/icon_arrow_left.svg");
  -webkit-mask-image: url("../img/icon_arrow_left.svg");
}
.splide .splide__arrow:hover:not(:disabled) {
  opacity: 0.7;
}
.splide .splide__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.splide .splide__arrow:disabled:has(+ .splide__arrow[disabled]) {
  display: none;
}
.splide .splide__arrow:disabled:has(+ .splide__arrow[disabled]) + .splide__arrow[disabled] {
  display: none;
}

body {
  font-family: var(--font-sans);
  color: var(--color, #000);
  line-height: var(--lh);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

.site__header {
  padding-block: 1rem;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 64rem) {
  .site__header {
    padding-block: unset;
  }
}
.site__header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site__footer {
  border-top: 1px solid var(--border-color);
}
.site__footer .site__logo {
  padding-block: var(--gap);
  padding-right: var(--gap);
  border-right: 1px solid var(--border-color);
}
.site__footer > .inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.site__footer .outer {
  padding-block: var(--gap);
  border-top: 1px solid var(--border-color);
}
.site__footer .outer > .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.site__footer .outer .list--inline {
  font-size: var(--font-size-small);
}

section {
  color: var(--color);
  padding-bottom: var(--flow);
}
section:first-child:not(.ntp, .section--banner) {
  padding-top: var(--flow);
}
section.bg {
  padding-block: var(--flow);
}
section.bg + section:not(.section--banner) {
  padding-top: var(--flow);
}

article:has(> section:last-of-type.bg) {
  padding-bottom: var(--flow);
}
article:only-child {
  padding-bottom: 0 !important;
}

.inner {
  padding-inline: var(--gap);
  margin: 0 auto;
  max-width: var(--inner);
}
.inner--min {
  max-width: var(--inner-min);
}

.bg.bg--light {
  background: var(--bg-light);
}
.bg.bg--dark {
  --color: #fff;
  --border-color: #fff;
  background: var(--bg-dark);
  --btn-solid-bg: #fff;
  --btn-solid-color: var(--color-dark);
  --btn-solid-hover-bg: color-mix(in srgb, #fff, var(--color-dark) 15%);
  --btn-border-color: #fff;
  --btn-border-hover-bg: rgb(255 255 255 / .1);
  --placeholder: #fff;
}
.bg.bg--dark .teaser__icon {
  filter: unset;
}
.bg.bg--dark ::-moz-selection {
  background: rgba(255, 255, 255, 0.25);
}
.bg.bg--dark ::selection {
  background: rgba(255, 255, 255, 0.25);
}
.bg.bg--primary {
  color: #fff;
  background: var(--color-primary);
  --placeholder: #fff;
}
.bg.has-logo {
  position: relative;
}
.bg.has-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/logo_bg.png");
  background-repeat: no-repeat;
  background-position: 0 calc(100% + 1rem);
  background-size: max(28%, 25rem);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.bg.has-logo > * {
  position: relative;
  z-index: 1;
}

.site__logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.site__logo img {
  max-width: 3.25rem;
}
.site__logo span {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  max-width: 7rem;
}

.site__header nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 64rem) {
  .site__header nav {
    display: flex;
  }
}

ul.nav__main {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  list-style: none;
  margin: 0;
}

ul.nav__links {
  text-align: center;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  list-style: none;
}
ul.nav__links li {
  font-size: var(--font-size-small);
  padding: 0.5rem 1rem;
}
ul.nav__links li + li {
  border-top: 1px solid var(--border-color);
}
ul.nav__links a {
  color: var(--color-light);
}
ul.nav__links a:hover {
  color: var(--color);
  text-decoration: none;
}

.nav__avatar {
  border-radius: 100%;
  max-width: 3rem;
  overflow: hidden;
}
.nav__avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.nav__footer.list--inline {
  padding-bottom: var(--gap);
}

:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  font-weight: var(--font-weight-light);
  line-height: 1.125;
  text-wrap: balance;
  -webkit-hyphens: auto;
          hyphens: auto;
  hyphenate-limit-chars: 8 4 4;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) + p {
  margin-top: 0.5rem;
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) + .button, :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) + .buttons {
  margin-top: var(--gap);
}

h1, .h1 {
  font-size: var(--font-size-h1);
}
h1 + .text--intro, .h1 + .text--intro {
  margin-top: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-h2);
}

h3, .h3 {
  font-size: var(--font-size-h3);
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-medium);
}

h5, .h5 {
  font-size: var(--font-size-h5);
}

h6, .h6 {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-bold);
}

strong, b {
  font-weight: var(--font-weight-semi-bold);
}

:where(a) {
  transition: color var(--atime) ease-in-out, opacity var(--atime) ease-in-out;
}
:where(a):not([class]) {
  color: inherit;
  text-decoration: none;
}
:where(a):not([class]):hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}

:where(p, ul, ol) {
  font-size: var(--font-size);
  font-weight: var(--font-weight-light);
}

:where(p):not(:last-of-type) {
  margin-bottom: var(--gap);
}

:where(ul, ol):not(:last-child) {
  margin-bottom: var(--gap);
}

.tagline {
  font-size: var(--font-size-small);
  margin-bottom: calc(var(--gap) / 2);
}
.tagline :is(p) {
  font-size: inherit;
}

.text :is(h1, h2, h3) + p {
  margin-top: var(--gap);
}
.text.text--intro p:first-child {
  font-size: var(--font-size-intro);
  line-height: var(--lh-heading);
}
.text.text--large {
  font-size: var(--font-size-intro);
}
.text.text--large p {
  font-size: 1em;
  line-height: var(--lh-heading);
}
.text + .buttons {
  margin-top: var(--gap);
}
.text :where(ul, ol) {
  font-size: var(--font-size);
  font-weight: var(--font-weight-light);
  margin-block: var(--gap);
  padding-left: 1.25rem;
}

.row--gallery figure {
  margin-bottom: calc(var(--item-gap) * 2);
}
.row--gallery div[class*=col-]:first-child figure:first-child {
  margin-top: 15%;
  margin-left: 15%;
}
.row--gallery div[class*=col-]:last-child figure:first-child {
  margin-right: 15%;
}

.parallax__content {
  padding-top: var(--flow);
}

@media screen and (min-width: 64rem) {
  .site__content:has(.parallax) > section {
    position: relative;
    z-index: 100;
  }
  section.section--parallax:has(.parallax) {
    padding-block: 0;
    z-index: 0;
  }
  section.section--parallax:has(.parallax) + section {
    padding-top: var(--flow);
  }
  .parallax {
    --aspect-ratio: 16 / 14;
    position: relative;
    overflow: hidden;
  }
  .parallax__content__wrapper {
    position: absolute;
    inset: 0;
  }
  .parallax__content {
    color: #fff;
    width: 100%;
    padding-block: calc(var(--flow) / 1.5);
    background: rgba(0, 0, 0, 0.5);
  }
  .parallax__content p {
    font-size: clamp(1rem, 5vw, 1.85rem) !important;
    line-height: 1.35;
  }
  .parallax__media {
    position: relative;
    background: var(--theme-primary);
  }
  .parallax__media:has(figure + figure) {
    --aspect-ratio: 16 / 8;
  }
  .parallax__media figure {
    aspect-ratio: var(--aspect-ratio);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  .parallax__media img {
    position: fixed;
    inset: 0;
    z-index: 20;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.text + .location__map {
  margin-top: calc(var(--gap) * 2);
}

.location__map {
  width: 100%;
  min-height: 400px;
  max-height: 600px;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.0125);
  background: var(--bg-light);
}

.location__address {
  font-size: var(--font-size-small);
  margin-top: var(--gap);
  color: var(--color-light);
}

details {
  position: relative;
  border-top: 2px solid;
}
details:last-of-type {
  border-bottom: 2px solid;
}
details > * {
  flex: 1;
}
details summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap) 0;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-light);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: transform var(--atime) ease-in-out;
}
details::details-content {
  interpolate-size: allow-keywords;
  height: 0;
  overflow: hidden;
  transition: height var(--atime) ease-in-out, content-visibility var(--atime) ease-in-out allow-discrete;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details[open]::details-content {
  height: auto;
}

.details__content {
  padding-bottom: var(--gap);
}
.details__content ul span {
  padding-right: 0.25rem;
}
@media screen and (min-width: 64rem) {
  .details__content {
    padding-left: calc(50% + var(--item-gap));
  }
}

.section__header {
  margin-bottom: calc(var(--flow) / 2);
}
.section__header p + .button {
  margin-top: 1rem;
}
.section__header .flexitem + .flexitem {
  margin-top: 1rem;
}
@media screen and (min-width: 48rem) {
  .section__header .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--gap);
  }
  .section__header .flex > * {
    flex: 1;
  }
  .section__header .flex:not(:has(.text--large)):has(.button) {
    align-items: flex-end;
  }
  .section__header .flex .flexitem + .flexitem {
    margin-top: 0;
  }
}
@media screen and (min-width: 64rem) {
  .section__header:not(.is-listing) .flex > *.text {
    flex: 2;
  }
}

.section__footer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.page__header figure.hidden-sm {
  opacity: 0.5;
}

section.listing--immobilien .section__header .flex > * {
  flex: 1 !important;
}

.section--cta {
  --flow: 12vmin;
  position: relative;
}
.section--cta:has(.banner__media) {
  padding-block: 0;
}
.section--cta.bg--dark {
  background-image: url("/assets/img/logo_bg.png");
  background-repeat: no-repeat;
  background-position: 85% center;
  background-size: 20rem;
}
.section--cta.bg--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.teasers--referenzen .splide__arrows {
  left: auto;
  right: 0;
  transform: none;
}

.error {
  position: relative;
  text-align: center;
}
.error .error__content {
  padding-top: 4rem;
}
.error .buttons {
  justify-content: center;
}
@media screen and (min-width: 48rem) {
  .error .error__content {
    position: relative;
    top: -12rem;
    padding-top: 0;
    padding-inline: 10rem;
  }
}

.teaser {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.teaser:is(a):hover .teaser__media img {
  transform: scale(1.05);
}
.teaser .status {
  display: inline-block;
  color: var(--status);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.teaser .tagline {
  margin: 0 0 0.35rem;
}
.teaser.status--rent {
  --status: var(--color-rent);
}
.teaser.status--sell {
  --status: var(--color-sell);
}

.teaser__status {
  padding-top: 1rem;
  border-top: 1px solid;
  line-height: 1.25;
}

.teaser__media {
  border-radius: var(--border-radius);
  transition: opacity var(--atime) ease-in-out;
  overflow: hidden;
}
.teaser__media img {
  transition: transform var(--atime) ease-in-out;
}

.teaser__icon {
  padding: var(--gap);
  filter: invert(1);
}
.teaser__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-height: 6rem;
}

.teaser__content .heading {
  margin-bottom: var(--gap);
}
.teaser__content ul, .teaser__content ol {
  margin-top: var(--gap);
}
.teaser__content .list--border {
  font-size: var(--font-size-small);
}
.teaser__content .list--border span {
  flex-basis: 40%;
}
.teaser__content .list--border strong {
  flex: 1;
}
.teaser__content .text ul, .teaser__content .text ol {
  padding-left: 1.25rem;
}
.teaser__content .text ul li + li, .teaser__content .text ol li + li {
  margin-top: 0.5rem;
}

.teaser__footer {
  margin-top: auto;
}

.teaser--border {
  height: 100%;
  border-radius: 2rem;
  box-shadow: 0 0 0 2px var(--border-color);
  padding: 2.25rem;
}

.teaser--referenzen {
  gap: 1rem;
}
.teaser--referenzen .teaser__media figcaption {
  padding-top: 1rem;
}
.teaser--referenzen .teaser__quote figcaption {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  padding-top: 1rem;
}

article div[class*=col-]:has(h1) {
  margin-bottom: var(--gap);
}

.page__header figure {
  margin-top: 5vmin;
}

.section--banner {
  position: relative;
}

.banner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 64rem) {
  .banner:has(.banner__content) .banner__media::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
  }
}
.banner:has(.banner__media) .banner__content {
  padding-top: var(--flow);
}
@media screen and (min-width: 48rem) {
  .banner:has(.banner__media).has-logo::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    bottom: -8px;
    background-image: url("/assets/img/logo.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 30vmin;
    animation: fadeInUp 1s ease-in-out;
    pointer-events: none;
  }
}
@media screen and (min-width: 64rem) {
  .banner:has(.banner__media) {
    color: #fff;
  }
  .banner:has(.banner__media) .banner__content {
    position: absolute;
    inset: 0;
    padding-block: var(--flow);
  }
}

.banner__media img, .banner__media video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 75vmin;
}

.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}
.banner__content .text--intro p {
  padding-inline: 15%;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list--inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--gap) / 2);
}
.list--border li {
  padding: 0.25rem 0.25rem;
}
.list--border li + li {
  border-top: 1px solid var(--border-color);
}
.list--border li:has(strong) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--gap) / 2);
}
.list--border li:has(strong) span {
  flex-basis: 50%;
}

.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--btn-border-radius);
  transition: background-color var(--atime) ease-in-out, color var(--atime) ease-in-out, box-shadow var(--atime) ease-in-out;
}
.button--solid {
  background: var(--btn-solid-bg);
  color: var(--btn-solid-color);
}
.button--solid:hover {
  background: var(--btn-solid-hover-bg);
}
.button--border {
  background: var(--btn-border-bg);
  color: var(--btn-border-color);
  box-shadow: inset 0 0 0 2px currentColor;
}
.button--border:hover {
  background: var(--btn-border-hover-bg);
}
.button:disabled, .button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.text-center .buttons {
  justify-content: center;
}

figure > a {
  display: block;
}
figure.avatar {
  max-width: 10rem;
  border-radius: 100%;
  overflow: hidden;
}
figure.avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.form__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: calc(var(--gap) / 2);
}

.form__field {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.form__field label {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}
.form__field label:not(.privacy) {
  display: none;
}
.form__field .required {
  color: var(--color-primary);
}

.form__field--checkbox,
.form__field--radio {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form__field--checkbox label,
.form__field--radio label {
  font-size: var(--font-size-small);
  cursor: pointer;
}
.form__field--checkbox a,
.form__field--radio a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}
.form__field--checkbox a:hover,
.form__field--radio a:hover {
  opacity: 0.7;
}

input[type=checkbox],
input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15em;
  background: #fff;
  border: 2px solid currentColor;
  cursor: pointer;
  transition: border-color var(--atime) ease, background-color var(--atime) ease;
}
input[type=checkbox]:focus-visible,
input[type=radio]:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

input[type=checkbox] {
  border-radius: 0.25rem;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--atime) ease, transform var(--atime) ease;
  width: 35%;
  height: 60%;
  top: calc(15% - 1px);
  left: calc(30% + 1px);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.5);
}
input[type=checkbox]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--atime) ease;
}
input[type=radio]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

input:where([type=text], [type=email], [type=tel], [type=number]),
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: var(--font-size);
  color: var(--input-color);
  background: var(--input-background);
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  transition: border-color var(--atime) ease, box-shadow var(--atime) ease;
}
input:where([type=text], [type=email], [type=tel], [type=number]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(var(--color-primary-rgb, 0 0 0)/0.1);
}

textarea {
  resize: vertical;
  min-height: 6rem;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  max-width: min(32rem, 100vw - 3rem);
  padding: 1rem 1.25rem;
  border-radius: var(--btn-border-radius, 0.25rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: toast-lifecycle 10s ease-out forwards;
}
.toast p {
  margin: 0;
}
.toast--success {
  color: var(--color-success, #155724);
  background: var(--color-success-bg, #d4edda);
}
.toast--error {
  color: var(--color-error, #721c24);
  background: var(--color-error-bg, #f8d7da);
}

@keyframes toast-lifecycle {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  4% {
    opacity: 1;
    transform: translateY(0);
  }
  95% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
    visibility: hidden;
  }
}
.dialog {
  --dialog-max-width: 32rem;
  --dialog-padding: var(--gap);
  --dialog-backdrop: rgb(0 0 0 / 0.5);
  --dialog-radius: var(--border-radius-wide);
  --input-background: #eee;
  --placeholder: #666;
  inset: 0;
  width: 100%;
  max-width: var(--dialog-max-width);
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  border-radius: var(--dialog-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --dialog-enter-y: 1.5rem;
  animation: dialog-in 0.35s cubic-bezier(0.32, 0.72, 0, 1) allow-discrete;
}
.dialog::backdrop {
  background: var(--dialog-backdrop);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: dialog-backdrop-in 0.3s ease-out;
}
@starting-style {
  .dialog {
    opacity: 0;
    transform: translateY(var(--dialog-enter-y));
  }
}
.dialog.dialog--closing {
  animation: dialog-out 0.3s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.dialog.dialog--closing::backdrop {
  animation: dialog-backdrop-out 0.3s ease-out forwards;
}

@keyframes dialog-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dialog-backdrop-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(var(--dialog-enter-y));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dialog-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(var(--dialog-enter-y));
  }
}
.dialog__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 90vh;
  background: var(--bg);
  color: var(--font-color);
}

.dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
  flex-shrink: 0;
  padding: var(--dialog-padding);
  padding-bottom: 0;
}

.dialog__title {
  margin: 0;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  line-height: var(--lh-heading);
}

.dialog__close {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0.25rem;
  margin: -0.25rem -0.25rem -0.25rem 0;
  cursor: pointer;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--atime) ease;
}
.dialog__close:hover {
  opacity: 1;
}
.dialog__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.dialog__close span {
  display: block;
}

.dialog__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--dialog-padding);
  -webkit-overflow-scrolling: touch;
}

.dialog__intro {
  margin: 0 0 var(--gap);
  font-size: var(--font-size-small);
  color: var(--color-light);
}

.font-primary {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.no-transform {
  text-transform: none;
}

.text-left {
  text-align: left;
}
.text-left:is(ul, ol) {
  justify-content: flex-start;
}

.text-center {
  text-align: center;
}
.text-center:is(ul, ol) {
  justify-content: center;
}

.text-right {
  text-align: right;
}
.text-right:is(ul, ol) {
  justify-content: flex-end;
}

@media screen and (min-width: 30rem) {
  .text-left-xs {
    text-align: left;
  }
  .text-left-xs:is(ul, ol) {
    justify-content: flex-start;
  }
  .text-center-xs {
    text-align: center;
  }
  .text-center-xs:is(ul, ol) {
    justify-content: center;
  }
  .text-right-xs {
    text-align: right;
  }
  .text-right-xs:is(ul, ol) {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 48rem) {
  .text-left-sm {
    text-align: left;
  }
  .text-left-sm:is(ul, ol) {
    justify-content: flex-start;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-center-sm:is(ul, ol) {
    justify-content: center;
  }
  .text-right-sm {
    text-align: right;
  }
  .text-right-sm:is(ul, ol) {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 64rem) {
  .text-left-md {
    text-align: left;
  }
  .text-left-md:is(ul, ol) {
    justify-content: flex-start;
  }
  .text-center-md {
    text-align: center;
  }
  .text-center-md:is(ul, ol) {
    justify-content: center;
  }
  .text-right-md {
    text-align: right;
  }
  .text-right-md:is(ul, ol) {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 75rem) {
  .text-left-lg {
    text-align: left;
  }
  .text-left-lg:is(ul, ol) {
    justify-content: flex-start;
  }
  .text-center-lg {
    text-align: center;
  }
  .text-center-lg:is(ul, ol) {
    justify-content: center;
  }
  .text-right-lg {
    text-align: right;
  }
  .text-right-lg:is(ul, ol) {
    justify-content: flex-end;
  }
}
.fw100 {
  font-weight: 100 !important;
}

.fw200 {
  font-weight: 200 !important;
}

.fw300 {
  font-weight: 300 !important;
}

.fw400 {
  font-weight: 400 !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw600 {
  font-weight: 600 !important;
}

.fw700 {
  font-weight: 700 !important;
}

.fw800 {
  font-weight: 800 !important;
}

.fw900 {
  font-weight: 900 !important;
}

[class^=z] {
  position: relative;
}

.z0 {
  z-index: 0;
}

.z10 {
  z-index: 10;
}

.z20 {
  z-index: 20;
}

.z30 {
  z-index: 30;
}

.z40 {
  z-index: 40;
}

.z50 {
  z-index: 50;
}

.z60 {
  z-index: 60;
}

.z70 {
  z-index: 70;
}

.z80 {
  z-index: 80;
}

.z90 {
  z-index: 90;
}

.z100 {
  z-index: 100;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.ui-hidden {
  visibility: hidden;
}

@media screen and (min-width: 30rem) {
  .visible-xs {
    display: none !important;
  }
}
@media screen and (min-width: 48rem) {
  .visible-sm {
    display: none !important;
  }
}
@media screen and (min-width: 64rem) {
  .visible-md {
    display: none !important;
  }
}
@media screen and (min-width: 75rem) {
  .visible-lg {
    display: none !important;
  }
}
@media screen and (max-width: 30rem) {
  .hidden-xs {
    display: none !important;
  }
}
@media screen and (max-width: 48rem) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (max-width: 64rem) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (max-width: 75rem) {
  .hidden-lg {
    display: none !important;
  }
}
.truncate > p {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1lh;
  width: 90%;
  overflow: hidden;
}

.truncate--lines {
  position: relative;
  margin-top: var(--gap);
  display: -webkit-box;
  -webkit-line-clamp: var(--lines, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate--lines::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: auto;
  height: 2lh;
  background: linear-gradient(to right, transparent, var(--section-bg) 95%);
  pointer-events: none;
}

.stretch {
  height: 100%;
}
.stretch > * {
  height: 100%;
}

.no-ar,
.no-aspect-ratio {
  aspect-ratio: unset !important;
}

.group {
  display: inline-flex;
  gap: 0.75rem;
}
.group .button {
  margin: 0;
}
.group--buttons {
  flex-direction: column;
}
@media screen and (min-width: 48rem) {
  .group--buttons {
    flex-direction: row;
  }
  .group--buttons .button {
    white-space: nowrap;
  }
}

.p0, .no-padding {
  padding: 0 !important;
}

.m0, .no-margin {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0;
}

.mts {
  margin-top: var(--gap);
}

.mtm {
  margin-top: calc(var(--gap) * 2);
}

.mtl, .mtf {
  margin-top: var(--flow);
}

.mb0 {
  margin-bottom: 0;
}

.mbs {
  margin-bottom: var(--gap);
}

.mbm {
  margin-bottom: calc(var(--gap) * 2);
}

.mbl, .mbf {
  margin-bottom: var(--flow);
}

@media screen and (max-width: 30rem) {
  .mts-xs {
    margin-top: var(--gap);
  }
  .mtm-xs {
    margin-top: calc(var(--gap) * 2);
  }
  .mtl-xs, .mtf-xs {
    margin-top: var(--flow);
  }
  .mbs-xs {
    margin-bottom: var(--gap);
  }
  .mbm-xs {
    margin-bottom: calc(var(--gap) * 2);
  }
  .mbl-xs, .mbf-xs {
    margin-bottom: var(--flow);
  }
}
@media screen and (max-width: 48rem) {
  .mts-sm {
    margin-top: var(--gap);
  }
  .mtm-sm {
    margin-top: calc(var(--gap) * 2);
  }
  .mtl-sm, .mtf-sm {
    margin-top: var(--flow);
  }
  .mbs-sm {
    margin-bottom: var(--gap);
  }
  .mbm-sm {
    margin-bottom: calc(var(--gap) * 2);
  }
  .mbl-sm, .mbf-sm {
    margin-bottom: var(--flow);
  }
}
@media screen and (max-width: 64rem) {
  .mts-md {
    margin-top: var(--gap);
  }
  .mtm-md {
    margin-top: calc(var(--gap) * 2);
  }
  .mtl-md, .mtf-md {
    margin-top: var(--flow);
  }
  .mbs-md {
    margin-bottom: var(--gap);
  }
  .mbm-md {
    margin-bottom: calc(var(--gap) * 2);
  }
  .mbl-md, .mbf-md {
    margin-bottom: var(--flow);
  }
}
@media screen and (max-width: 75rem) {
  .mts-lg {
    margin-top: var(--gap);
  }
  .mtm-lg {
    margin-top: calc(var(--gap) * 2);
  }
  .mtl-lg, .mtf-lg {
    margin-top: var(--flow);
  }
  .mbs-lg {
    margin-bottom: var(--gap);
  }
  .mbm-lg {
    margin-bottom: calc(var(--gap) * 2);
  }
  .mbl-lg, .mbf-lg {
    margin-bottom: var(--flow);
  }
}
.dev {
  font-family: -apple-system, system-ui, "Courier New", Courier, monospace;
  text-align: left;
  color: var(--font-pri) !important;
  width: 100%;
  max-width: var(--inner-max);
  margin: var(--gap) auto;
  padding: var(--gap);
  border-radius: 3px;
  border: 3px solid blue;
  background: #fff;
  overflow: auto;
}

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