@charset "UTF-8";
:root {
  --body-font-family: Arial, san-serif;
  --body-font-family-loaded: "Circular";
  --body-color: #000000;
  --body-font-weight: 400;
  --body-text-transform: none;
  --body-line-height: 1.2;
  --body-letter-spacing: 0em;
  --input_border_width: 1px;
  --input_border_bottom_width: 1px;
  --input_border_color: var(--color-light-grey);
  --input_background_color: var(--color-light-grey);
  --textarea_border_width: 1px;
  --textarea_border_bottom_width: 1px;
  --textarea_border_color: var(--color-light-grey);
  --textarea_background_color: var(--color-light-grey);
  --button_border_color: var(--color-lime-green);
  --button_background_color: var(--color-lime-green);
  --button_color: var(--color-black);
  --button_hover_border_color: var(--color-lime-green);
  --button_hover_background_color: var(--color-lime-green);
  --button_hover_color: var(--color-black);
  --input_text_color: var(--color-black);
  --input_placeholder_text_color: var(--color-dark-grey);
  --base-font-size:1.25rem;
  --breakpoint-lg:1900px;
  --scaling-multiplier-lg:1;
  --page-padding-lg:2.2em;
  --breakpoint-md:1080px;
  --scaling-multiplier-md:1.4;
  --page-padding-md:1.56em;
  --breakpoint-xs:640px;
  --scaling-multiplier-xs:3.5;
  --page-padding-xs:1.2em;
  --body-font-size-original:1.25rem;
  --body-font-size:1.0526315789474vw;
  --gutter-width:2.15em;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

:root {
  --outer-margin: 0em;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --md-min: 1080px;
  --lg-min: 1080px;
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

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

.container-fluid {
  padding-right: var(--outer-margin, 2rem);
  padding-left: var(--outer-margin, 2rem);
}

.row,
.alm-listing.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: var(--gutter-compensation, -0.5rem);
  margin-left: var(--gutter-compensation, -0.5rem);
}

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

.col {
  display: flex;
}

.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: var(--half-gutter-width, 0.5em);
  padding-left: var(--half-gutter-width, 0.5em);
}

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

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

.end-xs {
  justify-content: flex-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: 641px) {
  .container {
    width: var(--container-md, 61em);
  }
  .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: var(--half-gutter-width, 0.5em);
    padding-left: var(--half-gutter-width, 0.5em);
  }
  .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;
  }
  .center-md {
    justify-content: center;
  }
  .end-md {
    justify-content: flex-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: 1081px) {
  .container {
    width: var(--container-lg, 71em);
  }
  .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: var(--half-gutter-width, 0.5em);
    padding-left: var(--half-gutter-width, 0.5em);
  }
  .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;
  }
  .center-lg {
    justify-content: center;
  }
  .end-lg {
    justify-content: flex-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;
  }
}
@media (max-width: 639px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 640px) and (max-width: 1079px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1080px) {
  .hidden-lg {
    display: none !important;
  }
}
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.gform_required_legend {
  display: none !important;
}

.gform_ajax_spinner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.75em;
  height: 1.75em;
}

.gform_wrapper.gravity-theme .gform_body .gform_fields {
  grid-column-gap: var(--gutter-width);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_validation_errors {
  margin-top: 0;
  margin-bottom: 2em;
  border-width: 1px;
  padding: 1em 1em 1em 4em;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_validation_errors > h2 {
  position: static;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: var(--body-font-family);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_validation_errors > h2 .gform-icon {
  font-size: 1.8em;
  left: 1rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_validation_message,
.gform_wrapper.gravity-theme.gform-theme--no-framework .validation_message {
  border-width: 1px;
  padding: 0;
  margin-top: 0.5em;
  border: 0;
  background-color: transparent;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_validation_message.gfield_description,
.gform_wrapper.gravity-theme.gform-theme--no-framework .validation_message.gfield_description {
  font-size: 0.8em;
}
.gform_wrapper.gravity-theme .mandatory {
  font-size: 0.8em;
}
.gform_wrapper.gravity-theme .gfield input[type=color],
.gform_wrapper.gravity-theme .gfield input[type=date],
.gform_wrapper.gravity-theme .gfield input[type=datetime-local],
.gform_wrapper.gravity-theme .gfield input[type=datetime],
.gform_wrapper.gravity-theme .gfield input[type=email],
.gform_wrapper.gravity-theme .gfield input[type=month],
.gform_wrapper.gravity-theme .gfield input[type=number],
.gform_wrapper.gravity-theme .gfield input[type=password],
.gform_wrapper.gravity-theme .gfield input[type=search],
.gform_wrapper.gravity-theme .gfield input[type=tel],
.gform_wrapper.gravity-theme .gfield input[type=text],
.gform_wrapper.gravity-theme .gfield input[type=time],
.gform_wrapper.gravity-theme .gfield input[type=url],
.gform_wrapper.gravity-theme .gfield input[type=week],
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-left: var(--input_padding_left, 0.5em);
  padding-right: var(--input_padding_right, 0.5em);
}
.gform_wrapper.gravity-theme .gfield textarea {
  padding-left: var(--textarea_padding_left, 0.5em);
  padding-right: var(--textarea_padding_right, 0.5em);
}
.gform_wrapper.gravity-theme .gfield .description,
.gform_wrapper.gravity-theme .gfield .gfield_description,
.gform_wrapper.gravity-theme .gfield .gsection_description,
.gform_wrapper.gravity-theme .gfield .instruction {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.gform_wrapper.gravity-theme .gform-footer.gform_footer {
  margin: 0;
  padding-bottom: 0;
}
.gform_wrapper.gravity-theme .gform-footer.gform_footer button {
  margin: 0;
  white-space: nowrap;
}
.gform_wrapper.gravity-theme label.gfield_label {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

@media screen and (max-width: 640px) {
  .gform_wrapper.gravity-theme .gform_body .gform_fields {
    grid-column-gap: 0;
  }
}
* {
  position: relative;
  box-sizing: border-box;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

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

.wrapper--inner {
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  display: flex;
  flex-direction: column;
}

.wrapper--outer {
  overflow: hidden;
  padding-top: var(--header-height);
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
html,
body {
  background-color: var(--site-background-color);
}

html body {
  font-size: var(--base-font-size);
}
@media screen and (max-width: 1900px) {
  html body {
    font-size: calc(var(--body-font-size) * var(--scale));
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

.content a {
  text-decoration: underline;
}

.layout__pos {
  margin: 0 auto;
  padding: 0 var(--page-padding);
  max-width: var(--breakpoint-lg);
}

.layout[data-layout-width=fullscreen] .layout__pos {
  max-width: 100%;
}

.header__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--header-menu-background-color);
  z-index: 1;
  transition: background-color 0.5s ease 0s;
}

.fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fill-center {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cover {
  object-fit: cover;
  object-position: center center;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

.media {
  overflow: hidden;
  margin: 0;
}
.media.fill img,
.media.fill picture {
  height: 100%;
  object-position: inherit;
}
.media:hover .media__zoom-open {
  opacity: 1;
}

.media.media-desktop {
  display: block;
}

.media.media-mobile {
  display: none;
}

.media-poster {
  overflow: hidden;
  border-radius: 0.8em;
}

.micromodal-slide.is-open {
  z-index: 1000;
}

.gallery.swiper figure {
  margin: 0;
}
.gallery.swiper picture,
.gallery.swiper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (orientation: portrait) and (max-width: 640px) {
  .media.media-desktop {
    display: none;
  }
  .media.media-mobile {
    display: block;
  }
}
.media__fineprint {
  position: absolute;
  bottom: 1em;
  right: 1em;
  z-index: 3;
  color: var(--color-white);
  font-size: 0.8em;
  margin: 0;
  pointer-events: none;
  text-shadow: 0 0 3px var(--color-black);
}

.media__zoom-open,
.media__video-popup-open {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 0;
  text-indent: -9999px;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.media__zoom-open .svg-symbol,
.media__video-popup-open .svg-symbol {
  width: 2em;
  height: 2em;
  transform: none;
  top: 1em;
  right: 1em;
  left: auto;
}
.media__zoom-open svg *,
.media__video-popup-open svg * {
  fill: var(--color-white);
}
.media__zoom-open:hover, .media__zoom-open:focus,
.media__video-popup-open:hover,
.media__video-popup-open:focus {
  background-color: transparent;
}

.media__video-popup-open {
  opacity: 1;
}
.media__video-popup-open .svg-symbol {
  width: 8em;
  height: 8em;
  left: 50%;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

#video-modal .modal__container {
  padding: 0;
  max-width: 90vw;
  width: 100%;
  border-radius: 0em;
  background-color: transparent;
  height: 100%;
  height: 100%;
  max-height: 80vh;
  display: grid;
}
#video-modal .modal__inner {
  height: 100%;
}
#video-modal .modal__content {
  margin: 0;
  line-height: 0;
  background-color: var(--color-black);
  height: 100%;
  padding: 1em;
}
#video-modal .modal__content p {
  margin: 0;
}
#video-modal .responsive-video-wrapper {
  height: 100%;
  object-fit: contain;
  padding-bottom: 0 !important;
}
#video-modal #video-modal-iframe {
  height: 100%;
}

.modal__container {
  overflow: visible;
}

.modal__content {
  overflow: hidden;
}

.modal__close {
  position: absolute;
  top: 0.33em;
  right: 0.33em;
  transform: translate(50%, -50%);
  width: 3em;
  height: 3em;
  z-index: 2;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-indent: -999px;
  margin: 0;
  background-color: var(--color-black);
  border-radius: 0.8em;
}
.modal__close svg * {
  fill: var(--color-white);
}
.modal__close .svg-symbol {
  position: absolute;
  width: 45%;
  height: 45%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.responsive-video-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.responsive-video-wrapper iframe,
.responsive-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.zoom-dialog {
  position: fixed;
  top: 0;
  left: -100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: transparent;
  z-index: 101;
  overflow: hidden;
  padding: 5vw;
  transition: left 0s linear 1s, background-color 0.5s ease-in-out 0s;
}
.zoom-dialog[aria-hidden=false]:not(.loading) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: left 0s linear 0s, background-color 0.5s ease-in-out 0.5s;
}
.zoom-dialog[aria-hidden=false]:not(.loading) img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out 1s;
}
.zoom-dialog figure {
  margin: 0;
  height: 100%;
  max-width: 100%;
}
.zoom-dialog img {
  display: block;
  height: 100%;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0s;
}

.zoom-dialog__fineprint {
  margin: 0;
  z-index: 2;
  position: absolute;
  color: var(--color-white);
  bottom: 1em;
  right: 1em;
  font-size: 0.8em;
  text-shadow: 0 0 3px var(--color-black);
}

.zoom-dialog__close {
  position: absolute;
  top: 0.6em;
  right: 0.5em;
  width: 2em;
  height: 2em;
  z-index: 3;
  padding: 0;
  text-indent: -999px;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
}
.zoom-dialog__close .svg-symbol {
  width: 2em;
  height: 2em;
  transform: none;
  top: 0;
  right: 0;
  left: auto;
}
.zoom-dialog__close svg * {
  fill: var(--color-white);
}
.zoom-dialog__close:hover, .zoom-dialog__close:focus {
  background-color: transparent;
}

.video-container {
  overflow: hidden;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.video-container iframe[data-playing=true],
.video-container video[data-playing=true] {
  opacity: 1;
}

.media[data-video-display=hover] .video-container iframe[data-playing=true],
.media[data-video-display=hover] .video-container video[data-playing=true] {
  opacity: 0;
}

.media[data-video-display=hover]:hover .video-container iframe,
.media[data-video-display=hover]:hover .video-container video {
  opacity: 1;
}

.svg-symbols {
  height: 0;
  width: 0;
  position: absolute;
}

.svg-symbol svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.sectional__bg {
  background-color: var(--color-white, #fff);
}

.swiper__autoplay-progress {
  position: relative;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--color-white); /* Adjust to match your theme, e.g., var(--color-black) */
}

.swiper__autoplay-progress svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Start animation from the top */
  pointer-events: none;
}

.swiper__autoplay-progress__indicator {
  fill: none;
  stroke: currentColor; /* Inherits color from .swiper__autoplay-progress */
  stroke-width: 0.2em;
  stroke-dasharray: 125.6; /* Circumference: 2 * π * 20 */
  /* 
  The JS sets --progress from 1 (start) to 0 (end).
  Offset 0 = Full Circle. Offset 125.6 = Empty Circle.
  Formula: 125.6 * (1 - progress)
  */
  stroke-dashoffset: calc(125.6px * (1 - var(--progress, 1)));
}

.swiper__autoplay-progress__bg {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.2em;
  stroke-dasharray: 125.6;
  opacity: 0.5;
}

.swiper__autoplay-progress span {
  font-size: 0.9em;
  line-height: 1;
  display: block;
}

.page-loader {
  display: block;
  z-index: 10000;
  opacity: 0;
  background-color: var(--color-white);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out 0s, visibility 0s ease-in-out 0.5s;
}

html:not(.readystate-interactive) .page-loader,
body.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out 0s, visibility 0s ease-in-out 0s;
}

.page-loader__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.25em;
  background-color: var(--color-lime-green); /* Fallback to black if primary not set */
  width: 0%;
  transition: width 0.1s linear;
  z-index: 100;
  top: var(--wp-admin--admin-bar--height, 0px);
}

/*
//.fonts-loaded.lenis .page-loader {
.lenis .page-loader {
    opacity: 0;
    visibility: hidden;
}
*/
[data-js-scroll-distance="1"] {
  width: 0%;
}

#header-distance {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
}

.header-distance__amount {
  width: 0%;
  height: 100%;
  position: absolute;
  background-color: var(--color-red);
}

.sectional > .layout {
  margin: var(--page-spacing) 0;
}
.sectional > .layout[data-layout-spacing=narrow] {
  margin: var(--page-padding) 0;
}
.sectional > .layout[data-layout-spacing=large] {
  margin: var(--page-spacing-lg) 0;
}
.sectional > .layout[data-layout-spacing=xl] {
  margin: calc(var(--page-spacing) * 4) 0;
}
.sectional > .layout[data-layout-spacing=none] {
  margin: 0;
}
.sectional > .layout[data-layout-padding=none] > .layout__pos {
  padding: 0;
}

.btn_wrap {
  display: block;
}
.btn_wrap .link {
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.btn_wrap .link:hover, .btn_wrap .link:active, .btn_wrap .link:focus {
  text-decoration: none;
}
.btn_wrap.align_center {
  text-align: center;
}
.btn_wrap.align_right {
  text-align: right;
}
.btn_wrap.align_left {
  text-align: left;
}
.btn_wrap:first-child .link {
  margin-top: 0 !important;
}
.btn_wrap:last-child .link {
  margin-bottom: 0 !important;
}

.google-map__canvas {
  width: 100%;
  aspect-ratio: 3/1;
  background-color: var(--color-placeholder);
}

.google-map__controls fieldset {
  border: 0;
  padding: 0;
}
.google-map__controls ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.dialog-wrap {
  min-width: 200px;
}

.swiper__controls {
  pointer-events: none;
  z-index: 2;
}
.swiper__controls button {
  pointer-events: auto;
}

.swiper__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  display: flex;
  justify-content: center;
  gap: 0.5em;
  padding: 2em;
  pointer-events: none;
}

.swiper-pagination-bullet {
  pointer-events: auto;
  margin: 0 !important;
  width: 0.75em;
  height: 0.75em;
  background-color: var(--color-white);
}

.swiper-fill .swiper {
  width: 100%;
  height: 100%;
}
.swiper-fill:not([data-display-height=auto]) .swiper {
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-fill:not([data-display-height=auto]) .swiper figure {
  height: 100%;
}
.swiper-fill:not([data-display-height=auto]) .swiper img,
.swiper-fill:not([data-display-height=auto]) .swiper picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-fill[data-display-height=average] .swiper__placeholder {
  height: 0;
  padding-bottom: var(--swiper-desktop-avg-aspect-ratio);
}
.swiper-fill[data-display-height=viewport] .swiper__placeholder {
  height: 0;
  padding-bottom: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
}
.swiper-fill[data-display-height=viewport-header] .swiper__placeholder {
  height: 0;
  padding-bottom: calc(100dvh - var(--header-height) - var(--wp-admin--admin-bar--height, 0px));
}
@media (max-width: 1080px) {
  .swiper-fill[data-display-height=average] .swiper__placeholder {
    padding-bottom: var(--swiper-mobile-avg-aspect-ratio);
  }
}

.swiper__nav {
  position: absolute;
  top: 50%;
  left: 1.5em;
  padding: 0;
  border: 0;
  transform: translate(0, -50%) rotate(-90deg);
  z-index: 2;
  cursor: pointer;
  width: 2em;
  height: 2em;
  background-color: transparent;
  text-indent: -999px;
  overflow: hidden;
}
.swiper__nav svg * {
  fill: var(--color-white, #fff);
}
.swiper__nav.swiper__nav--prev {
  transform: translate(0, -50%) rotate(90deg);
}

.swiper__nav--prev {
  transform: translate(0, -50%) rotate(180deg);
}

.swiper__nav--next {
  left: auto;
  right: 1.5em;
}

/**
 * Barba.js CSS Transitions with @barba/css
 *
 * Add this to your main stylesheet.
 * These classes are added directly to the [data-barba="container"] element.
 */
/*
 * 1. Set a transition on the container.
 *    This will apply to both enter and leave transitions.
 */
[data-barba=container] {
  transition: opacity 0.3s ease-in-out;
}

/*
 * 2. Define the state for the container that is LEAVING.
 *    `barba-leave-from` is the initial state (fully visible).
 *    `barba-leave-to` is the final state (fully transparent).
 *    The transition happens during the `barba-leave-active` phase.
 */
.barba-leave-from {
  opacity: 1;
}

.barba-leave-to {
  opacity: 0;
}

/*
 * 3. Define the state for the container that is ENTERING.
 *    `barba-enter-from` is the initial state (fully transparent).
 *    `barba-enter-to` is the final state (fully visible).
 *    The transition happens during the `barba-enter-active` phase.
 */
.barba-enter-from {
  opacity: 0;
}

.barba-enter-to {
  opacity: 1;
}

/* Prevent content jump during fade transition */
.barba-leave-active {
  position: absolute;
  width: 100%;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation: bounce 1s;
}

.stats {
  padding: 0;
  margin: 0;
  list-style: none;
}

.accordion:first-child {
  margin-top: 0;
}
.accordion:last-child {
  margin-bottom: 0;
}

.accordion__title {
  margin: 0;
  font-size: 1em;
  cursor: pointer;
}

.accordion__content {
  overflow: hidden;
  transition: height 0.5s ease;
}
.accordion__content > div {
  padding: 0.5em 0 1em 0;
}

.dev-panel {
  position: fixed;
  top: 10vh;
  height: 80vh;
  width: 0;
  right: 0;
  z-index: 9999;
}

.dev-panel__wrap {
  width: 280px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #efefef;
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
  transform: translate(0%, 0%);
  transition: transform 0.5s ease 0s;
  padding: 40px 10px 10px 10px;
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-right: 0;
}
.dev-panel__wrap select,
.dev-panel__wrap input[type=number] {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
}
.dev-panel__wrap h6 {
  font-size: 1em;
  margin: 0 0 0.3em 0;
}
.dev-panel__wrap > div {
  display: grid;
  gap: 20px;
}

.dev-panel__toggle-open {
  display: block;
  position: absolute;
  right: 100%;
  bottom: 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  cursor: pointer;
  background-color: #efefef;
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-right: 0;
  width: 40px;
  height: 40px;
}
.dev-panel__toggle-open .svg-symbol {
  width: 24px;
  height: 17px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.dev-panel__toggle-close {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 10px;
  left: 250px;
  cursor: pointer;
  z-index: 2;
  transition: left 0.5s ease 0s;
}
.dev-panel__toggle-close:after {
  content: "✕";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  text-align: center;
}

#dev-panel-toggle:checked ~ .dev-panel__wrap {
  transform: translate(-100%, 0%);
}
#dev-panel-toggle:checked ~ .dev-panel__toggle-close {
  left: -30px;
}

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: inherit !important;
    min-height: auto !important;
  }
}
.embed-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-placeholder);
}
.embed-container > div {
  height: 0;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body {
  text-rendering: geometricPrecision;
  font-size: var(--base-font-size);
  font-family: var(--body-font-family);
  color: var(--body-color);
  font-weight: var(--body-font-weight);
  text-transform: var(--body-text-transform);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

body * a, body * abbr, body * acronym, body * b, body * bdi, body * bdo, body * br, body * button, body * cite, body * code, body * data, body * dfn, body * em, body * i, body * kbd, body * mark, body * q, body * rp, body * rt, body * ruby, body * s, body * samp, body * span, body * strong, body * sub, body * sup, body * time, body * tt, body * u, body * var, body * wbr {
  font-size: inherit;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child, ul:first-child, ol:first-child, blockquote:first-child, address:first-child, figure:first-child, .btn_wrap:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, address:last-child, figure:last-child, .btn_wrap:last-child {
  margin-bottom: 0;
}

h1 {
  margin-bottom: 0.833em;
}

h2 {
  margin-bottom: 0.5em;
}

p {
  margin: 0.65em 0;
}

hr {
  height: 1px;
  border: 0;
  background-color: var(--color-black);
  margin: 1.2em 0;
}
hr:first-child {
  margin-top: 0;
}
hr:last-child {
  margin-bottom: 0;
}

.table-default,
.content .table-default {
  border: 0;
}
.table-default td,
.content .table-default td {
  padding: 0.7em;
  border: 0;
  border-top: 0;
  border-bottom: 1px solid #ebebeb;
}
.table-default thead td,
.content .table-default thead td {
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-family: "Maison Neue Extended Demi";
}
.table-default tfoot td,
.content .table-default tfoot td {
  background-color: #dbdbdb;
  border-bottom: 0;
  font-weight: bold;
}

.table-banded-rows tbody tr:nth-child(even),
.content .table-banded-rows tbody tr:nth-child(even) {
  background-color: #f4f4f2;
}

.table-banded-columns tbody td:nth-child(odd),
.content .table-banded-columns tbody td:nth-child(odd) {
  background-color: #f4f4f2;
}

.fonts-loaded body {
  font-family: var(--body-font-family-loaded);
}

.my-custom-shortcode-placeholder {
  display: inline-block;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 5px 8px;
  margin: 2px 0;
  cursor: pointer;
  border-radius: 3px;
  font-family: monospace;
  font-size: 12px;
  color: #555;
  white-space: nowrap; /* Prevent line breaks within the placeholder */
}

.my-custom-shortcode-placeholder:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
}

.large-intro-text {
  font-size: 1.945em;
  font-weight: 400;
  margin: 0.8em 0;
  line-height: 1.14;
}

.medium-intro-text {
  font-size: 1.39em;
}

.medium-text {
  font-size: 1.1em;
}

.alert {
  padding: 15px;
  margin: 1em 0;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}
.alert.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert.info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert.warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert.danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

:root {
  --header-height: 5em;
  --header-menu-link-colour-hover: white;
  --header-menu-link-colour-current: white;
}
@media only screen and (max-width: 1080px) {
  :root {
    --header-height: 6em;
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --header-height: 6em;
  }
}

.header > .layout__pos {
  height: var(--header-height);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}
.header > .layout__pos {
  z-index: 1;
}

.header__columns {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: end;
  gap: 2em;
  position: static;
}

.header__column {
  height: 100%;
  display: flex;
  align-items: center;
}
.header__column > div {
  display: grid;
  align-content: center;
  grid-template-columns: auto auto;
  gap: 1.3em;
}

/*
.header__menu-toggle {
    position: absolute;
    top: 50%;
    right: var(--page-padding);
    transform: translate(0, -50%);
    overflow: hidden;
    text-indent: -999px;
    width: 2em;
    height: 2em;
    background-color: blue;
    padding: 0;
    border: 0;
    margin: 0;
    z-index: 2;
    cursor: pointer;
}
*/
.header__logo {
  display: block;
  width: 15.6em;
  height: 2.7em;
  text-indent: -999px;
  z-index: 2;
}

.header__navigation {
  display: inline-block;
  color: var(--header-menu-colour);
}
.header__navigation a {
  color: var(--header-menu-link-colour);
  text-decoration: none;
}
.header__navigation a:hover {
  color: var(--header-menu-link-colour-hover);
}
.header__navigation .current-menu-item > a {
  color: var(--header-menu-link-colour-current);
}
.header__navigation ul {
  list-style: none;
  padding: 0;
}
.header__navigation > ul {
  list-style: none;
  padding: 0;
  height: 100%;
  display: inline-flex;
  gap: 1em 5.5em;
  align-content: center;
  flex-wrap: wrap;
  position: static;
}
.header__navigation > ul > .menu-item-has-children > a {
  padding-right: 1.3em;
}
.header__navigation > ul > .menu-item-has-children > a > .header__tl-pointer {
  display: block;
}
.header__navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: transparent;
  padding: 2em var(--page-padding);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.header__navigation .sub-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.header__tl-pointer {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(90deg);
  overflow: hidden;
  text-indent: -999px;
  width: 0.8em;
  height: 0.8em;
  display: none;
}
.header__tl-pointer svg * {
  fill: var(--header-menu-pointer-colour);
}

/*** POSITIONING ***/
.header--over.hero--enabled .header__spacer {
  display: none;
}

.header--sticky-top .header,
.hero--enabled.header--sticky-below .header.header--pinned {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
}

.hero--enabled.header--sticky-below .header {
  position: absolute;
  top: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
}
.hero--enabled.header--sticky-below .header__spacer {
  display: block;
}

/*** FOR FULL WIDTH MENU PANELS ***/
.header__column {
  position: static;
}
.header__column > div {
  position: static;
}

.header__navigation {
  position: static;
}
.header__navigation > ul > li {
  position: static;
}
.header__navigation .sub-menu {
  left: 0;
  background-color: transparent;
  width: 100vw;
}

.header__search-container {
  position: static;
}

.header__search-toggle,
.header__search-link {
  display: inline-block;
  overflow: hidden;
  text-indent: -999px;
  width: 1em;
  height: 1em;
  background-color: transparent;
  cursor: pointer;
  border: 0;
  z-index: 2;
  padding: 0;
}
.header__search-toggle svg *,
.header__search-link svg * {
  fill: var(--header-search-fill);
}
.header__search-toggle:hover, .header__search-toggle:active, .header__search-toggle:focus,
.header__search-link:hover,
.header__search-link:active,
.header__search-link:focus {
  background-color: transparent;
}

.header__search-form {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: transparent;
  width: 100%;
  padding: 2em var(--page-padding);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.header__search-form.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

@media only screen and (max-width: 1080px) {
  /*
  .header__navigation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      background-color: var(--header-menu-panel-background-color);
      height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
      padding: var(--header-height) var(--page-padding) var(--page-padding) var(--page-padding);
      transform: translate(0, -100%);
      transition: transform 1s ease-in-out;

      >ul {
          display: grid;
          position: relative;
          height: 100%;
          overflow-x: auto;
          overflow-y: hidden;
      }
  }
  */
  .header__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--header-menu-background-color);
    z-index: 1;
  }
  .header__search-form {
    top: 0;
    height: calc(100dvh - var(--wp-admin--admin-bar--height, 0));
    padding-top: var(--header-height);
    padding-bottom: var(--page-padding);
    background-color: var(--header-menu-panel-background-color);
    transform: translate(0, -100%);
    transition: transform 1s ease-in-out;
    opacity: 1;
    visibility: visible;
  }
}
:root {
  --footer-padding: 5em;
}

.footer {
  margin-bottom: auto;
  background-color: var(--footer-background-color);
  padding: var(--footer-padding) 0;
  color: var(--footer-colour);
}

.social-nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;
}
.social-nav a {
  display: block;
  width: 1.46em;
  height: 1.46em;
  overflow: hidden;
  text-indent: -999px;
}
.social-nav svg * {
  fill: var(--color-white);
}

input::placeholder {
  color: var(--input_placeholder_text_color);
}

input::-webkit-input-placeholder {
  color: var(--input_placeholder_text_color);
}

input:-moz-placeholder {
  color: var(--input_placeholder_text_color);
}

input::-moz-placeholder {
  color: var(--input_placeholder_text_color);
}

input:-ms-input-placeholder {
  color: var(--input_placeholder_text_color);
}

textarea::placeholder {
  color: var(--input_placeholder_text_color);
}

textarea::-webkit-input-placeholder {
  color: var(--input_placeholder_text_color);
}

textarea:-moz-placeholder {
  color: var(--input_placeholder_text_color);
}

textarea::-moz-placeholder {
  color: var(--input_placeholder_text_color);
}

textarea:-ms-input-placeholder {
  color: var(--input_placeholder_text_color);
}

input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: var(--input_text_color);
  text-rendering: inherit;
  border-style: solid;
  background-color: var(--input_background_color);
  border-color: var(--input_border_color);
  border-width: var(--input_border_width) !important;
  border-bottom-width: var(--input_border_bottom_width) !important;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: var(--input_padding_left, 0.5em);
  padding-right: var(--input_padding_right, 0.5em);
}

select {
  color: var(--input_placeholder_text_color);
}

textarea {
  background-color: var(--textarea_background_color);
  border-color: var(--textarea_border_color);
  border-width: var(--textarea_border_width) !important;
  border-bottom-width: var(--textarea_border_bottom_width) !important;
  padding-left: var(--textarea_padding_left, 0.5em);
  padding-right: var(--textarea_padding_right, 0.5em);
}

form button {
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-rendering: inherit;
  border-style: solid;
  border-width: 1px;
  border-color: var(--button_border_color);
  background-color: var(--button_background_color);
  color: var(--button_color);
}
form button:hover {
  border-color: var(--button_hover_border_color);
  background-color: var(--button_hover_background_color);
  color: var(--button_hover_color);
}

label {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

.hero {
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
}
@supports (height: 100svh) {
  .hero {
    height: calc(100svh - var(--wp-admin--admin-bar--height, 0px));
  }
}
.hero {
  background-color: var(--hero-background-color, #efefef);
  overflow: hidden;
}

.header--over .hero {
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
}
@supports (height: 100svh) {
  .header--over .hero {
    height: calc(100svh - var(--wp-admin--admin-bar--height, 0px));
  }
}

.hero__bg[data-position=fixed] {
  position: fixed;
  top: auto;
}

:root {
  --scale: var(--scaling-multiplier-lg);
  --scale-inverse: calc(1 / var(--scale));
  --page-padding: var(--page-padding-lg);
  --page-spacing-base: 7.5em;
  --page-spacing: var(--page-spacing-base);
  --page-spacing-lg-base: 15em;
  --page-spacing-lg: var(--page-spacing-lg-base);
  --header-menu-link-colour-hover: var(--color-black);
  --header-menu-link-colour-current: var(--color-black);
  --gutter-width: 1.7em;
  --header-corporate-height: 2em;
}
@media only screen and (max-width: 1080px) {
  :root {
    --scale: var(--scaling-multiplier-md);
    --page-padding: var(--page-padding-md);
    --page-spacing: calc(var(--page-spacing-base) * var(--scale-inverse));
    --page-spacing-lg: calc(var(--page-spacing-lg-base) * var(--scale-inverse));
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --scale: var(--scaling-multiplier-xs);
    --page-padding: var(--page-padding-xs);
    --page-spacing: 4.3em;
    --page-spacing-lg: 6em;
    --header-height: 5em;
  }
}

/*=== Development ===*/
/*
html body {
    font-size: calc(var(--body-font-size) * var(--scale));
}
*/
body {
  background-image: var(--dev-preview-image, "");
  background-position: 0% calc(var(--dev-preview-top) + var(--wp-admin--admin-bar--height, 0px));
  background-size: var(--breakpoint-lg);
  background-repeat: no-repeat;
}
body div[data-barba=wrapper] {
  opacity: var(--dev-preview-opacity, 1);
}
@media only screen and (max-width: 1900px) {
  body {
    background-size: 100%;
  }
}
@media only screen and (max-width: 640px) {
  body {
    background-size: var(--breakpoint-xs);
  }
}

::selection {
  background: rgba(126, 249, 143, 0.2);
}

a {
  transition: color 0.5s ease 0s;
}

h1 a:hover, h1 a:focus, h1 a:active,
h2 a:hover,
h2 a:focus,
h2 a:active,
h3 a:hover,
h3 a:focus,
h3 a:active,
h4 a:hover,
h4 a:focus,
h4 a:active {
  color: inherit !important;
}

.content iframe[src*="vimeo.com"] {
  border-radius: 0.5em;
  overflow: hidden;
}

.single-news__content .content iframe[src*="vimeo.com"] {
  margin: 3em 0;
}

.btn_wrap .link {
  transition: background-color 1s ease 0s, border-color 1s ease 0s, color 1s ease 0s;
}

.btn_wrap.style-underline .link {
  border-width: 0 !important;
  border-bottom-width: 1px !important;
}

.btn-group {
  display: inline-flex;
  gap: 0.5em;
}
.btn-group .btn_wrap .link {
  margin: 0 !important;
}

.wrapper--cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: calc(100dvh - var(--wp-admin--admin-bar--height, 0px) + 3em);
  left: 0;
  background-color: var(--color-black);
  display: none;
}

.wrapper--inner {
  width: 100%;
  background-color: var(--color-white);
  /*
  position: sticky;
  bottom: 0;
  padding-top: 0;
  background-color: transparent;

  >.layout,
  >.sectional {
      z-index: 1;
  }


  >.sectional:last-child >.layout:last-child,
  >.layout:last-child {
      margin-bottom: 0;
      padding-bottom: var(--page-spacing);

      &[data-layout-spacing="none"] {
          padding-bottom: 0;
      }
  }
  */
}

/*
.hero--enabled {
    .wrapper--inner {
        padding-top: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
    }
}
*/
.wrapper--outer {
  padding-top: calc(var(--header-height) + var(--header-corporate-height));
  overflow: visible;
}
.wrapper--outer:before {
  content: "";
  display: block;
  width: calc(100vw + 20px);
  height: calc(100vh + 20px);
  position: fixed;
  top: -10px;
  left: -10px;
  z-index: 10;
  background: rgba(65, 64, 66, 0.3);
  background-blend-mode: lighten;
  backdrop-filter: blur(27.5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 0s, visibility 0s linear 0.5s;
  visibility: hidden;
}
.menu-open .wrapper--outer:before {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease 0s, visibility 0s linear 0s;
}

.layout[data-layout-width=fullscreen] {
  overflow: hidden;
}

.layout__media_poster .media-poster[media-height=viewport] {
  height: calc(100dvh - var(--header-height) - var(--header-corporate-height) - var(--wp-admin--admin-bar--height, 0px) - var(--page-padding) * 2);
  min-height: 320px;
}
.layout__media_poster .media-poster[media-height=viewport] .media {
  object-position: 50% 50%;
  object-fit: cover;
  height: 100%;
}
.layout__media_poster .media-poster[media-height=viewport] .media img {
  height: 100%;
}
.layout__media_poster[data-layout-width=fullscreen] .media-poster[media-height=viewport] {
  height: calc(100dvh - var(--header-height) - var(--header-corporate-height) - var(--wp-admin--admin-bar--height, 0px));
}

.gallery.swiper {
  margin: 1em 0;
}
.gallery.swiper:first-child {
  margin-top: 0;
}
.gallery.swiper:last-child {
  margin-top: 0;
}
.gallery.swiper .gallery-item {
  overflow: hidden;
  border-radius: 0.5em;
}
.gallery.swiper .swiper__pagination {
  display: none;
}
.gallery.swiper .swiper__controls {
  position: absolute;
  bottom: 1em;
  left: 0;
  width: 100%;
}
.gallery.swiper .swiper__nav {
  transform: rotate(0deg) translate(0%, -100%);
}
.gallery.swiper .swiper__nav.swiper__nav--prev {
  transform: rotate(180deg) translate(0%, 100%);
}

.layout__property-gallery {
  overflow: hidden;
}

.property-gallery {
  height: 0;
  padding-bottom: var(--aspect);
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.property-gallery picture,
.property-gallery img {
  position: relative !important;
  width: auto !important;
  height: 100% !important;
  overflow: hidden;
  border-radius: 0.5em;
}
.property-gallery .swiper {
  overflow: visible;
}
.property-gallery.property-gallery__multi .swiper-slide {
  width: auto !important;
}
.property-gallery .swiper__pagination {
  display: none;
}
.property-gallery .swiper__controls {
  max-width: 1900px;
  padding: 0 var(--page-padding);
  left: 50%;
  transform: translate(-50%, 0%);
}
.property-gallery .swiper__nav {
  left: 0;
  top: auto;
  bottom: calc(100% + 2em);
}
.property-gallery .swiper__nav--next {
  left: auto;
  right: 0;
}
[data-style-set=white] .property-gallery .swiper__nav {
  background-color: var(--color-light-grey);
}
[data-style-set=white] .property-gallery .swiper__nav:hover, [data-style-set=white] .property-gallery .swiper__nav:focus {
  background-color: var(--color-lime-green);
}
.page-ready .is-inview .property-gallery {
  opacity: 1;
}

.layout__property-gallery > .layout__pos {
  padding-top: 4.1em !important;
}

.agent-contact {
  padding-left: 1.7em;
}
.agent-contact .svg-symbol {
  left: 0;
  transform: translate(0, -50%);
  width: 0.9em;
  height: 0.9em;
}
.agent-contact svg * {
  fill: var(--color-black);
}

.agent-photo {
  overflow: hidden;
  border-radius: 0.5em;
  background-color: var(--color-light-grey);
  max-width: 50%;
}
.agent-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.read-reveal__content {
  height: 22em;
  overflow: hidden;
  transition: height 0.5s ease 0s;
}
.read-reveal__content:before {
  content: "";
  display: block;
  width: calc(100% + 12em);
  height: calc(100% + 4em);
  position: absolute;
  top: -4em;
  left: -6em;
  box-shadow: inset 0px -5em 4em rgb(255, 255, 255);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s ease 0s;
}

.read-reveal[aria-expanded=true] .read-reveal__content {
  height: var(--height);
}
.read-reveal[aria-expanded=true] .read-reveal__content:before {
  opacity: 0;
}
.read-reveal[aria-expanded=true] .read-reveal__content + .read-reveal__btn {
  display: none;
}

.read-reveal__btn {
  margin-top: 1em;
}
.read-reveal__btn .link {
  cursor: pointer;
}

.layout .embed-responsive {
  border-radius: 0.5em;
}

.gform_wrapper.gravity-theme .gchoice .svg-symbol {
  display: none;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields {
  grid-column-gap: 1em;
}
.gform_wrapper.gravity-theme .gform-footer.gform_footer {
  padding-top: 1.5em;
}
.gform_wrapper.gravity-theme .gform-footer.gform_footer button {
  cursor: pointer;
  margin: 0;
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s, color 0.5s ease 0s;
  font-family: "Suisse Intl Mono";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: 0.66em;
  padding: 0.6em 2.5em;
}
.gform_wrapper.gravity-theme .gfield-choice-input .svg-symbol {
  display: none;
}
.gform_wrapper.gravity-theme .gfield_checkbox label,
.gform_wrapper.gravity-theme .gfield_radio label {
  display: inline-block;
  font-size: 0.9em;
  margin-left: 0.7em;
}
.gform_wrapper.gravity-theme .mandatory {
  font-size: 0.6em;
}
.gform_wrapper.gravity-theme .gfield input[type=color],
.gform_wrapper.gravity-theme .gfield input[type=date],
.gform_wrapper.gravity-theme .gfield input[type=datetime-local],
.gform_wrapper.gravity-theme .gfield input[type=datetime],
.gform_wrapper.gravity-theme .gfield input[type=email],
.gform_wrapper.gravity-theme .gfield input[type=month],
.gform_wrapper.gravity-theme .gfield input[type=number],
.gform_wrapper.gravity-theme .gfield input[type=password],
.gform_wrapper.gravity-theme .gfield input[type=search],
.gform_wrapper.gravity-theme .gfield input[type=tel],
.gform_wrapper.gravity-theme .gfield input[type=text],
.gform_wrapper.gravity-theme .gfield input[type=time],
.gform_wrapper.gravity-theme .gfield input[type=url],
.gform_wrapper.gravity-theme .gfield input[type=week],
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
  font-family: inherit;
  font-size: 0.9em;
  padding: 0.4em 0.675em;
  border-radius: 0.556em;
}
.gform_wrapper.gravity-theme .gfield input[type=file] {
  border-radius: 0.5em;
  padding: 0.5em;
  background-color: var(--color-white);
  width: 100%;
  font-size: 0.9em;
  color: inherit;
  font-family: inherit;
}
.gform_wrapper.gravity-theme .gfield_label {
  font-size: inherit !important;
  font-weight: inherit !important;
}
.gform_wrapper.gravity-theme .gfield_description.gform_fileupload_rules {
  font-size: 0.75em;
  padding-top: 0;
}

.fileupload_label {
  display: none;
}

.gform_wrapper.gravity-theme .gfield input[type=file].medium {
  width: 100%;
}

::file-selector-button,
::-webkit-file-upload-button {
  border: 0;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s, color 0.5s ease 0s;
  font-family: "Suisse Intl Mono";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.833em;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: 0.66em;
  padding: 0.6em 2.5em;
  background-color: var(--color-lime-green);
  margin-right: 0.5em;
}

[data-style-set=light-grey] input[type=color],
[data-style-set=light-grey] input[type=date],
[data-style-set=light-grey] input[type=datetime-local],
[data-style-set=light-grey] input[type=datetime],
[data-style-set=light-grey] input[type=email],
[data-style-set=light-grey] input[type=month],
[data-style-set=light-grey] input[type=number],
[data-style-set=light-grey] input[type=password],
[data-style-set=light-grey] input[type=search],
[data-style-set=light-grey] input[type=tel],
[data-style-set=light-grey] input[type=text],
[data-style-set=light-grey] input[type=time],
[data-style-set=light-grey] input[type=url],
[data-style-set=light-grey] input[type=week],
[data-style-set=light-grey] select,
[data-style-set=light-grey] textarea {
  background-color: var(--color-white);
  border-color: var(--color-white);
  font-size: 0.9em;
  border-radius: 0.5em;
}

.header__cover {
  height: calc(100% + 1px);
}

.hero--enabled .wrapper--outer {
  padding-top: 0;
}
.hero--enabled .header:not(.header--down):not(.header--pinned) {
  color: var(--color-white);
  transform: translate(0, calc(-1 * var(--header-corporate-height)));
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__cover {
  background-color: transparent;
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__logo svg *,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-toggle svg *,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-link svg * {
  fill: var(--color-white);
  transition: fill 0.5s ease 0s;
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__primary > ul > li > a:hover > span[itemprop=name], .hero--enabled .header:not(.header--down):not(.header--pinned) .header__primary > ul > li > a:focus > span[itemprop=name],
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__secondary > ul > li > a:hover > span[itemprop=name],
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__secondary > ul > li > a:focus > span[itemprop=name] {
  background-color: var(--color-light-grey);
  color: var(--color-black);
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-toggle:hover,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-toggle:focus,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-link:hover,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-link:focus {
  background-color: var(--color-light-grey);
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-toggle:hover svg *,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-toggle:focus svg *,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-link:hover svg *,
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__search-link:focus svg * {
  fill: var(--color-black);
}
.hero--enabled .header:not(.header--down):not(.header--pinned) .header__menu-toggle.hamburger > div {
  background-color: var(--color-white);
}

.header {
  transform: translate(0, 0);
  transition: transform 0.5s ease-in-out 0s, box-shadow 0.5s ease-in-out 0s;
  will-change: transform;
}
.header .btn_wrap.style-default .link {
  margin: 0;
}
.header .btn_wrap {
  transition: opacity 0.5s ease-in-out;
}
.header > div > .layout__pos {
  height: var(--header-height);
}
.header > div {
  z-index: 1;
}
.header {
  /*
  &.header--pinned {
      transform: translate(0, -100%);

      &.header--up {
          transform: translate(0, 0);
      }
  }
  */
}

.header__container > .layout__pos {
  z-index: 3;
}

.layout__pos {
  max-width: 100% !important;
}

.header__logo {
  display: block;
  width: 5.8em;
  height: 1.8em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-indent: -999px;
  z-index: 3;
  overflow: hidden;
  margin-top: calc(var(--header-corporate-height) / 2);
  left: var(--page-padding);
}
.header__logo svg * {
  fill: var(--color-black);
}
.header__logo svg {
  position: absolute;
  top: 0;
  left: 0;
}

.header__corporate {
  background-color: var(--color-light-grey);
  height: var(--header-corporate-height);
  z-index: 1;
}
.header__corporate > .layout__pos {
  height: 100%;
}
.header__corporate nav {
  display: flex;
  justify-content: end;
  height: 100%;
}
.header__corporate ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.4em;
  align-content: center;
  height: 100%;
  flex-wrap: wrap;
}
.header__corporate a {
  transition: color 0.5s ease 0s;
}
.header__corporate a:hover, .header__corporate a:focus {
  text-decoration: none;
  color: var(--color-mid-grey);
}

.header__primary,
.header__secondary {
  height: 100%;
  align-content: center;
  position: static;
}
.header__primary > ul,
.header__secondary > ul {
  gap: 0;
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  height: 100%;
  position: static;
}
.header__primary > ul > li,
.header__secondary > ul > li {
  position: static;
}
.header__primary li a,
.header__secondary li a {
  transition: color 0.5s ease 0s;
  height: 100%;
  align-content: center;
  display: grid;
  padding: 0 0.15em;
}
.header__primary li a:hover, .header__primary li a:focus,
.header__secondary li a:hover,
.header__secondary li a:focus {
  text-decoration: none;
}
.header__primary > ul > li > a > span[itemprop=name],
.header__secondary > ul > li > a > span[itemprop=name] {
  border-radius: 0.5em;
  padding: 0.4em 1.05em;
  transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
}
.header__primary > ul > li > a:hover > span[itemprop=name],
.header__primary > ul > li > a:focus > span[itemprop=name],
.header__secondary > ul > li > a:hover > span[itemprop=name],
.header__secondary > ul > li > a:focus > span[itemprop=name] {
  background-color: var(--color-light-grey);
}
.header__primary > ul > li > .sub-menu,
.header__secondary > ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  width: calc(100vw - var(--page-padding) - var(--page-padding));
  left: -9999px;
  margin-top: var(--page-padding);
  border-radius: 0.5em;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0s, visibility 0s linear 0.5s;
  visibility: hidden;
  height: 27.35em;
  overflow: hidden;
  color: var(--color-black);
  z-index: 1;
  max-width: 1900px;
  transform: translate(-50%, 0%);
}
.header__primary > ul > li > .sub-menu[aria-hidden=false],
.header__secondary > ul > li > .sub-menu[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  left: 50%;
  visibility: visible;
  transition-delay: 0s;
}
.header__primary > ul > li > .sub-menu h4,
.header__secondary > ul > li > .sub-menu h4 {
  font-size: 1.4em;
}
.header__primary > ul > li > .sub-menu ul,
.header__secondary > ul > li > .sub-menu ul {
  padding: 0;
  list-style: none;
}
.header__primary > ul > li > .sub-menu a,
.header__secondary > ul > li > .sub-menu a {
  display: inline-block;
  padding-right: 1.2em;
  font-size: 0.9em;
}
.header__primary > ul > li > .sub-menu a:hover, .header__primary > ul > li > .sub-menu a:focus,
.header__secondary > ul > li > .sub-menu a:hover,
.header__secondary > ul > li > .sub-menu a:focus {
  color: var(--color-mid-grey);
}
.header__primary > ul > li > .sub-menu a:hover .navigation-pointer, .header__primary > ul > li > .sub-menu a:focus .navigation-pointer,
.header__secondary > ul > li > .sub-menu a:hover .navigation-pointer,
.header__secondary > ul > li > .sub-menu a:focus .navigation-pointer {
  right: -0.2em;
}
.header__primary > ul > li > .sub-menu a:hover .navigation-pointer svg *, .header__primary > ul > li > .sub-menu a:focus .navigation-pointer svg *,
.header__secondary > ul > li > .sub-menu a:hover .navigation-pointer svg *,
.header__secondary > ul > li > .sub-menu a:focus .navigation-pointer svg * {
  fill: var(--color-mid-grey);
}
.header__primary > ul > li > .sub-menu .navigation-pointer,
.header__secondary > ul > li > .sub-menu .navigation-pointer {
  display: block;
}
.header__primary .sub-menu .sub-menu,
.header__secondary .sub-menu .sub-menu {
  padding-left: 1em;
}
.header__primary .sub-menu .sub-menu > ul > li,
.header__secondary .sub-menu .sub-menu > ul > li {
  margin: 0.9em 0;
}
.header__primary .sub-menu__nav,
.header__secondary .sub-menu__nav {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.header__primary .sub-menu__nav > ul,
.header__secondary .sub-menu__nav > ul {
  column-count: 2;
  column-fill: auto;
  height: 19.8em;
  padding-right: var(--half-gutter-width) !important;
}
.header__primary .sub-menu__nav > ul > li,
.header__secondary .sub-menu__nav > ul > li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
  margin: 1.35em 0;
}
.header__primary .sub-menu__nav > ul > li:first-child,
.header__secondary .sub-menu__nav > ul > li:first-child {
  margin-top: 0;
}
.header__primary .sub-menu__nav > ul > li:last-child,
.header__secondary .sub-menu__nav > ul > li:last-child {
  margin-bottom: 0;
}
body.menu-open .header__primary .sub-menu__nav,
body.menu-open .header__secondary .sub-menu__nav {
  opacity: 1;
  transition-delay: 0.5s;
}
.header__primary .sub-menu__details,
.header__secondary .sub-menu__details {
  display: grid;
  grid-template-columns: 43% 57%;
  grid-template-rows: auto auto;
  padding-top: 2em;
  padding-bottom: 2em;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.header__primary .sub-menu__details > div:first-child,
.header__secondary .sub-menu__details > div:first-child {
  padding: 0 2em 0 2.3em;
}
.header__primary .sub-menu__details > div:last-child,
.header__secondary .sub-menu__details > div:last-child {
  grid-column: 2;
  grid-row: 1/span 2;
}
.header__primary .sub-menu__details > div:nth-child(2),
.header__secondary .sub-menu__details > div:nth-child(2) {
  display: grid;
  align-content: end;
  padding: 1.9em 2em 0 2.3em;
}
body.menu-open .header__primary .sub-menu__details,
body.menu-open .header__secondary .sub-menu__details {
  opacity: 1;
  transition-delay: 0.5s;
}
.header__primary .sub-menu__nav,
.header__secondary .sub-menu__nav {
  padding-top: 2em;
  padding-bottom: 2em;
}
.header__primary .sub-menu__search:before,
.header__secondary .sub-menu__search:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-light-grey);
  position: absolute;
  top: 0;
  max-width: 100%;
  left: 0;
  opacity: 0;
  transform: translate(100%, 0%);
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0.5s;
}
body.menu-open .header__primary .sub-menu__search:before,
body.menu-open .header__secondary .sub-menu__search:before {
  opacity: 1;
  transform: translate(0, 0%);
  transition-delay: 0.25s;
}
.header__primary .sub-menu__media,
.header__secondary .sub-menu__media {
  background: var(--color-placeholder);
  border-radius: 0.5em;
  overflow: hidden;
  aspect-ratio: 0.9;
  max-height: 23.5em;
}
.header__primary .sub-menu__media .media,
.header__secondary .sub-menu__media .media {
  opacity: 1 !important;
}
.header__primary .sub-menu__media:before,
.header__secondary .sub-menu__media:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}
.header__primary .sub-menu__media .video-container iframe,
.header__primary .sub-menu__media .video-container video,
.header__secondary .sub-menu__media .video-container iframe,
.header__secondary .sub-menu__media .video-container video {
  opacity: 1;
}

.header__primary {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}

.header__secondary {
  position: static;
  display: flex;
  align-items: center;
  float: right;
}
.header__secondary > ul {
  margin-right: 0.15em;
}
.header__secondary > ul > li > .sub-menu {
  left: auto;
  right: -9999px;
}
.header__secondary > ul > li > .sub-menu[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  right: auto;
  left: 50%;
}

.header__search-toggle,
.header__search-link {
  width: 1.8em;
  height: 1.8em;
  border-radius: 0.5em;
  transition: background-color 0.5s ease 0s;
}
.header__search-toggle .svg-symbol,
.header__search-link .svg-symbol {
  width: 1em;
  height: 1em;
}
.header__search-toggle:hover, .header__search-toggle:focus,
.header__search-link:hover,
.header__search-link:focus {
  background-color: var(--color-light-grey);
}

.header__menu-toggle {
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  width: 0.9em;
  height: 0.9em;
  display: block;
  position: absolute;
  top: calc(100% + var(--page-padding) + 0.8em);
  overflow: hidden;
  text-indent: -999px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s, visibility 0s linear 0.5s;
  visibility: hidden;
  right: -99999px;
  top: 0;
  position: absolute;
  transform: translate(-100%, -100%);
}
body.menu-open .header__menu-toggle {
  pointer-events: auto;
  opacity: 1;
  right: var(--half-gutter-width);
  visibility: visible;
}

.header__menu-quick-search {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
  position: absolute;
  top: calc(100% + var(--page-padding));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s, visibility 0s linear 0.5s;
  visibility: hidden;
  height: 27.35em;
  overflow: hidden;
  color: var(--color-black);
  z-index: 1;
  width: calc(100vw - var(--page-padding) * 2 + var(--gutter-width));
  max-width: calc(1900px + var(--gutter-width));
  left: -99999px;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.header__menu-quick-search > div {
  height: 100%;
}
.header__menu-quick-search p {
  font-size: 0.9em;
  margin-top: 4em;
  margin-bottom: 2.4em;
}
.header__menu-quick-search h4 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.header__menu-quick-search .quick-search {
  height: auto;
  position: static;
}
.header__menu-quick-search .quick-search button[type=submit] {
  position: absolute;
  bottom: 0;
  width: calc(100% - 0.3em - var(--half-gutter-width) * 3);
}
.header__menu-quick-search .faux-select-wrapper {
  margin-bottom: 0.7em;
}
body.menu-open .header__menu-quick-search {
  opacity: 1;
  left: calc(50% + var(--half-gutter-width));
  visibility: visible;
}
body.menu-open .header__menu-quick-search .header__menu-quick-search-form {
  pointer-events: auto;
}

.header__menu-quick-search-form {
  padding: 0 var(--half-gutter-width) 0 0;
  position: static;
  margin-top: 2em;
  pointer-events: none;
}

.header__menu-bg {
  position: absolute;
  top: 0;
  left: -99999px;
  width: calc(100vw - var(--page-padding) * 2);
  max-width: 1900px;
  height: 100dvh;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 0);
}
body.menu-open .header__menu-bg {
  pointer-events: auto;
  left: 50%;
  visibility: visible;
}
.header__menu-bg > div {
  position: absolute;
  width: 100%;
  height: 15em;
  background-color: var(--color-white);
  left: 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
  transition: opacity 0.5s ease 0s, top 0.5s ease 0s, transform 0.5s ease 0s;
  pointer-events: none;
  height: 27.35em;
  border-radius: 0.5em;
  overflow: hidden;
  top: 0;
}
.menu-open .header__menu-bg > div {
  transform: translate(-50%, 0%);
  opacity: 1;
  top: calc(var(--header-height) + var(--header-corporate-height) + var(--page-padding));
}

.faux-select__trigger {
  font-size: 0.9em;
  border-radius: 0.5em;
  padding: 0.4em 0;
  transition: background-color 0.5s ease 0s;
  border: 0;
  background-color: var(--color-white);
  color: var(--color-black);
  width: 100%;
  display: block;
  white-space: nowrap;
}
.faux-select__trigger[aria-expanded=true] + .faux-select__options {
  display: grid;
}
.faux-select__trigger[aria-expanded=true] div {
  transform: translate(0, -50%) rotate(90deg);
}
.faux-select__trigger:hover, .faux-select__trigger:focus {
  background-color: var(--color-white);
}
.faux-select__trigger:disabled {
  background-color: var(--color-white);
  cursor: not-allowed;
}
.faux-select__trigger > span {
  padding-right: 1.3em;
}
.faux-select__trigger div {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.9em;
  height: 0.9em;
  transform: translate(0, -50%);
}
.faux-select__trigger div svg * {
  fill: var(--color-black);
}

.faux-select__options {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  width: 100%;
  z-index: 1;
  display: none;
  cursor: pointer;
  gap: 0.5em;
  text-align: left;
  margin-top: 0.7em;
  margin-bottom: 1.2em !important;
}

.faux-select__option > span {
  font-size: 0.9em;
  border-radius: 0.5em;
  padding: calc(0.4em - 0.5px) 1.05em;
  transition: background-color 0.5s ease 0s;
  background-color: transparent;
  color: var(--color-dark-grey);
  border: 1px solid var(--color-dark-grey);
  display: inline-block;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, color 0.3s ease 0s;
}
.faux-select__option > span:hover, .faux-select__option > span:focus {
  border-color: var(--color-black);
  color: var(--color-black);
}
.faux-select__option div {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.7em;
  height: 0.7em;
  transform: translate(0, -50%);
  display: none;
}
.faux-select__option div svg * {
  fill: var(--color-black);
}
.faux-select__option.is-selected div {
  display: block;
}
.faux-select__option.is-selected > span {
  border-color: var(--color-black);
  color: var(--color-black);
}
.faux-select__option.is-selected > span > span {
  padding-right: 1.2em;
}

.quick-search button[type=submit] {
  font-size: 0.9em;
  border-radius: 0.5em;
  padding: 0.4em 1.05em;
  transition: background-color 0.5s ease 0s, opacity 0.5s ease 0s;
  border: 0;
  background-color: var(--color-lime-green);
  color: var(--color-black);
  width: 100%;
  display: block;
  font-family: "Suisse Intl Mono";
}
.quick-search button[type=submit]:disabled {
  background-color: var(--color-dark-grey);
  color: var(--color-white);
  cursor: not-allowed;
}
.quick-search button[type=submit]:disabled svg * {
  fill: var(--color-white);
}
.quick-search button[type=submit] > span {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding-right: 1.5em;
}
.quick-search button[type=submit] div {
  position: absolute;
  top: calc(50% - 0.033em);
  right: 0;
  width: 0.9em;
  height: 0.9em;
  transform: translate(0, -50%);
}
.quick-search button[type=submit] div svg * {
  fill: var(--color-black);
}

.footer {
  /*
  position: absolute;
  bottom: 0;
  z-index: 110;
  width: 100vw;
  */
  padding-top: calc(7.6em * var(--scale-inverse));
}
.footer a {
  color: var(--color-mid-grey) !important;
}
.footer a:hover, .footer a:focus {
  color: var(--color-lime-green) !important;
}
.footer h4 {
  font-size: 1.4em;
}
.footer h6 {
  font-size: 1em;
  margin: 1.2em 0 0.8em 0;
}
.footer p {
  margin: 0.8em 0;
}
.footer p:first-child,
.footer h6:first-child {
  margin-top: 0;
}
.footer p:last-child,
.footer h6:last-child {
  margin-bottom: 0;
}
.footer .content {
  color: var(--color-mid-grey);
}

.footer__social {
  display: flex;
  gap: 0.6em;
  flex-wrap: wrap;
}
.footer__social a {
  display: block;
  width: 1.2em;
  height: 1.2em;
}
.footer__social a svg * {
  fill: var(--color-white);
  transition: fill 0.5s ease 0s;
}
.footer__social a .svg-symbol {
  transition: top 0.5s ease 0s;
}
.footer__social a:hover .svg-symbol, .footer__social a:focus .svg-symbol {
  top: 30%;
}
.footer__social a:hover svg *, .footer__social a:focus svg * {
  fill: var(--color-lime-green);
}

.footer__logo {
  height: 0;
  padding-bottom: 12.3vw;
  margin: calc(9em * var(--scale-inverse)) 0 calc(7.2em * var(--scale-inverse)) 0;
}

.footer__corporate {
  margin-right: 3em;
  color: var(--color-mid-grey);
}
.footer__corporate > ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
}
.footer__corporate li {
  line-height: 0.9;
}
.footer__corporate li::before {
  content: "|";
  margin-right: 0.5em;
  color: var(--color-mid-grey);
  font-size: 0.8em;
}
.footer__corporate li:first-child::before {
  content: "";
  margin: 0;
}
.footer__corporate [itemprop=name] {
  font-size: 0.8em;
}

.footer__copyright,
.footer__acknowledgement {
  margin: 0 !important;
  color: var(--color-mid-grey);
  font-size: 0.8em;
}

.footer__navigation > ul {
  list-style: none;
  column-count: 2;
  padding: 0;
  display: inline-block;
}
.footer__navigation > ul > li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
  margin: 1.35em 0;
}
.footer__navigation > ul > li:first-child {
  margin-top: 0;
}
.footer__navigation > ul > li:last-child {
  margin-bottom: 0;
}
.footer__navigation > ul ul {
  list-style: none;
  padding-left: 1em;
}
.footer__navigation > ul ul li {
  margin: 0.9em 0;
}
.footer__navigation > ul > li.menu-item-has-children ul a {
  display: inline-block;
  padding-right: 1.2em;
}
.footer__navigation > ul > li.menu-item-has-children ul .navigation-pointer {
  display: block;
}
.footer__navigation > ul > li.menu-item-has-children ul .navigation-pointer svg * {
  fill: var(--color-mid-grey);
}

.footer__navigation > ul > li.menu-item-has-children ul a:hover .navigation-pointer, .footer__navigation > ul > li.menu-item-has-children ul a:focus .navigation-pointer {
  right: -0.2em;
}
.footer__navigation > ul > li.menu-item-has-children ul a:hover .navigation-pointer svg *, .footer__navigation > ul > li.menu-item-has-children ul a:focus .navigation-pointer svg * {
  fill: var(--color-lime-green);
}

.navigation-pointer {
  display: block;
  position: absolute;
  top: 0.25em;
  right: 0;
  width: 0.7em;
  height: 0.7em;
  display: none;
  transition: right 0.5s ease 0s;
}
.navigation-pointer svg * {
  fill: var(--color-black);
  transition: fill 0.5s ease 0s;
}

.hero__bg,
.hero__bg-wrap {
  height: 100%;
  width: 100%;
}
.hero__bg .media,
.hero__bg-wrap .media {
  opacity: 1 !important;
}

.hero__bg-wrap {
  transform: scale(1.1);
  transition: transform 2s ease 0s;
}
.page-ready .hero__bg-wrap {
  transform: scale(1);
}

.hero__content {
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  color: var(--color-white);
  position: absolute;
  z-index: 2;
}

.hero__logo {
  width: 36.8em;
  height: 4.7em;
  top: -2em;
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.page-ready .hero__logo {
  top: 0em;
  opacity: 1;
}

.hero__intro {
  margin-top: 4em;
  width: 36.8em;
  top: -2em;
  opacity: 0;
  transition: top 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
}
.page-ready .hero__intro {
  top: 0em;
  opacity: 1;
}
.hero__intro p {
  font-size: 1.39em;
}

.hero__tags,
.page__tags,
.card__tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
}
.hero__tags li,
.page__tags li,
.card__tags li {
  font-family: "Suisse Intl Mono";
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border: 1px solid var(--color-white);
  border-radius: 0.6666em;
  padding: 1em 1.55em 0.9em 1.55em;
  white-space: nowrap;
}

.page__tags li {
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.hero__tags li {
  opacity: 0;
  left: -1em;
  transition: left 0.5s ease var(--delay), opacity 0.5s ease var(--delay);
}
.page-ready .hero__tags li {
  left: 0;
  opacity: 1;
}

.page__tags li,
.card__tags li {
  opacity: 0;
  left: -1em;
  transition: left 0.5s ease var(--delay), opacity 0.5s ease var(--delay);
}
.page-ready .is-inview .page__tags li,
.page-ready .is-inview .card__tags li {
  left: 0;
  opacity: 1;
}
.page-ready .is-inview article[data-scroll-call=staggeredItemInView] .page__tags li,
.page-ready .is-inview article[data-scroll-call=staggeredItemInView] .card__tags li {
  opacity: 0;
  left: -1em;
}
.page-ready .is-inview article[data-scroll-call=staggeredItemInView].is-inview .page__tags li,
.page-ready .is-inview article[data-scroll-call=staggeredItemInView].is-inview .card__tags li {
  left: 0;
  opacity: 1;
}

[data-style-set=black] .hero__tags li,
[data-style-set=black] .page__tags li,
[data-style-set=black] .card__tags li {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.card__tags {
  margin: 0;
  padding: 1em;
  color: var(--color-white);
  pointer-events: none;
}

.hero[data-type="1"] .hero__bg::after,
.hero[data-type="3"] .hero__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(80, 81, 87, 0.62) 0%, rgba(80, 81, 87, 0.62) 100%);
  mix-blend-mode: multiply;
}

.hero[data-type="1"] .hero__bg:before,
.hero[data-type="2"] .hero__bg:before,
.hero[data-type="3"] .hero__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  opacity: var(--hero-overlay-opacity, 0);
  z-index: 1;
}

.hero[data-type="1"] .hero__bg-wrap {
  filter: grayscale(1);
}

.hero[data-type="3"] .layout__pos {
  max-width: 100%;
}
.hero[data-type="3"] .hero__anim {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 2;
}
.hero[data-type="3"] .hero__logo {
  left: calc(50% + 0.12em);
  transform: translate(-100%, 0%);
  width: 19.5em;
  height: 4.9em;
  top: 0 !important;
  opacity: 1 !important;
}
.hero[data-type="3"] .hero__tagline,
.hero[data-type="3"] .hero__taglines {
  position: absolute;
  top: 50%;
  left: calc(50% + 2.875em);
  color: var(--color-white);
  transform: translate(0, -50%);
  line-height: 1;
  z-index: 2;
}
.hero[data-type="3"] .hero__tagline > div,
.hero[data-type="3"] .hero__taglines > div {
  display: block;
  font-size: 3.15em;
  padding: 0.175em 0;
}
.hero[data-type="3"] .hero__taglines > div {
  opacity: 0.3;
  top: 0;
  transition: top 0s ease-in-out, opacity 0.5s ease-in-out;
}
.hero[data-type="3"] .hero__taglines > div:nth-child(-n+9), .hero[data-type="3"] .hero__taglines > div:nth-last-child(-n+7) {
  opacity: 0;
}
.hero[data-type="3"] .hero__taglines > div:nth-child(10), .hero[data-type="3"] .hero__taglines > div:nth-last-child(8) {
  opacity: 0.1;
}
.hero[data-type="3"] .hero__taglines > div:nth-child(11), .hero[data-type="3"] .hero__taglines > div:nth-last-child(9) {
  opacity: 0.2;
}
.hero[data-type="3"] .hero__taglines span {
  opacity: 0;
}
.hero[data-type="3"] .hero__taglines .active {
  opacity: 1;
}
.hero[data-type="3"] .hero__taglines.moving > div {
  top: var(--tagline-height);
  transition: top 1s ease-in-out, opacity 0.5s ease-in-out;
}
.hero[data-type="3"] .hero__taglines.moving > div.active {
  opacity: 0.3 !important;
  transition: top 1s ease-in-out, opacity 0.5s ease-in-out;
}
.hero[data-type="3"] .hero__taglines.moving > div:nth-child(-n+8), .hero[data-type="3"] .hero__taglines.moving > div:nth-last-child(-n+8) {
  opacity: 0 !important;
}
.hero[data-type="3"] .hero__taglines.moving > div:nth-child(9), .hero[data-type="3"] .hero__taglines.moving > div:nth-last-child(9) {
  opacity: 0.1 !important;
}
.hero[data-type="3"] .hero__taglines.moving > div:nth-child(10), .hero[data-type="3"] .hero__taglines.moving > div:nth-last-child(10) {
  opacity: 0.2 !important;
}

.hero__progress-label {
  font-size: 1.1em;
  margin-bottom: 1em;
}

.hero__progress-value > span {
  font-size: 3.34em;
}

.hero__progress-chart {
  position: absolute;
  left: 8.5em;
  width: 2.7em;
  height: 2.7em;
  top: 50%;
  transform: translate(0, -50%);
}
.hero__progress-chart svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.hero__progress-chart__bg {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.3em;
  stroke-dasharray: 125.6;
  opacity: 0.5;
}

.hero__progress-chart__indicator {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.3em;
  stroke-dasharray: 125.6;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress, 1)));
}

.hero[data-type="2"] .hero__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(80, 81, 87, 0.62) 0%, rgba(80, 81, 87, 0.62) 100%);
  mix-blend-mode: multiply;
}
.hero[data-type="2"] .hero__content h1 {
  font-size: 3.34em;
  margin-top: 0.55em;
}
.hero[data-type="2"] .hero__content > .layout__pos {
  display: grid;
  align-items: end;
  height: 100%;
  padding-bottom: 5.6em;
}
.hero[data-type="2"] .hero__content > .layout__pos > div:last-child {
  align-items: end;
}
.hero[data-type="2"] .content {
  top: -2em;
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.page-ready .hero[data-type="2"] .content {
  top: 0em;
  opacity: 1;
}

.hero__quick-search {
  position: absolute;
  bottom: 0;
  margin-bottom: calc(3em + var(--page-padding));
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 0.5em;
  background: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  backdrop-filter: blur(27.5px);
  padding: 0.75em;
  z-index: 3;
  height: 3.9em;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.page-ready .hero__quick-search {
  opacity: 1;
}
.hero__quick-search form {
  display: flex;
  gap: 0.5em;
}
.hero__quick-search .quick-search {
  height: 100%;
}
.hero__quick-search .quick-search button[type=submit] {
  padding: 0 1.6em;
  height: 100%;
  display: grid;
  align-content: center;
  background-color: var(--color-lime-green);
  border-radius: 0.5556em;
}
.hero__quick-search .quick-search button[type=submit] > span {
  margin-top: 0.15em;
  padding-right: 1.8em;
}
.hero__quick-search .quick-search button[type=submit] div {
  width: 1.11em;
  height: 1.11em;
  top: calc(50% - 0.1em);
}
.hero__quick-search .quick-search button[type=submit]:disabled {
  background-color: var(--color-light-grey);
  color: var(--color-black);
}
.hero__quick-search .quick-search button[type=submit]:disabled svg * {
  fill: var(--color-black);
}
.hero__quick-search .faux-select-wrapper {
  position: static;
}
.hero__quick-search .faux-select {
  height: 100%;
  position: static;
}
.hero__quick-search .faux-select__option > span {
  border: 1px solid var(--color-white);
}
.hero__quick-search .faux-select__trigger {
  font-size: 1.11em;
  padding: 0 1.35em;
  height: 100%;
  display: grid;
  align-content: center;
  background-color: var(--color-dark-grey);
  color: var(--color-white);
  transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
  border-radius: 0.4505em;
  width: 15em;
}
.hero__quick-search .faux-select__trigger div {
  transform: translate(0, -50%) rotate(90deg);
  top: calc(50% - 0.025em);
}
.hero__quick-search .faux-select__trigger div svg * {
  fill: var(--color-white);
  transition: fill 0.5s ease 0s;
}
.hero__quick-search .faux-select__trigger > span {
  padding-right: 1.3em;
}
.hero__quick-search .faux-select__trigger + .faux-select__options {
  left: 50%;
  transform: translate(-50%, 0);
  width: auto;
}
.hero__quick-search .faux-select__trigger[aria-expanded=true] div {
  transform: translate(0, -50%) rotate(270deg);
}
.hero__quick-search .faux-select__trigger[aria-expanded=true] + .faux-select__options {
  display: inline-flex;
}
.hero__quick-search .faux-select__trigger[aria-expanded=true], .hero__quick-search .faux-select__trigger:hover {
  background-color: var(--color-light-grey);
  color: var(--color-black);
}
.hero__quick-search .faux-select__trigger[aria-expanded=true] div svg *, .hero__quick-search .faux-select__trigger:hover div svg * {
  fill: var(--color-black);
}
.hero__quick-search .faux-select__trigger:disabled {
  background-color: var(--color-dark-grey);
  color: var(--color-white);
}
.hero__quick-search .faux-select__trigger:disabled div svg * {
  fill: var(--color-white);
}
.hero__quick-search .faux-select__options {
  margin: 0 !important;
  top: calc(100% + 1.5em);
  position: absolute;
}
.hero__quick-search .faux-select__option {
  text-align: right;
  white-space: nowrap;
}
.hero__quick-search .faux-select__option > span {
  background-color: var(--color-light-grey);
  color: var(--color-black);
  border-color: var(--color-light-grey);
  font-size: 1.11em;
  border-radius: 0.4505em;
}
.hero__quick-search .faux-select__option div svg * {
  fill: var(--color-light-grey);
}
.hero__quick-search .faux-select__option.is-selected > span {
  background-color: transparent;
  color: var(--color-light-grey);
  border-color: var(--color-light-grey);
}

.layout__archives--projects-1,
.layout__archives--properties-1,
.layout__archives--news-1,
.layout__archives--team-1 {
  margin-top: 0 !important;
}
.layout__archives--projects-1 .alm-listing.row,
.layout__archives--properties-1 .alm-listing.row,
.layout__archives--news-1 .alm-listing.row,
.layout__archives--team-1 .alm-listing.row {
  gap: 5em 0;
}

.layout__archives--team-1 {
  margin-top: 0 !important;
}
.layout__archives--team-1 .alm-listing.row {
  gap: 2.5em 0;
}

.layout__archives--projects-1 #archive-list-view,
.layout__archives--projects-1 #archive-map-view,
.layout__archives--properties-1 #archive-list-view,
.layout__archives--properties-1 #archive-map-view {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  z-index: 1;
  border-radius: 0;
  pointer-events: none;
}
.layout__archives--projects-1 #archive-list-view.active,
.layout__archives--projects-1 #archive-map-view.active,
.layout__archives--properties-1 #archive-list-view.active,
.layout__archives--properties-1 #archive-map-view.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.layout__search .results.row {
  gap: 5em 0;
}

.property-slideshow {
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: 0.5em;
  background-color: var(--color-placeholder);
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  max-height: calc(100dvh - var(--header-height) - var(--header-corporate-height) - var(--page-padding) * 2 - var(--wp-admin--admin-bar--height, 0px));
  min-height: 320px;
  width: 100%;
}
.property-slideshow .swiper__nav {
  bottom: 1em;
}
.page-ready .is-inview .property-slideshow {
  opacity: 1;
}

.project-listing__image a,
.property-listing__image a {
  display: block;
  aspect-ratio: 0.8625;
  overflow: hidden;
  border-radius: 0.5em;
}
.project-listing__image a:before,
.property-listing__image a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  opacity: 0.1;
}
.project-listing__image a:hover .project-listing__more,
.project-listing__image a:hover .property-listing__more, .project-listing__image a:focus .project-listing__more,
.project-listing__image a:focus .property-listing__more,
.property-listing__image a:hover .project-listing__more,
.property-listing__image a:hover .property-listing__more,
.property-listing__image a:focus .project-listing__more,
.property-listing__image a:focus .property-listing__more {
  background-color: var(--color-lime-green);
}

.project-listing__status,
.property-listing__status {
  font-family: "Suisse Intl Mono";
  font-size: 0.65em;
  text-transform: uppercase;
  top: -0.1em;
  letter-spacing: -0.01em;
  border: 1px solid var(--color-white);
  border-radius: 0.6666em;
  padding: 1em 1.55em 0.9em 1.55em;
  color: var(--color-white);
  position: absolute;
  top: 1.33em;
  z-index: 1;
  opacity: 0;
  left: 0em;
  transition: left 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}

.project-listing.is-inview .project-listing__status,
.project-listing.is-inview .property-listing__status,
.property-listing.is-inview .project-listing__status,
.property-listing.is-inview .property-listing__status {
  left: 1.33em;
  opacity: 1;
}

.project-listing__info h4,
.property-listing__info h4 {
  font-size: 1.39em;
  margin-bottom: 0em;
}
.project-listing__info p:first-child,
.property-listing__info p:first-child {
  margin: 0;
  color: var(--color-black);
}
.project-listing__info p:first-child + h4,
.property-listing__info p:first-child + h4 {
  margin-top: 1em;
}
.project-listing__info p:last-child,
.property-listing__info p:last-child {
  color: #676668;
  margin-top: 0.875em;
}

.project-listing__info {
  padding-top: 1.85em;
}

.project-listing__details,
.property-listing__details {
  display: flex;
  justify-content: space-between;
  padding: 2em 0 1.7em 0;
  font-family: "Suisse Intl Mono";
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.project-listing__details .svg-symbol,
.property-listing__details .svg-symbol {
  width: 0.95em;
  height: 0.95em;
  left: auto;
  right: calc(100% + 0.25em);
  top: calc(50% - 0.05em);
}
.project-listing__details svg *,
.property-listing__details svg * {
  fill: var(--color-black);
}

.project-listing__more,
.property-listing__more {
  display: block;
  position: absolute;
  bottom: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  border-radius: 0.5em;
  background-color: var(--color-white);
  transition: background-color 0.5s ease 0s;
  overflow: hidden;
  z-index: 1;
  text-indent: -999px;
}
.project-listing__more .svg-symbol,
.property-listing__more .svg-symbol {
  width: 1em;
  height: 1em;
}
.project-listing__more svg *,
.property-listing__more svg * {
  fill: var(--color-black);
}

.project-listing__features,
.property-listing__features {
  display: flex;
  gap: 0.5em;
}
.project-listing__features > div,
.property-listing__features > div {
  padding-left: 1.8em;
}
.project-listing__features .svg-symbol,
.property-listing__features .svg-symbol {
  width: 1.4em;
  height: 1.4em;
  right: auto;
  left: 0;
  transform: translate(0, -50%);
}

.single-property aside h3 {
  margin-bottom: 0.375em;
  margin-top: 0.875em;
}
.single-property aside h3:first-child {
  margin-top: 0;
}
.single-property aside p {
  font-size: 1.1em;
}
.single-property aside .btn_wrap.style-default .link {
  margin: 0.5em 0 0 0;
}
.single-property.hero--enabled .back-bar {
  top: 1.5em;
}

.filter-wrap {
  display: flex;
  justify-content: center;
  width: calc(100% + var(--page-padding) * 2);
  background-color: var(--color-white);
  padding: 0.5em var(--page-padding);
  margin: 0;
  height: 3.5663em;
  position: sticky;
  top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px) + var(--header-corporate-height));
  z-index: 10;
  margin-left: calc(-1 * var(--page-padding));
  transition: opacity 0.5s ease 0s;
}
.filter-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--color-white);
  left: 50%;
  transform: translate(-50%, 0%);
}
.filter-wrap .svg-symbol {
  z-index: 1;
  width: 1.1em;
  height: 1.1em;
  left: 0.8em;
  transform: translate(0%, -50%);
}
.menu-open .filter-wrap {
  opacity: 0;
  pointer-events: none;
}

.map-toggle {
  position: absolute;
  right: var(--page-padding);
  top: 50%;
  transform: translate(0, -50%);
  padding-left: 1.2em;
  padding-right: 2.5em;
}
.map-toggle .label {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9em;
}
.map-toggle .svg-symbol {
  left: 0;
  width: 0.8em;
  height: 0.8em;
}
.map-toggle svg * {
  fill: var(--color-dark-grey);
}
.map-toggle input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  left: -99999px;
}
.map-toggle input[type=checkbox]:checked + .toggle-switch {
  background-color: var(--color-dark-grey);
}
.map-toggle input[type=checkbox]:checked + .toggle-switch:before {
  left: calc(100% - 1em + 2px);
  background-color: var(--color-lime-green);
}
.map-toggle .toggle-switch {
  width: 1.9em;
  height: 1.1em;
  display: block;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--color-dark-grey);
  border-radius: 10em;
  padding: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s;
}
.map-toggle .toggle-switch:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0%, -50%);
  width: calc(1em - 4px);
  height: calc(1em - 4px);
  background-color: var(--color-dark-grey);
  border-radius: 10em;
  transition: left 0.5s ease 0s, background-color 0.5s ease 0s;
}

#archive-map-view,
.map_wrap {
  border-radius: 0.5em;
  overflow: hidden;
}

#archive-map-view {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 0;
  height: 100dvh;
  background-color: var(--color-white);
}
#archive-map-view #properties-map {
  margin-top: calc(var(--header-height) + var(--header-corporate-height) + 3.5663em + var(--wp-admin--admin-bar--height, 0px));
  height: 100% !important;
}

.filter-wrap .alm-filter {
  position: static;
}
.filter-wrap .alm-filter li div.alm-filter--link {
  font-size: 0.9em !important;
  border-radius: 0.5em;
  padding: 0.4em 1.05em !important;
  transition: background-color 0.5s ease 0s, color 0.5s ease 0s, border-color 0.5s ease 0s;
  background-color: var(--color-light-grey);
  min-height: 0 !important;
  color: var(--color-black) !important;
  border: 1px solid transparent;
}
.filter-wrap .alm-filter li div.alm-filter--link.active {
  color: var(--color-black) !important;
}
.filter-wrap .alm-filter[data-fieldtype=text] .alm-filter--inner:before {
  display: none;
}
.filter-wrap .alm-filters-container {
  margin-bottom: 0;
  display: inline-flex;
  padding: 0.4em 0.4em 0.4em 2.5em;
  background-color: var(--color-light-grey);
  border-radius: 0.5em;
  gap: 0.5em;
}
.filter-wrap .alm-filters-container .alm-filter--title {
  height: 100%;
  width: 11em;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5em;
  padding: 0 1em;
}
.filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle {
  margin: 0;
  padding: 0 3.4em 0 0;
  font-size: 0.9em;
  font-weight: normal;
  white-space: nowrap;
  height: 100%;
  display: grid;
  align-content: center;
}
.filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle:before {
  content: var(--count);
  position: absolute;
  right: 1.8em;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
  min-width: 1.4em;
  height: 1.4em;
  background-color: var(--color-dark-grey);
  border-radius: 1em;
  text-align: center;
  display: grid;
  align-content: center;
  line-height: 1;
  font-size: 0.9em;
  color: var(--color-white);
}
.filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolygon points='8.71 1.13 7.62 2.22 12.69 7.29 .64 7.29 .64 8.83 12.69 8.83 7.62 13.9 8.71 14.99 15.64 8.06 8.71 1.13' fill='414042'/%3E%3C/svg%3E");
  border: 0 !important;
  width: 0.9em;
  height: 0.9em;
  top: 50% !important;
  transform: translate(0, -50%) rotate(90deg);
}
.filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle[aria-expanded=true]:after {
  top: 50% !important;
  transform: translate(0, -50%) rotate(270deg);
}
.filter-wrap .alm-filters-container .alm-filters--controls {
  margin: 0;
  gap: 0.25em;
  width: auto;
}
.filter-wrap .alm-filters-container .alm-filter--inner {
  display: block;
  position: absolute;
  padding: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
.filter-wrap .alm-filters-container .alm-filter--inner > ul {
  display: inline-flex;
  white-space: nowrap;
  padding-top: 0.9em;
  gap: 0 0.5em;
}
.filter-wrap .alm-filters-container .alm-filter--inner li {
  margin: 0;
}
.filter-wrap .alm-filters-container .alm-filter--inner:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, 0%);
  background-color: var(--color-white);
  height: 100%;
  top: 0.5em;
  pointer-events: none;
}
.filter-wrap .alm-filters-container .field-checkbox:before {
  display: none !important;
}
.filter-wrap .alm-filters-container .field-checkbox:after {
  width: 0.8em !important;
  height: 0.8em !important;
  position: absolute !important;
  top: 50% !important;
  right: 1.05em;
  left: auto !important;
  background-color: transparent !important;
  background-size: contain;
  background-position: 50% 50%;
  opacity: 0 !important;
  border: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolygon points='15.5 1.83 14.17 .5 8 6.67 1.83 .5 .5 1.83 6.67 8 .5 14.17 1.83 15.5 8 9.33 14.17 15.5 15.5 14.17 9.33 8 15.5 1.83' style='fill: %23000;'/%3E%3C/svg%3E");
  -webkit-transform: rotate(0deg) translate(0, -50%) !important;
  -ms-transform: rotate(0deg) translate(0, -50%) !important;
  transform: rotate(0deg) translate(0, -50%) !important;
}
.filter-wrap .alm-filters-container .field-checkbox[aria-checked=true] {
  padding-right: 2.35em !important;
}
.filter-wrap .alm-filters-container .field-checkbox[aria-checked=true]:after {
  opacity: 1 !important;
}
.filter-wrap .alm-filters-container .alm-filters--reset {
  height: 100%;
}
.filter-wrap .alm-filters-container .alm-filter--search {
  width: 20em;
}
.filter-wrap .alm-filters-container .alm-filter--search .alm-filter--inner,
.filter-wrap .alm-filters-container .alm-filter--search .alm-filter--text {
  position: relative;
  height: 100%;
}
.filter-wrap .alm-filters-container .alm-filter--search .alm-filter--text-wrap {
  border: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5em;
  padding: 0 1em;
}
.filter-wrap .alm-filters-container .alm-filter--search .alm-filter--textfield {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  font-size: 0.9em;
  font-family: inherit;
}
.filter-wrap .alm-filters-container .alm-filter--search button {
  display: none !important;
}
.filter-wrap .alm-filters-container .alm-filter--text-wrap ::-webkit-input-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}
.filter-wrap .alm-filters-container .alm-filter--text-wrap ::-moz-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}
.filter-wrap .alm-filters-container .alm-filter--text-wrap :-ms-input-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}
.filter-wrap .alm-filters-container .alm-filter--text-wrap :-moz-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}
.filter-wrap .alm-filters-container .alm-filter--text-wrap.has-focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}
.filter-wrap .alm-filters-container button[type=button] {
  font-family: "Suisse Intl Mono";
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border: 1px solid var(--color-dark-grey);
  border-radius: 0.6666em;
  padding: 0.7em 1.4em 0.7em 3.1em;
  background-color: var(--color-dark-grey);
  line-height: 1;
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s, color 0.5s ease 0s;
}
.filter-wrap .alm-filters-container button[type=button] > span {
  font-size: 0.9em;
}
.filter-wrap .alm-filters-container button[type=button]:before, .filter-wrap .alm-filters-container button[type=button]:after {
  content: "";
  display: block;
  width: 1.05em;
  height: 1.05em;
  position: absolute;
  top: 50%;
  left: 1.35em;
  transform: translate(0%, -50%);
  opacity: 1;
  transition: opacity 0.5s ease 0s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M13.31,12.54l-2.8-2.83c.81-.98,1.31-2.23,1.31-3.61C11.81,3.02,9.32.5,6.25.5S.69,3.02.69,6.11s2.49,5.61,5.56,5.61c1.22,0,2.35-.41,3.27-1.08l2.83,2.86.95-.96ZM2.04,6.11C2.04,3.76,3.93,1.85,6.25,1.85s4.22,1.91,4.22,4.26-1.89,4.26-4.22,4.26-4.22-1.91-4.22-4.26Z' style='fill: %23fff;'/%3E%3C/svg%3E");
}
.filter-wrap .alm-filters-container button[type=button]:after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M13.31,12.54l-2.8-2.83c.81-.98,1.31-2.23,1.31-3.61C11.81,3.02,9.32.5,6.25.5S.69,3.02.69,6.11s2.49,5.61,5.56,5.61c1.22,0,2.35-.41,3.27-1.08l2.83,2.86.95-.96ZM2.04,6.11C2.04,3.76,3.93,1.85,6.25,1.85s4.22,1.91,4.22,4.26-1.89,4.26-4.22,4.26-4.22-1.91-4.22-4.26Z' style='fill: %23000;'/%3E%3C/svg%3E");
}
.filter-wrap .alm-filters-container button[type=button]:focus, .filter-wrap .alm-filters-container button[type=button]:hover, .filter-wrap .alm-filters-container button[type=button]:active {
  border: 1px solid var(--color-lime-green);
  background-color: var(--color-lime-green);
  color: var(--color-black);
  box-shadow: none;
  filter: none;
}
.filter-wrap .alm-filters-container button[type=button]:focus:before, .filter-wrap .alm-filters-container button[type=button]:hover:before, .filter-wrap .alm-filters-container button[type=button]:active:before {
  opacity: 0;
}
.filter-wrap .alm-filters-container button[type=button]:focus:after, .filter-wrap .alm-filters-container button[type=button]:hover:after, .filter-wrap .alm-filters-container button[type=button]:active:after {
  opacity: 1;
}
.filter-wrap .alm-filters-container button[type=reset] {
  font-family: "Suisse Intl Mono";
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 0.6666em;
  background-color: transparent;
  line-height: 1;
  height: 100%;
  width: 2.347em;
  display: block !important;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  transition: background-color 0.5s ease 0s;
}
.filter-wrap .alm-filters-container button[type=reset]:before, .filter-wrap .alm-filters-container button[type=reset]:after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  opacity: 1;
  transition: opacity 0.5s ease 0s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15.5,8.47l-1.62-.06c-.06,1.48-.69,2.84-1.77,3.87-.17.16-.35.29-.53.42-.14.11-.28.22-.43.32-.19.12-.39.21-.59.3-.14.07-.28.15-.43.2-.22.08-.44.14-.67.19-.14.04-.28.08-.42.11-.22.04-.43.05-.65.06-.16.01-.33.03-.49.03-.33,0-.66-.03-.98-.09-.03,0-.06-.01-.1-.02-.33-.07-.66-.16-.98-.28-.04-.02-.08-.03-.12-.05-.31-.12-.6-.28-.89-.45-.05-.03-.1-.06-.14-.09-.27-.18-.53-.39-.78-.62-.06-.06-.12-.11-.18-.17-.04-.04-.08-.09-.12-.13-.09-.1-.17-.19-.26-.3-.03-.04-.06-.08-.09-.12-.08-.11-.17-.22-.24-.34-.02-.04-.04-.07-.07-.11-.08-.12-.15-.25-.21-.37-.02-.04-.04-.08-.06-.12-.06-.13-.12-.25-.17-.38-.02-.05-.04-.1-.06-.15-.04-.12-.08-.24-.12-.36-.02-.07-.04-.14-.05-.21-.03-.11-.05-.21-.07-.32-.02-.09-.03-.18-.04-.26-.01-.1-.03-.19-.03-.29,0-.1-.01-.19-.01-.29,0-.1,0-.19,0-.29,0-.1,0-.19.01-.29,0-.1.01-.19.03-.28.01-.09.03-.18.04-.27.02-.1.03-.19.05-.29.02-.09.04-.18.07-.26.03-.09.05-.18.08-.27.03-.09.06-.18.1-.26.03-.09.07-.17.11-.26.04-.09.08-.17.13-.26.04-.08.08-.16.13-.24.05-.09.1-.17.15-.25.05-.07.1-.15.15-.22.06-.08.12-.16.18-.24.06-.07.11-.14.18-.21.06-.07.13-.14.2-.21.06-.06.11-.12.17-.17.16-.16.35-.28.52-.42.14-.11.28-.23.43-.32.19-.12.39-.2.58-.3.14-.07.28-.15.43-.2.22-.08.44-.13.66-.19.14-.04.28-.08.43-.11.21-.04.43-.04.64-.06.17-.01.34-.03.51-.03,1.26.02,2.51.45,3.55,1.26h-2.23v1.58h4.93V.5h-1.62v2.02c-1.3-1.03-2.86-1.56-4.45-1.62h0c-.07-.01-.14,0-.21,0-.07,0-.14,0-.2,0-.18,0-.36,0-.54.03-.05,0-.1.01-.15.02-.19.02-.39.05-.58.08-.04,0-.08.02-.11.02-.2.04-.4.09-.59.14-.04.01-.08.02-.12.04-.19.06-.38.12-.56.19-.05.02-.1.04-.16.07-.17.07-.33.14-.49.22-.07.04-.14.08-.22.12-.14.07-.27.15-.4.23-.09.05-.17.11-.26.17-.11.08-.22.16-.33.24-.09.07-.18.15-.27.22-.06.05-.13.1-.2.16-.04.03-.07.07-.11.11-.03.03-.07.06-.1.09-.05.05-.09.1-.14.15-.09.1-.18.19-.27.29-.07.08-.14.16-.2.25-.08.11-.17.21-.25.32-.06.09-.12.17-.18.26-.07.11-.14.22-.21.34-.05.09-.1.19-.15.29-.06.11-.12.23-.17.35-.05.1-.09.21-.13.31-.04.11-.09.23-.13.34-.04.11-.07.23-.1.34-.03.11-.06.23-.09.34-.03.12-.05.24-.07.37-.02.11-.04.23-.05.34-.02.12-.02.25-.03.38,0,.07-.02.14-.02.22,0,.05,0,.09,0,.14,0,.05,0,.09,0,.14,0,.07,0,.15.01.22,0,.12,0,.25.02.37,0,.12.02.23.04.34.02.12.03.25.06.37.02.11.05.23.07.34.03.12.06.23.09.35.03.12.07.23.11.34.04.11.08.22.12.32.05.12.1.23.15.35.05.1.09.2.14.29.06.12.13.23.2.35.05.09.11.18.17.27.07.11.15.23.24.34.06.08.12.17.19.25.09.11.17.21.27.31.05.05.09.1.13.15.03.03.06.06.1.09.04.04.07.08.1.11.05.05.11.1.17.15.1.09.19.17.29.26.09.07.18.14.27.21.11.08.22.16.33.24.08.06.17.11.26.16.13.08.25.15.39.22.08.04.16.08.24.12.14.07.29.13.43.19.08.03.15.06.23.09.15.06.31.11.46.16.08.02.15.04.23.06.16.04.31.08.47.11.08.02.17.03.25.05.15.03.3.05.46.06.09,0,.18.02.28.02.09,0,.18.02.27.02.1,0,.19,0,.29,0h0c1.22,0,2.4-.29,3.46-.83.05-.02.09-.05.14-.08.16-.09.32-.17.47-.27.07-.05.14-.1.22-.15.12-.08.25-.17.37-.26.08-.06.16-.13.24-.19.07-.06.14-.11.21-.17.04-.03.07-.07.11-.11.03-.03.07-.06.1-.09h0c1.34-1.31,2.13-3.03,2.2-4.89ZM12.74,3.73h-.15l.15-.15v.15Z' fill='%23414042'/%3E%3C/svg%3E");
}
.filter-wrap .alm-filters-container button[type=reset]:after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15.5,8.47l-1.62-.06c-.06,1.48-.69,2.84-1.77,3.87-.17.16-.35.29-.53.42-.14.11-.28.22-.43.32-.19.12-.39.21-.59.3-.14.07-.28.15-.43.2-.22.08-.44.14-.67.19-.14.04-.28.08-.42.11-.22.04-.43.05-.65.06-.16.01-.33.03-.49.03-.33,0-.66-.03-.98-.09-.03,0-.06-.01-.1-.02-.33-.07-.66-.16-.98-.28-.04-.02-.08-.03-.12-.05-.31-.12-.6-.28-.89-.45-.05-.03-.1-.06-.14-.09-.27-.18-.53-.39-.78-.62-.06-.06-.12-.11-.18-.17-.04-.04-.08-.09-.12-.13-.09-.1-.17-.19-.26-.3-.03-.04-.06-.08-.09-.12-.08-.11-.17-.22-.24-.34-.02-.04-.04-.07-.07-.11-.08-.12-.15-.25-.21-.37-.02-.04-.04-.08-.06-.12-.06-.13-.12-.25-.17-.38-.02-.05-.04-.1-.06-.15-.04-.12-.08-.24-.12-.36-.02-.07-.04-.14-.05-.21-.03-.11-.05-.21-.07-.32-.02-.09-.03-.18-.04-.26-.01-.1-.03-.19-.03-.29,0-.1-.01-.19-.01-.29,0-.1,0-.19,0-.29,0-.1,0-.19.01-.29,0-.1.01-.19.03-.28.01-.09.03-.18.04-.27.02-.1.03-.19.05-.29.02-.09.04-.18.07-.26.03-.09.05-.18.08-.27.03-.09.06-.18.1-.26.03-.09.07-.17.11-.26.04-.09.08-.17.13-.26.04-.08.08-.16.13-.24.05-.09.1-.17.15-.25.05-.07.1-.15.15-.22.06-.08.12-.16.18-.24.06-.07.11-.14.18-.21.06-.07.13-.14.2-.21.06-.06.11-.12.17-.17.16-.16.35-.28.52-.42.14-.11.28-.23.43-.32.19-.12.39-.2.58-.3.14-.07.28-.15.43-.2.22-.08.44-.13.66-.19.14-.04.28-.08.43-.11.21-.04.43-.04.64-.06.17-.01.34-.03.51-.03,1.26.02,2.51.45,3.55,1.26h-2.23v1.58h4.93V.5h-1.62v2.02c-1.3-1.03-2.86-1.56-4.45-1.62h0c-.07-.01-.14,0-.21,0-.07,0-.14,0-.2,0-.18,0-.36,0-.54.03-.05,0-.1.01-.15.02-.19.02-.39.05-.58.08-.04,0-.08.02-.11.02-.2.04-.4.09-.59.14-.04.01-.08.02-.12.04-.19.06-.38.12-.56.19-.05.02-.1.04-.16.07-.17.07-.33.14-.49.22-.07.04-.14.08-.22.12-.14.07-.27.15-.4.23-.09.05-.17.11-.26.17-.11.08-.22.16-.33.24-.09.07-.18.15-.27.22-.06.05-.13.1-.2.16-.04.03-.07.07-.11.11-.03.03-.07.06-.1.09-.05.05-.09.1-.14.15-.09.1-.18.19-.27.29-.07.08-.14.16-.2.25-.08.11-.17.21-.25.32-.06.09-.12.17-.18.26-.07.11-.14.22-.21.34-.05.09-.1.19-.15.29-.06.11-.12.23-.17.35-.05.1-.09.21-.13.31-.04.11-.09.23-.13.34-.04.11-.07.23-.1.34-.03.11-.06.23-.09.34-.03.12-.05.24-.07.37-.02.11-.04.23-.05.34-.02.12-.02.25-.03.38,0,.07-.02.14-.02.22,0,.05,0,.09,0,.14,0,.05,0,.09,0,.14,0,.07,0,.15.01.22,0,.12,0,.25.02.37,0,.12.02.23.04.34.02.12.03.25.06.37.02.11.05.23.07.34.03.12.06.23.09.35.03.12.07.23.11.34.04.11.08.22.12.32.05.12.1.23.15.35.05.1.09.2.14.29.06.12.13.23.2.35.05.09.11.18.17.27.07.11.15.23.24.34.06.08.12.17.19.25.09.11.17.21.27.31.05.05.09.1.13.15.03.03.06.06.1.09.04.04.07.08.1.11.05.05.11.1.17.15.1.09.19.17.29.26.09.07.18.14.27.21.11.08.22.16.33.24.08.06.17.11.26.16.13.08.25.15.39.22.08.04.16.08.24.12.14.07.29.13.43.19.08.03.15.06.23.09.15.06.31.11.46.16.08.02.15.04.23.06.16.04.31.08.47.11.08.02.17.03.25.05.15.03.3.05.46.06.09,0,.18.02.28.02.09,0,.18.02.27.02.1,0,.19,0,.29,0h0c1.22,0,2.4-.29,3.46-.83.05-.02.09-.05.14-.08.16-.09.32-.17.47-.27.07-.05.14-.1.22-.15.12-.08.25-.17.37-.26.08-.06.16-.13.24-.19.07-.06.14-.11.21-.17.04-.03.07-.07.11-.11.03-.03.07-.06.1-.09h0c1.34-1.31,2.13-3.03,2.2-4.89ZM12.74,3.73h-.15l.15-.15v.15Z' fill='%237ef98f'/%3E%3C/svg%3E");
}
.filter-wrap .alm-filters-container button[type=reset]:hover, .filter-wrap .alm-filters-container button[type=reset]:focus {
  background-color: var(--color-dark-grey);
}
.filter-wrap .alm-filters-container button[type=reset]:hover:before, .filter-wrap .alm-filters-container button[type=reset]:focus:before {
  opacity: 0;
}
.filter-wrap .alm-filters-container button[type=reset]:hover:after, .filter-wrap .alm-filters-container button[type=reset]:focus:after {
  opacity: 1;
}
.filter-wrap .alm-filters-container button[type=reset].animate-spin:before, .filter-wrap .alm-filters-container button[type=reset].animate-spin:after {
  animation: spin-reset-btn 1s ease-in-out;
}
.filter-wrap .alm-filters-container.filtering {
  opacity: 1;
}
.filter-wrap .alm-filters:after {
  display: none;
}
.filter-wrap + #archive-list-view,
.filter-wrap + .archive__content {
  padding-top: 7em;
}
.filter-wrap .filter-toggle {
  border: 0;
  width: 2.56em;
  height: 2.56em;
  padding: 0;
  border-radius: 0.5em;
  cursor: pointer;
  background-color: var(--color-light-grey);
  pointer-events: none;
  position: absolute;
  height: 100%;
}

.alm-no-results {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  display: block;
  width: 100%;
  padding: 15px;
  margin: 1em 0;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}

.page-loader__header {
  top: var(--wp-admin--admin-bar--height, 0px);
}
.page-loader__header > .layout__pos {
  /*
  >div:first-child {
      height: var(--header-corporate-height);
  }
  */
}
.page-loader__header > .layout__pos > div:first-child {
  height: var(--header-height);
}

.page-loader__logo {
  width: 5.8em;
  height: 1.8em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-indent: -999px;
  z-index: 3;
  overflow: hidden;
  left: -2em;
  opacity: 0;
  transition: left 0.5s ease-in-out 0.5s, opacity 0.5s ease-in-out 0.5s;
}

html:not(.page-ready) .page-loader__logo {
  left: 0;
  opacity: 1;
  transition: left 0.5s ease-in-out 0s, opacity 0.5s ease-in-out 0s;
}

.page-loader__percentage {
  position: absolute;
  right: 0;
  color: var(--color-black);
  font-size: 2.2em;
  top: 50%;
  transform: translate(0, -50%);
  right: -2em;
  opacity: 0;
  transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

html:not(.page-ready) .page-loader__percentage {
  right: 0;
  opacity: 1;
}

.properties-map-infowindow {
  background-color: #fff;
  border-radius: 0.5em;
  overflow: hidden;
}

.properties-map-infowindow__details {
  padding: 10px;
}

.properties-map-infowindow__content {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.slideshow__2 {
  height: 54vw;
  max-height: calc(100dvh - var(--header-height) - var(--header-corporate-height));
  min-height: 480px;
}
.slideshow__2 .media {
  opacity: 1 !important;
}
.slideshow__2 .slideshow__visuals {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.slideshow__2 .slideshow__visuals:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.32);
  background-blend-mode: multiply;
  z-index: 2;
}
.slideshow__2 .swiper-fill {
  height: 100%;
}
.slideshow__2 .tagline {
  color: var(--color-white);
  position: absolute;
  top: 1.6em;
  left: var(--page-padding);
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.page-ready .is-inview .slideshow__2 .tagline {
  top: 3.6em;
  opacity: 1;
}
.slideshow__2 .tagline span {
  opacity: 0;
}
.slideshow__2 .tagline > div {
  font-size: 3.35em;
}
.slideshow__2 .slideshow__caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.slideshow__2 .slideshow__caption .layout__pos,
.slideshow__2 .slideshow__caption .row {
  height: 100%;
}
.slideshow__2 .slideshow__caption .row {
  align-content: end;
}
.slideshow__2 .slideshow__caption .content {
  padding-bottom: 4.5em;
}
.slideshow__2 .slideshow__caption .content h3 {
  margin-bottom: 0.5em;
}
.slideshow__2 .slideshow__caption .content p {
  font-size: 1.1em;
}
.page-ready .is-inview .slideshow__2 .slideshow__caption .content {
  transition-delay: 1s;
}
.slideshow__2 .slide-left .slide-1 {
  width: 200%;
}
.slideshow__2 .slide-right {
  transform: rotate(180deg);
}
.slideshow__2 .slide-right .slide-1 {
  width: 200%;
  transform: translate(-50%, 0%);
}
.slideshow__2 .slide-right .slide-1 figure {
  transform: rotate(180deg) translate(-50%, 0);
}
.slideshow__2 .slide-right .slide-2 figure {
  transform: rotate(180deg);
}
.slideshow__2 .swiper__controls > div {
  position: absolute;
  left: 50%;
  color: var(--color-white);
  width: 50%;
  text-align: center;
  bottom: 5.2em;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: bottom 0.5s ease 1s, opacity 0.5s ease 1s;
}
.page-ready .is-inview .slideshow__2 .swiper__controls > div {
  bottom: 3.2em;
  opacity: 1;
}
.slideshow__2 .swiper__controls > div > div {
  padding-right: 4.4em;
  top: -0.3em;
}
.slideshow__2 .swiper__fraction {
  font-size: 3.3em;
}
.slideshow__2 .swiper-pagination-fraction {
  top: auto;
  bottom: auto;
}
.slideshow__2 .swiper__nav--next {
  top: auto;
  bottom: 4.45em;
  right: var(--page-padding);
}
.slideshow__2 .swiper__nav--prev {
  display: none !important;
}
.slideshow__2 .swiper__autoplay-progress {
  position: absolute;
  right: 0;
  width: 2.4em;
  height: 2.4em;
  top: 50%;
  transform: translate(0, -50%);
}
.slideshow__2 .swiper__autoplay-progress span {
  display: none;
}

.layout .content {
  top: -2em;
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.layout .stat {
  left: -2em;
  opacity: 0;
  transition: left 0.5s ease var(--delay), opacity 0.5s ease var(--delay);
}
.page-ready .layout.is-inview .content {
  top: 0em;
  opacity: 1;
}
.page-ready .layout.is-inview .stat {
  left: 0em;
  opacity: 1;
}

.layout__predefined--11 .stats {
  display: grid;
  gap: 2.65em;
}
.layout__predefined--11 .stat__figure {
  font-size: 3.345em;
}
.layout__predefined--11 .stat__label {
  font-size: 1.4em;
  margin-bottom: 0.8em;
}

.layout__predefined--14 .content,
.layout__predefined--15 .content {
  height: 100%;
  border-radius: 0.5em;
  background-color: var(--color-light-grey);
  padding: 3em var(--page-padding);
}

.layout__predefined--12 .has-tags {
  padding-top: 3.2em;
}

.layout__predefined--13 .sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--header-corporate-height) + var(--wp-admin--admin-bar--height, 0px) + 4.5em);
}
.layout__predefined--13 .sticky .page__tags {
  position: absolute;
  bottom: 100%;
}

.layout__predefined--15 {
  overflow: hidden;
}
.layout__predefined--15 .slideshow-wrap {
  width: 200%;
}
.layout__predefined--15 .swiper {
  height: 42em;
  margin: 0 calc(-1 * var(--half-gutter-width));
  overflow: visible;
  position: static;
}
.layout__predefined--15 .swiper .card__tags {
  z-index: 1;
  width: calc(100% - var(--gutter-width));
  left: var(--half-gutter-width);
}
.layout__predefined--15 .media {
  width: calc(100% - var(--gutter-width));
  left: var(--half-gutter-width);
  overflow: hidden;
  border-radius: 0.5em;
}
.layout__predefined--15 .content-start {
  z-index: 2;
}
.layout__predefined--15 .swiper__controls {
  width: calc(50% + var(--half-gutter-width));
  transform: translate(-100%, 0%);
  z-index: 3;
  left: calc(-1 * var(--half-gutter-width));
}
.layout__predefined--15 .swiper__nav {
  top: auto;
  bottom: 1em;
  left: auto;
  right: calc(3.75em + var(--half-gutter-width));
}
.layout__predefined--15 .swiper__nav--next {
  right: calc(1em + var(--half-gutter-width));
}
.layout__predefined--15 .swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.layout__predefined--15 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.layout__predefined--15 .swiper-slide.swiper-slide-active ~ .swiper-slide {
  opacity: 1;
}

.sectional[data-style-set=light-grey] .layout__predefined--14 .content,
.sectional[data-style-set=light-grey] .layout__predefined--15 .content {
  background-color: var(--color-white);
}

.media,
.google-map {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.page-ready .is-inview .media,
.page-ready .is-inview .google-map {
  opacity: 1;
}

.media-wrap {
  border-radius: 0.5em;
  overflow: hidden;
}

picture[class*=wp-image-] {
  overflow: hidden;
  border-radius: 0.5em;
  margin: 2em 0;
}

.nav--posts {
  margin-top: 5em;
  display: flex;
  justify-content: space-between;
}
.nav--posts .link {
  padding-left: 1.4em;
}
.nav--posts .link:hover, .nav--posts .link:focus {
  color: var(--color-black) !important;
}
.nav--posts .link:hover .svg-symbol, .nav--posts .link:focus .svg-symbol {
  left: -0.2em;
}
.nav--posts .btn_wrap.dimmed {
  opacity: 0.2;
}
.nav--posts .svg-symbol {
  width: 0.9em;
  height: 0.9em;
  left: 0;
  transform: translate(0%, -50%) rotate(180deg);
  transition: left 0.5s ease 0s;
}
.nav--posts .btn--next .link {
  padding-left: 0;
  padding-right: 1.4em;
}
.nav--posts .btn--next .link:hover .svg-symbol, .nav--posts .btn--next .link:focus .svg-symbol {
  left: auto;
  right: -0.2em;
}
.nav--posts .btn--next .svg-symbol {
  left: auto;
  right: 0;
  transform: translate(0%, -50%) rotate(0deg);
  transition: right 0.5s ease 0s;
}

.content--above {
  margin-bottom: 1.5em;
}

.accordion {
  margin: 2.3em 0;
}
.accordion.is-open .accordion__title > span:last-child {
  transform: rotate(270deg);
}

.accordion__title {
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 1.2em;
  padding-right: 3em;
}
.accordion__title > span:first-child {
  font-size: 1.4em;
}
.accordion__title > span:last-child {
  display: block;
  position: absolute;
  top: 0.35em;
  right: 0.2em;
  width: 0.9em;
  height: 0.9em;
  transform: rotate(90deg);
}
.accordion__title svg * {
  fill: var(--color-black);
}

.accordion__content {
  color: #626161;
}
.accordion__content > div {
  padding: 2em 0 2em 0;
}

.swiper__nav {
  top: 50%;
  left: 1em;
  transform: rotate(0deg);
  border-radius: 0.5em;
  background-color: var(--color-white);
  transition: background-color 0.5s ease 0s;
  top: auto;
}
.swiper__nav .svg-symbol {
  width: 1em;
  height: 1em;
}
.swiper__nav.swiper__nav--prev {
  transform: rotate(180deg);
}
.swiper__nav:hover, .swiper__nav:focus {
  background-color: var(--color-lime-green);
}

.swiper__nav--next {
  left: auto;
  right: 1em;
}

.layout__slideshow--1 .swiper__nav {
  bottom: 1em;
  top: auto;
}
.layout__slideshow--1 .swiper-wrapper {
  border-radius: 0.5em;
  overflow: hidden;
}

.layout__testimonials[data-layout-width=fullscreen] {
  overflow: hidden;
}
.layout__testimonials[data-layout-width=fullscreen][data-layout-padding=default] > .layout__pos {
  padding: 0;
}
.layout__testimonials[data-layout-width=fullscreen] .media-poster {
  border-top-right-radius: 0em;
  border-bottom-right-radius: 0em;
}
.layout__testimonials[data-layout-width=fullscreen] .content {
  padding: 0 0 0 var(--page-padding);
  margin: 0 0 0 auto;
  width: 100%;
}

.testimonials__quotes-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials__quotes-wrap .content {
  padding-top: 4.5em !important;
}

.testimonials__images-wrap,
.testimonials__image {
  height: 100%;
}
.testimonials__images-wrap .media,
.testimonials__image .media {
  height: 100%;
}

.testimonials__quotes {
  padding-bottom: 4.5em;
}
.testimonials__quotes blockquote {
  margin: 0;
  font-size: 1.39em;
  max-width: 80%;
}
.testimonials__quotes cite {
  font-style: normal;
  margin-top: 2em;
  display: block;
  font-size: 1.1em;
}
.testimonials__quotes .swiper__controls {
  left: calc(100% + var(--gutter-width));
  bottom: -3.5em;
}
.testimonials__quotes .swiper__nav {
  top: auto;
  bottom: 0;
}
.testimonials__quotes .swiper__nav.swiper__nav--prev {
  left: auto;
  right: 3.5em;
}

.cards--1 .card {
  opacity: 0;
  top: -2em;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.cards--1 .card.is-inview {
  opacity: 1;
  top: 0;
}
.cards--1 .card__media {
  height: 0;
  padding-bottom: 113.5%;
  overflow: hidden;
  border-radius: 0.5em;
  background-color: var(--color-light-grey);
}
.cards--1 .card__content {
  padding-top: 1.8em;
  top: 0em;
  opacity: 1;
}
.cards--1 h4 {
  font-size: 1.395em;
  margin-bottom: 1.5em;
}
.cards--1 h4 a:hover,
.cards--1 h4 a:focus {
  color: var(--color-black);
}
.cards--1 p {
  font-size: 1.1em;
}
.cards--1 > .row {
  gap: 5em 0;
}

.card__more {
  display: block;
  position: absolute;
  bottom: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  border-radius: 0.5em;
  background-color: var(--color-white);
  transition: background-color 0.5s ease 0s;
  overflow: hidden;
  z-index: 1;
  text-indent: -999px;
}
.card__more .svg-symbol {
  width: 1em;
  height: 1em;
}
a:hover .card__more, a:focus .card__more {
  background-color: var(--color-lime-green);
}

.archive__content--above {
  margin-bottom: 3.8em;
}

.team-listing__image {
  display: block;
  overflow: hidden;
  border-radius: 0.5em;
  aspect-ratio: 0.88;
}
.team-listing__image img {
  width: 100%;
  display: block;
  height: auto;
}

.team-listing__content {
  padding: 1.6em 0;
}
.team-listing__content h4 {
  margin-bottom: 0;
}
.team-listing__content p {
  color: var(--color-dark-grey);
  margin-top: 0.4em;
}

.back-bar {
  position: absolute;
  top: -6.26em;
  left: 0;
  width: 100%;
}
.back-bar .svg-symbol {
  width: 0.9em;
  height: 0.9em;
  left: 0;
  transform: translate(0%, -50%) rotate(180deg);
  transition: left 0.5s ease 0s;
}
.back-bar .svg-symbol svg * {
  fill: var(--color-black);
}
.back-bar a {
  padding-left: 1.4em;
}
.back-bar a:hover,
.back-bar a:focus {
  color: var(--color-black) !important;
}
.back-bar a:hover .svg-symbol,
.back-bar a:focus .svg-symbol {
  left: -0.2em;
}

.back-bar__name {
  font-size: 0.9em;
}

.single-team__image {
  display: block;
  overflow: hidden;
  border-radius: 0.5em;
}
.single-team__image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-team__details h1 {
  font-size: 2.5em;
}

.single-team__article .content {
  margin-top: 1.6em;
  margin-bottom: 4em;
}
.single-team__article .content + .btn_wrap {
  margin-top: 3em;
}

.single-team__wrap {
  padding-top: 2em;
}

.news-listing .card__tags,
.search-listing .card__tags {
  position: absolute;
  top: 0;
  z-index: 2;
}
.news-listing time,
.search-listing time {
  font-family: "Suisse Intl Mono";
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.news-listing h4,
.search-listing h4 {
  margin-top: 0.36em;
  margin-bottom: 0.5em;
}
.news-listing h4:first-child,
.search-listing h4:first-child {
  margin-top: 0;
}
.news-listing .btn_wrap,
.search-listing .btn_wrap {
  margin-top: 1.4em;
}

.news-listing,
.project-listing,
.team-listing,
.property-listing {
  opacity: 0 !important;
  transition: opacity 0.5s ease 0s !important;
}
.news-listing.is-inview,
.project-listing.is-inview,
.team-listing.is-inview,
.property-listing.is-inview {
  opacity: 1 !important;
}

.news-listing__image,
.search-listing__image {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 0.5em;
}
.news-listing__image a,
.news-listing__image figure,
.search-listing__image a,
.search-listing__image figure {
  margin: 0;
  height: 100%;
  display: block;
}
.news-listing__image a:before,
.search-listing__image a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.news-listing__content,
.search-listing__content {
  padding-top: 1.9em;
}
.news-listing__content .content,
.search-listing__content .content {
  top: 0 !important;
  opacity: 1 !important;
}

.related-news > .content {
  padding-bottom: 1.8em;
}

.related-news__items {
  gap: 4em 0;
}
.related-news__items .news-listing__image {
  aspect-ratio: 2.0793;
}

.layout__archives--news-1 .alm-listing {
  gap: 5em 0;
}

.layout__featured_news div[role=listitem]:first-child .news-listing__image {
  aspect-ratio: 2.0793;
}

.layout__featured_projects .news-listing__image {
  aspect-ratio: 0.88 !important;
}
.layout__featured_projects .news-listing__image a:hover .project-listing__more, .layout__featured_projects .news-listing__image a:focus .project-listing__more {
  background-color: var(--color-lime-green);
}

.featured-news__title {
  margin-bottom: 3.8em;
  top: -2em;
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
.page-ready .is-inview .featured-news__title {
  top: 0em;
  opacity: 1;
}

.featured-news h4 a:hover, .featured-news h4 a:focus {
  text-decoration: none;
}

.featured-news__all {
  width: 2em;
  height: 2em;
  border-radius: 0.5em;
  transition: background-color 0.5s ease 0s;
  display: block;
  background-color: var(--color-light-grey);
  text-indent: -999px;
  overflow: hidden;
  position: absolute;
  top: 0.45em;
  right: 0;
}
.featured-news__all:hover, .featured-news__all:focus {
  background-color: var(--color-lime-green) !important;
}
.featured-news__all .svg-symbol {
  width: 1em;
  height: 1em;
}

[data-style-set=light-grey] .featured-news__all {
  background-color: var(--color-white);
}

.single-news__details h1 {
  font-size: 2.5em;
  margin-top: 0.55em;
}
.single-news__details time {
  margin-top: 2.6em;
  display: block;
  font-family: "Suisse Intl Mono";
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.single-news__content {
  padding-top: 4em;
}
.single-news__content .video_wrap,
.single-news__content .embed-container {
  margin: 3em 0;
}

#ajax-load-more .alm-btn-wrap,
#ajax-load-more-2 .alm-btn-wrap {
  margin: 0;
  padding: 0;
}
#ajax-load-more .alm-btn-wrap .alm-load-more-btn,
#ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn {
  margin: 6em 0 0 0;
  font-family: "Suisse Intl Mono";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: 0.66em;
  padding: 0.6em 2.5em;
  background-color: var(--color-light-grey);
  color: var(--color-black);
  border-color: var(--color-light-grey);
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s, color 0.5s ease 0s;
}
#ajax-load-more .alm-btn-wrap .alm-load-more-btn:focus, #ajax-load-more .alm-btn-wrap .alm-load-more-btn:hover,
#ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn:focus,
#ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn:hover {
  background-color: var(--color-lime-green);
  border-color: var(--color-lime-green);
}
#ajax-load-more .alm-btn-wrap .alm-load-more-btn:active,
#ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn:active {
  box-shadow: none;
}
#ajax-load-more .alm-btn-wrap .alm-load-more-btn.done,
#ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn.done {
  display: none;
}

.project-info__list {
  margin: 0;
}
.project-info__list dd {
  margin: 0;
}
.project-info__list dt {
  font-size: 1.95em;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 400;
}
.project-info__list dd {
  margin: 0.6em 0 2em 0;
}
.project-info__list dd:last-child {
  margin-bottom: 0;
}

.contact-details p {
  font-size: 1.11em;
}

.contact-details__label {
  font-size: 1.95em;
  margin-bottom: 0.3em;
  margin-top: 0.9em;
}

.contact-icon {
  padding: 0.25em 0 0.25em 2.8em;
}
.contact-icon > span {
  font-size: 1.11em;
}
.contact-icon > div {
  position: absolute;
  width: 1.9em;
  height: 1.9em;
  left: 0;
  top: 50%;
  background-color: var(--color-light-grey);
  border-radius: 0.5em;
  overflow: hidden;
  transform: translate(0, -50%);
}
.contact-icon > div .svg-symbol {
  width: 53%;
  height: 53%;
}
.contact-icon > div svg * {
  fill: var(--color-black);
}

.contact-social {
  display: flex;
  gap: 0.5em;
}
.contact-social a {
  width: 1.9em;
  height: 1.9em;
  background-color: var(--color-light-grey);
  border-radius: 0.5em;
  overflow: hidden;
  display: block;
}
.contact-social a .svg-symbol {
  width: 63%;
  height: 63%;
}
.contact-social a svg * {
  fill: var(--color-black);
}

.search__bar button[type=submit] {
  font-family: "Suisse Intl Mono";
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border: 1px solid var(--color-dark-grey);
  border-radius: 0.6666em;
  padding: 0.6em 1.15em 0.6em 3em;
  background-color: var(--color-dark-grey);
  line-height: 1;
  color: var(--color-white);
  transition: background-color 0.5s ease 0s, border-color 0.5s ease 0s, color 0.5s ease 0s;
}
.search__bar button[type=submit]:before, .search__bar button[type=submit]:after {
  content: "";
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease 0s;
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 50%;
  left: 1.4em;
  transform: translate(0%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M13.31,12.54l-2.8-2.83c.81-.98,1.31-2.23,1.31-3.61C11.81,3.02,9.32.5,6.25.5S.69,3.02.69,6.11s2.49,5.61,5.56,5.61c1.22,0,2.35-.41,3.27-1.08l2.83,2.86.95-.96ZM2.04,6.11C2.04,3.76,3.93,1.85,6.25,1.85s4.22,1.91,4.22,4.26-1.89,4.26-4.22,4.26-4.22-1.91-4.22-4.26Z' style='fill: %23fff;'/%3E%3C/svg%3E");
}
.search__bar button[type=submit]:after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M13.31,12.54l-2.8-2.83c.81-.98,1.31-2.23,1.31-3.61C11.81,3.02,9.32.5,6.25.5S.69,3.02.69,6.11s2.49,5.61,5.56,5.61c1.22,0,2.35-.41,3.27-1.08l2.83,2.86.95-.96ZM2.04,6.11C2.04,3.76,3.93,1.85,6.25,1.85s4.22,1.91,4.22,4.26-1.89,4.26-4.22,4.26-4.22-1.91-4.22-4.26Z' style='fill: %23000;'/%3E%3C/svg%3E");
}
.search__bar button[type=submit]:hover, .search__bar button[type=submit]:focus {
  background-color: var(--color-lime-green);
  border-color: var(--color-lime-green);
  color: var(--color-black);
}
.search__bar button[type=submit]:hover:before, .search__bar button[type=submit]:focus:before {
  opacity: 0;
}
.search__bar button[type=submit]:hover:after, .search__bar button[type=submit]:focus:after {
  opacity: 1;
}
.search__bar input[type=text] {
  padding: 0;
  height: 100%;
  font-size: 0.9em;
  width: 100%;
  color: #59595c;
}
.search__bar .columns {
  background-color: var(--color-light-grey);
  display: inline-flex;
  padding: 0.4em;
  border-radius: 0.5em;
  gap: 0.5em;
  width: 100%;
}
.search__bar .keywords {
  flex-grow: 1;
}

.search__bar input[type=text]::-webkit-input-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}

.search__bar input[type=text]::-moz-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}

.search__bar input[type=text]:-ms-input-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}

.search__bar input[type=text]:-moz-placeholder {
  font-size: 1em;
  color: var(--color-black);
  opacity: 1;
}

.layout__search .results {
  margin-top: 8em;
}

@media screen and (min-width: 2080px) {
  .header__primary > ul,
  .header__secondary > ul,
  .header__secondary {
    gap: 0 2em;
  }
  .header__corporate ul {
    gap: 0 2.4em;
  }
}
@media screen and (max-width: 1080px) {
  .back-bar {
    top: -4.25em;
  }
  .header__primary > ul > li > a > span[itemprop=name],
  .header__secondary > ul > li > a > span[itemprop=name] {
    padding: 0.4em 0.8em;
  }
  .header__primary .sub-menu__details,
  .header__secondary .sub-menu__details {
    display: block;
  }
  .header__primary .sub-menu__details > div:last-child,
  .header__secondary .sub-menu__details > div:last-child {
    display: none;
  }
  .hero[data-type="3"] .hero__logo {
    display: none;
  }
  .hero[data-type="3"] .hero__tagline,
  .hero[data-type="3"] .hero__taglines {
    left: 40%;
    transform: translate(0%, -50%);
  }
  .hero[data-type="3"] .hero__tagline > div,
  .hero[data-type="3"] .hero__taglines > div {
    font-size: 3.5em;
  }
  .hero[data-type="3"] .hero__tagline {
    left: auto;
    right: 60%;
    margin-right: 0.3em;
  }
  .hero[data-type="3"] .hero__taglines {
    margin-left: 0.3em;
  }
  .hero[data-type="3"] .hero__taglines span {
    display: none;
  }
  .related-news {
    margin-top: 5em;
  }
  .related-news__items .news-listing__image {
    aspect-ratio: 1;
  }
  .slideshow__2 {
    min-height: 380px;
  }
  .slideshow__2 .tagline {
    top: 2.16em;
  }
  .slideshow__2 .tagline > div {
    font-size: 2.5em;
  }
  .slideshow__2 .slideshow__caption .content {
    padding-bottom: 2.7em;
  }
  .slideshow__2 .swiper__controls > div {
    bottom: 1.5em;
  }
  .slideshow__2 .swiper__controls > div > div {
    top: -0.4em;
  }
  .slideshow__2 .swiper__nav--next {
    bottom: 2.67em;
  }
  .slideshow__2 .swiper__fraction {
    font-size: 2.8em;
  }
  .slideshow__2 .swiper__autoplay-progress {
    width: 2.3em;
    height: 2.3em;
  }
  .news-listing__image {
    aspect-ratio: 2.0793;
  }
  .testimonials__quotes blockquote {
    font-size: 1.3em;
  }
  .layout__predefined--15 .swiper {
    height: 30em;
  }
}
@media screen and (max-width: 640px) and (orientation: portrait) {
  .slideshow__2 {
    height: calc(100dvh - var(--header-height));
  }
  .slideshow__2 .slideshow__visuals {
    display: block;
  }
  .slideshow__2 .slideshow__visuals > div {
    height: 100%;
  }
  .slideshow__2 .slideshow__visuals > div:last-child {
    display: none;
  }
  .slideshow__2 .slide-left .slide-1 {
    width: 100%;
  }
  .slideshow__2 .tagline {
    top: 3em;
  }
  .slideshow__2 .tagline > div {
    font-size: 2.85em;
  }
  .slideshow__2 .tagline span {
    display: block;
  }
  .slideshow__2 .swiper__nav--next {
    bottom: 2em;
  }
  .slideshow__2 .swiper__controls > div {
    left: var(--page-padding);
    bottom: 1.725em;
    width: auto;
    text-align: left;
  }
  .slideshow__2 .swiper__controls > div > div {
    padding-right: 2.3em;
  }
  .slideshow__2 .swiper__fraction {
    font-size: 1.6em;
  }
  .slideshow__2 .swiper__autoplay-progress {
    width: 1.35em;
    height: 1.35em;
  }
  .slideshow__2 .slideshow__caption .content {
    padding-bottom: 8.8em;
  }
  .slideshow__2 .slideshow__caption .content p {
    font-size: 1em;
  }
}
@media screen and (max-width: 640px) {
  .wrapper--outer {
    padding-top: var(--header-height);
  }
  .page-loader__logo {
    width: 5.2em;
    height: 1.6em;
  }
  .content h2 {
    font-size: 1.575em;
  }
  .content h3 {
    font-size: 1.57em;
  }
  .content h4 {
    font-size: 1.15em;
  }
  .medium-intro-text {
    font-size: 1.25em;
  }
  .content .btn_wrap.style-default .link {
    font-size: 0.86em;
    margin-top: 1.8em;
  }
  .content--above {
    margin-bottom: 1.9em;
  }
  .property-slideshow {
    aspect-ratio: 1.23;
    min-height: 0;
  }
  .header {
    height: var(--header-height);
    color: var(--color-black) !important;
  }
  .header__cover {
    z-index: 2;
  }
  .header__primary {
    width: 100%;
    justify-content: start;
    position: relative;
    left: auto;
    transform: none;
  }
  .header__primary > ul {
    display: grid;
    grid-auto-rows: min-content;
    height: auto;
    position: relative;
    width: 100%;
    gap: 1.5em;
  }
  .header__primary > ul > li > a > span[itemprop=name] {
    padding: 0;
  }
  .header__primary li a {
    padding: 0;
  }
  .header__secondary {
    right: auto;
    top: auto;
    position: relative;
    display: grid;
    grid-auto-rows: min-content;
    gap: 1.5em;
    transform: none;
  }
  .header__secondary > ul {
    display: grid;
    margin: 0;
    gap: 1.5em;
  }
  .header__secondary > ul > li > a > span[itemprop=name] {
    padding: 0;
  }
  .header__secondary li a {
    padding: 0;
  }
  .header__primary > ul > li,
  .header__secondary > ul > li {
    position: relative;
  }
  .header__primary > ul > li > .sub-menu,
  .header__secondary > ul > li > .sub-menu {
    position: relative;
    height: 0;
    overflow: hidden;
    margin: 0;
    right: auto;
    width: 100%;
    top: auto;
    border-radius: 0;
    left: 0;
    transform: none;
  }
  .header__primary > ul > li > .sub-menu[aria-hidden=false],
  .header__secondary > ul > li > .sub-menu[aria-hidden=false] {
    height: auto;
    left: 0;
  }
  .header__primary > ul > li > .sub-menu > .row,
  .header__secondary > ul > li > .sub-menu > .row {
    display: block;
    margin: 0;
  }
  .header__primary > ul > li > .sub-menu > ul,
  .header__secondary > ul > li > .sub-menu > ul {
    display: grid;
    gap: 1em 0;
    height: auto;
  }
  .header__primary > ul > li > .sub-menu > ul > li,
  .header__secondary > ul > li > .sub-menu > ul > li {
    margin: 0;
  }
  .header__primary > ul > li > .sub-menu > ul > li > a,
  .header__secondary > ul > li > .sub-menu > ul > li > a {
    font-size: 1em;
  }
  .header__primary li a,
  .header__secondary li a {
    height: auto;
    display: inline-block;
  }
  .header__primary .sub-menu__nav,
  .header__secondary .sub-menu__nav {
    padding: 1em 0 1em 1em;
    height: auto;
  }
  .header__primary .sub-menu__nav > ul,
  .header__secondary .sub-menu__nav > ul {
    height: auto;
    column-count: auto;
  }
  .header__primary .sub-menu__search,
  .header__primary .sub-menu__details,
  .header__primary h4,
  .header__secondary .sub-menu__search,
  .header__secondary .sub-menu__details,
  .header__secondary h4 {
    display: none !important;
  }
  .header__search-link {
    background-color: var(--color-light-grey);
  }
  .header__search-link svg * {
    fill: var(--color-black) !important;
  }
  .header__container {
    height: calc(100dvh - var(--page-padding) - var(--page-padding) - var(--header-height) - var(--wp-admin--admin-bar--height, 0px));
    width: calc(100vw - var(--page-padding) * 2);
    top: 3em;
    position: absolute;
    left: var(--page-padding);
    z-index: 1;
    background-color: var(--color-white);
    padding: 0;
    border-radius: 0.5em;
    opacity: 0;
    transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
    overflow: hidden;
    pointer-events: none;
  }
  .menu-open .header__container {
    opacity: 1;
    top: calc(var(--header-height) + var(--page-padding));
    pointer-events: auto;
  }
  .header__corporate {
    position: absolute;
    bottom: 0;
    height: auto;
    width: 100%;
    padding: 1em;
    z-index: 3;
    grid-area: 2;
    display: grid;
    align-content: center;
  }
  .header__corporate nav {
    justify-content: center;
  }
  .header__menu-bg {
    display: none !important;
  }
  .header > div > .layout__pos {
    width: 100%;
    height: auto;
    display: grid;
    grid-auto-rows: min-content;
    gap: 1.5em;
    z-index: 1;
    padding-top: var(--page-padding);
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 4.5em;
    height: 100%;
  }
  .header__menu-toggle.hamburger {
    right: var(--page-padding);
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    width: 1.9em;
    height: 1.9em;
    overflow: visible;
  }
  .header__menu-toggle.hamburger > span {
    position: absolute;
    left: -9999px;
  }
  .header__menu-toggle.hamburger > div {
    transform-origin: center right;
    position: absolute;
    transform: rotate(0deg);
    left: 0%;
    top: 25%;
    width: 100%;
    height: 3px;
    background-color: var(--color-black);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header__menu-toggle.hamburger > div:last-child {
    top: auto;
    bottom: 25%;
  }
  .header__menu-toggle.hamburger[aria-expanded=true] > div {
    transform: rotate(-45deg);
    top: 11%;
    left: -16%;
  }
  .header__menu-toggle.hamburger[aria-expanded=true] > div:last-child {
    transform: rotate(45deg);
    top: auto;
    bottom: 11%;
    left: -16%;
  }
  body.menu-open .header__menu-toggle.hamburger {
    right: var(--page-padding);
    left: auto;
    transform: translate(0, -50%);
  }
  .header__menu-quick-search {
    position: relative;
    width: auto;
    top: auto;
    right: auto !important;
    height: auto;
    padding: 0;
    opacity: 1 !important;
    visibility: visible;
    padding-top: 1em;
    left: var(--half-gutter-width) !important;
    transform: none;
    display: block;
    width: 100%;
  }
  .header__menu-quick-search h4 {
    text-align: left;
  }
  .header__menu-quick-search .quick-search {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }
  .header__menu-quick-search .quick-search button[type=submit] {
    position: relative;
    width: 100%;
    grid-column: span 2;
  }
  .header__menu-quick-search .faux-select-wrapper {
    margin: 0;
  }
  .header__menu-quick-search-form {
    margin: 0;
    padding: 0.6em;
    background-color: var(--color-light-grey);
    border-radius: 0.5em;
  }
  .hero--enabled .header:not(.header--down):not(.header--pinned) {
    transform: none;
  }
  .filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle:before {
    display: none;
  }
  #ajax-load-more .alm-btn-wrap .alm-load-more-btn {
    margin-top: 3em;
  }
  #ajax-load-morez.alm-load-more-btn,
  #ajax-load-more-2 .alm-btn-wrap .alm-load-more-btn {
    margin-top: 3em;
  }
  .large-intro-text {
    font-size: 1.56em;
  }
  .accordion {
    margin: 1.55em 0;
  }
  .accordion__title {
    padding-bottom: 0.95em;
  }
  .accordion__title > span:first-child {
    font-size: 1.25em;
  }
  .accordion__title > span:last-child {
    top: 0.25em;
    right: 0.7em;
    width: 1em;
    height: 1em;
  }
  .hero[data-type="2"] .hero__content h1 {
    font-size: 2.8em;
  }
  .footer {
    padding-top: 2.8em;
  }
  .footer h4 {
    font-size: 1.55em;
    margin-bottom: 1.8em;
  }
  .footer h6 {
    margin: 1.6em 0 0.8em 0;
  }
  .footer .layout__pos > .row {
    gap: 3em;
  }
  .footer__logo {
    padding-bottom: 3.2em;
    margin: 5.3em 0 4.5em 0;
  }
  .footer__copyright,
  .footer__acknowledgement {
    font-size: 0.75em;
  }
  .footer__acknowledgement {
    margin-bottom: 2.3em !important;
  }
  .footer .layout__pos > .footer__small {
    gap: 0;
  }
  .footer__corporate > ul {
    font-size: 0.9em;
  }
  .hero__logo {
    width: 22.7em;
    height: 2.9em;
  }
  .hero__intro {
    margin-top: 2.5em;
    width: 100%;
  }
  .hero__intro p {
    font-size: 1.2525em;
  }
  .header__logo {
    width: 5.2em;
    height: 1.6em;
    margin-top: 0;
  }
  .faux-select__trigger div {
    width: 0.8em;
    height: 0.8em;
  }
  .hero__quick-search {
    height: 3.4em;
    padding: 0.6em;
    width: calc(100% - var(--page-padding) - var(--page-padding));
    margin-bottom: var(--page-padding);
  }
  .hero__quick-search .quick-search {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 2.2em;
  }
  .hero__quick-search .quick-search button[type=submit] {
    padding: 0;
    width: 2.45em;
  }
  .hero__quick-search .quick-search button[type=submit] > span {
    text-indent: -999px;
    overflow: hidden;
    padding-right: 0;
  }
  .hero__quick-search .quick-search button[type=submit] div {
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  .hero__quick-search .faux-select__trigger {
    width: 100%;
    padding: 0 0.5em;
  }
  .hero__quick-search .faux-select__trigger > span {
    font-size: 0.9em;
  }
  .hero__quick-search .faux-select__options {
    top: auto;
    bottom: calc(100% + 1.5em);
    width: calc(100% + 0.6em + 0.6em) !important;
    padding: 0.6em;
    border-radius: 0.5em;
    justify-content: start;
    background: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    backdrop-filter: blur(27.5px);
  }
  .hero__quick-search .faux-select__trigger[aria-expanded=true] + .faux-select__options {
    display: grid !important;
  }
  .hero__quick-search .faux-select__option {
    text-align: left;
  }
  .hero__quick-search .faux-select__option > span > span {
    font-size: 0.9em;
  }
  .hero__content .row {
    gap: 3em;
  }
  .hero__progress-label {
    font-size: 1em;
    margin-bottom: 0.2em;
  }
  .hero__progress-value > span {
    font-size: 2.25em;
  }
  .hero__progress-chart {
    left: 6.5em;
    width: 1.9em;
    height: 1.9em;
  }
  .filter-wrap {
    display: block;
    width: 100vw;
    top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px));
  }
  .filter-wrap > div {
    height: 100%;
  }
  .filter-wrap > div > div {
    height: 100%;
  }
  .filter-wrap .map-toggle {
    height: auto;
  }
  .filter-wrap .alm-filter li div.alm-filter--link {
    border: 1px solid var(--color-black);
  }
  .filter-wrap .alm-filter li div.alm-filter--link.active {
    background-color: var(--color-black);
    color: var(--color-light-grey) !important;
  }
  .filter-wrap .alm-filters {
    opacity: 0;
    pointer-events: none;
  }
  .filter-wrap .alm-filters-container {
    position: absolute;
    top: calc(100% + 1em);
    left: 0;
    display: grid;
    grid-auto-rows: min-content;
    width: 100%;
    padding: 1.2em;
    gap: 1.1em;
    height: calc(100dvh - var(--header-height) - 3.5663em - 0.6em - var(--wp-admin--admin-bar--height, 0px) - var(--page-padding));
  }
  .filter-wrap .alm-filters-container:after, .filter-wrap .alm-filters-container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  .filter-wrap .alm-filters-container:after {
    background-color: var(--color-light-grey);
    border-radius: 0.5em;
  }
  .filter-wrap .alm-filters-container:before {
    width: 100vw;
    background-color: var(--color-white);
    left: calc(-1 * var(--page-padding));
    top: -1em;
    height: 100vh;
  }
  .filter-wrap .alm-filters-container > div {
    z-index: 1;
  }
  .filter-wrap .alm-filters-container .field-checkbox:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolygon points='15.5 1.83 14.17 .5 8 6.67 1.83 .5 .5 1.83 6.67 8 .5 14.17 1.83 15.5 8 9.33 14.17 15.5 15.5 14.17 9.33 8 15.5 1.83' style='fill: %23efeee9;'/%3E%3C/svg%3E");
  }
  .filter-wrap .alm-filters-container .alm-filter--title {
    padding: 0;
    background-color: transparent;
    width: 100%;
    height: auto;
  }
  .filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle {
    font-size: 1em;
    padding: 0.6em 0;
  }
  .filter-wrap .alm-filters-container .alm-filter--title .alm-filter--toggle:after {
    display: none;
  }
  .filter-wrap .alm-filters-container .alm-filter--inner > ul {
    padding-top: 0.5em;
  }
  .filter-wrap .alm-filters-container .alm-filters--controls {
    margin: 0;
    gap: 0.25em;
    display: grid;
    grid-template-columns: auto 2.2em;
    justify-content: normal;
  }
  .filter-wrap .alm-filters-container .alm-filter--inner {
    display: block !important;
    position: relative;
    left: auto;
    transform: none;
  }
  .filter-wrap .alm-filters-container .alm-filter--inner:before {
    display: none;
  }
  .filter-wrap .alm-filters-container button[type=button] {
    width: 100%;
    padding: 0.9em 1.15em;
  }
  .filter-wrap .alm-filters-container button[type=reset] {
    background-color: var(--color-dark-grey);
    top: auto;
    width: 100%;
  }
  .filter-wrap .alm-filters-container button[type=reset]:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15.5,8.47l-1.62-.06c-.06,1.48-.69,2.84-1.77,3.87-.17.16-.35.29-.53.42-.14.11-.28.22-.43.32-.19.12-.39.21-.59.3-.14.07-.28.15-.43.2-.22.08-.44.14-.67.19-.14.04-.28.08-.42.11-.22.04-.43.05-.65.06-.16.01-.33.03-.49.03-.33,0-.66-.03-.98-.09-.03,0-.06-.01-.1-.02-.33-.07-.66-.16-.98-.28-.04-.02-.08-.03-.12-.05-.31-.12-.6-.28-.89-.45-.05-.03-.1-.06-.14-.09-.27-.18-.53-.39-.78-.62-.06-.06-.12-.11-.18-.17-.04-.04-.08-.09-.12-.13-.09-.1-.17-.19-.26-.3-.03-.04-.06-.08-.09-.12-.08-.11-.17-.22-.24-.34-.02-.04-.04-.07-.07-.11-.08-.12-.15-.25-.21-.37-.02-.04-.04-.08-.06-.12-.06-.13-.12-.25-.17-.38-.02-.05-.04-.1-.06-.15-.04-.12-.08-.24-.12-.36-.02-.07-.04-.14-.05-.21-.03-.11-.05-.21-.07-.32-.02-.09-.03-.18-.04-.26-.01-.1-.03-.19-.03-.29,0-.1-.01-.19-.01-.29,0-.1,0-.19,0-.29,0-.1,0-.19.01-.29,0-.1.01-.19.03-.28.01-.09.03-.18.04-.27.02-.1.03-.19.05-.29.02-.09.04-.18.07-.26.03-.09.05-.18.08-.27.03-.09.06-.18.1-.26.03-.09.07-.17.11-.26.04-.09.08-.17.13-.26.04-.08.08-.16.13-.24.05-.09.1-.17.15-.25.05-.07.1-.15.15-.22.06-.08.12-.16.18-.24.06-.07.11-.14.18-.21.06-.07.13-.14.2-.21.06-.06.11-.12.17-.17.16-.16.35-.28.52-.42.14-.11.28-.23.43-.32.19-.12.39-.2.58-.3.14-.07.28-.15.43-.2.22-.08.44-.13.66-.19.14-.04.28-.08.43-.11.21-.04.43-.04.64-.06.17-.01.34-.03.51-.03,1.26.02,2.51.45,3.55,1.26h-2.23v1.58h4.93V.5h-1.62v2.02c-1.3-1.03-2.86-1.56-4.45-1.62h0c-.07-.01-.14,0-.21,0-.07,0-.14,0-.2,0-.18,0-.36,0-.54.03-.05,0-.1.01-.15.02-.19.02-.39.05-.58.08-.04,0-.08.02-.11.02-.2.04-.4.09-.59.14-.04.01-.08.02-.12.04-.19.06-.38.12-.56.19-.05.02-.1.04-.16.07-.17.07-.33.14-.49.22-.07.04-.14.08-.22.12-.14.07-.27.15-.4.23-.09.05-.17.11-.26.17-.11.08-.22.16-.33.24-.09.07-.18.15-.27.22-.06.05-.13.1-.2.16-.04.03-.07.07-.11.11-.03.03-.07.06-.1.09-.05.05-.09.1-.14.15-.09.1-.18.19-.27.29-.07.08-.14.16-.2.25-.08.11-.17.21-.25.32-.06.09-.12.17-.18.26-.07.11-.14.22-.21.34-.05.09-.1.19-.15.29-.06.11-.12.23-.17.35-.05.1-.09.21-.13.31-.04.11-.09.23-.13.34-.04.11-.07.23-.1.34-.03.11-.06.23-.09.34-.03.12-.05.24-.07.37-.02.11-.04.23-.05.34-.02.12-.02.25-.03.38,0,.07-.02.14-.02.22,0,.05,0,.09,0,.14,0,.05,0,.09,0,.14,0,.07,0,.15.01.22,0,.12,0,.25.02.37,0,.12.02.23.04.34.02.12.03.25.06.37.02.11.05.23.07.34.03.12.06.23.09.35.03.12.07.23.11.34.04.11.08.22.12.32.05.12.1.23.15.35.05.1.09.2.14.29.06.12.13.23.2.35.05.09.11.18.17.27.07.11.15.23.24.34.06.08.12.17.19.25.09.11.17.21.27.31.05.05.09.1.13.15.03.03.06.06.1.09.04.04.07.08.1.11.05.05.11.1.17.15.1.09.19.17.29.26.09.07.18.14.27.21.11.08.22.16.33.24.08.06.17.11.26.16.13.08.25.15.39.22.08.04.16.08.24.12.14.07.29.13.43.19.08.03.15.06.23.09.15.06.31.11.46.16.08.02.15.04.23.06.16.04.31.08.47.11.08.02.17.03.25.05.15.03.3.05.46.06.09,0,.18.02.28.02.09,0,.18.02.27.02.1,0,.19,0,.29,0h0c1.22,0,2.4-.29,3.46-.83.05-.02.09-.05.14-.08.16-.09.32-.17.47-.27.07-.05.14-.1.22-.15.12-.08.25-.17.37-.26.08-.06.16-.13.24-.19.07-.06.14-.11.21-.17.04-.03.07-.07.11-.11.03-.03.07-.06.1-.09h0c1.34-1.31,2.13-3.03,2.2-4.89ZM12.74,3.73h-.15l.15-.15v.15Z' fill='%23fff'/%3E%3C/svg%3E");
  }
  .filter-wrap .alm-filters-container button[type=reset]:hover, .filter-wrap .alm-filters-container button[type=reset]:focus {
    background-color: var(--color-dark-grey);
  }
  .filter-wrap .filter-toggle {
    pointer-events: auto;
    width: 2.1em;
    height: 2.1em;
  }
  .filter-wrap .filter-toggle .svg-symbol {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.2em;
    height: 1.2em;
  }
  .filter-open .filter-wrap .alm-filters {
    opacity: 1;
    pointer-events: auto;
  }
  .map-toggle .toggle-switch {
    width: 2.2em;
    height: 1.2em;
  }
  .map-toggle .toggle-switch:before {
    width: calc(1.2em - 6px);
    height: calc(1.2em - 6px);
  }
  .map-toggle {
    padding-left: 1.4em;
    padding-right: 2.9em;
  }
  .map-toggle .label {
    font-size: 1em;
  }
  .map-toggle .svg-symbol {
    width: 0.9em;
    height: 0.9em;
  }
  .map-toggle input[type=checkbox]:checked + .toggle-switch:before {
    left: calc(100% - 1.2em + 2px);
  }
  .layout__predefined--11 .row .row {
    gap: 5em;
  }
  .layout__predefined--11 .stats {
    grid-template-columns: 1fr 1fr;
    gap: 3.2em 1.5em;
  }
  .layout__predefined--11 .stat__label {
    font-size: 1.26em;
    margin-bottom: 1em;
  }
  .layout__predefined--11 .stat__figure {
    font-size: 2.84em;
  }
  .layout__predefined--7 .layout-row-parent > .row,
  .layout__predefined--16 .layout-row-parent > .row {
    gap: 3em;
  }
  .layout__predefined--8 .layout-row-parent > .row {
    gap: 2.5em;
  }
  .hero[data-type="3"] .hero__tagline,
  .hero[data-type="3"] .hero__taglines {
    left: 37%;
  }
  .hero[data-type="3"] .hero__tagline > div,
  .hero[data-type="3"] .hero__taglines > div {
    font-size: 2.2em;
  }
  .hero[data-type="3"] .hero__tagline {
    right: 63%;
    margin-right: 0.175em;
    white-space: nowrap;
    text-align: right;
    left: auto;
  }
  .hero[data-type="3"] .hero__taglines {
    margin-left: 0.175em;
  }
  .slideshow__2 .slideshow__caption .content h3 {
    margin-bottom: 0.9em;
    margin-top: 1.2em;
  }
  .page-ready .is-inview .slideshow__2 .tagline {
    top: 3em;
  }
  .page-ready .is-inview .slideshow__2 .swiper__controls > div {
    bottom: 1.75em;
  }
  .layout__featured_projects .news-listing__image,
  .project-listing__image a,
  .property-listing__image a {
    aspect-ratio: 1 !important;
  }
  .news-listing__content,
  .search-listing__content {
    padding-top: 2.3em;
  }
  .featured-news__title {
    margin-bottom: 3em;
  }
  .featured-news__items {
    gap: 5em 0;
  }
  .news-listing__image {
    aspect-ratio: 1 !important;
  }
  .layout__predefined--12 .layout-row-parent > .row {
    gap: 2.5em 0;
  }
  .layout__predefined--12 .sticky {
    position: relative;
    top: auto;
  }
  .layout__predefined--12 .sticky .page__tags {
    position: relative;
    bottom: auto;
  }
  .layout__predefined--12 .has-tags {
    padding-top: 0;
  }
  .testimonials__quotes blockquote {
    font-size: 1.1em;
    max-width: 100%;
  }
  .testimonials__quotes cite {
    font-size: 0.9em;
  }
  .layout__testimonials[data-layout-width=fullscreen] .media-poster {
    border-radius: 0em;
  }
  .header__primary > ul > li > a:hover > span[itemprop=name],
  .header__primary > ul > li > a:focus > span[itemprop=name],
  .header__secondary > ul > li > a:hover > span[itemprop=name],
  .header__secondary > ul > li > a:focus > span[itemprop=name] {
    background-color: transparent !important;
    color: var(--color-mid-grey) !important;
  }
  .project-listing__features,
  .property-listing__features {
    font-size: 0.9em;
  }
  .project-listing__details,
  .property-listing__details {
    padding: 1.35em 0 1em 0;
  }
  .project-listing__info h4,
  .property-listing__info h4 {
    font-size: 1.275em;
  }
  .project-listing__info p:last-child,
  .property-listing__info p:last-child {
    margin-top: 0.475em;
  }
  .filter-wrap + #archive-list-view,
  .filter-wrap + .archive__content {
    padding-top: 3em;
  }
  #archive-map-view #properties-map {
    margin-top: calc(var(--header-height) + var(--header-corporate-height) + 0em + var(--wp-admin--admin-bar--height, 0px));
  }
  .single-property aside h3 {
    font-size: 1.25em;
    margin-top: 1.4em;
  }
  .single-property aside p {
    font-size: 0.9em;
  }
  .single-property aside {
    margin-bottom: 2em;
  }
  .single-property aside .btn-group {
    margin-top: 1em;
    width: 100%;
    display: grid;
  }
  .layout__property-details .layout__pos > .row {
    gap: 2.5em 0;
  }
  .layout__property-details .page__tags {
    margin-bottom: 1.4em;
  }
  .property-gallery .swiper__nav {
    bottom: 1em;
    left: 1em;
  }
  .property-gallery .swiper__nav.swiper__nav--next {
    bottom: 1em;
    left: auto;
    right: 1em;
  }
  .property-gallery .swiper__controls {
    padding: 0;
  }
  .layout__property-gallery > .layout__pos {
    padding-top: 0 !important;
  }
  .layout__property-map .google-map {
    padding-bottom: 100% !important;
  }
  .property-gallery {
    padding-bottom: var(--aspect-xs);
  }
  .property-gallery .swiper {
    overflow: hidden !important;
    border-radius: 0.5em;
  }
  .property-gallery picture,
  .property-gallery img {
    border-radius: 0;
    position: absolute !important;
    width: 100% !important;
  }
  .property-gallery .swiper-slide,
  .property-gallery.property-gallery__multi .swiper-slide {
    width: 100% !important;
  }
  .single-team__wrap {
    gap: 5em 0;
    padding-top: 0;
  }
  .single-team__article .content {
    margin-bottom: 3em;
  }
  .single-team__article .btn_wrap.style-underline .link {
    margin-top: 2em;
  }
  .hero[data-type="2"] .hero__content h1 {
    font-size: 2.8em;
  }
  .hero[data-type="2"] .hero__content > .layout__pos {
    padding-bottom: 5em;
  }
  .layout__predefined--14 .layout-row-parent > .row,
  .layout__predefined--15 .layout-row-parent > .row {
    gap: var(--gutter-width);
  }
  .layout__predefined--13 .layout-row-parent > .row {
    gap: 2.5em;
  }
  .layout__predefined--15 .slideshow-wrap {
    width: 175%;
  }
  .layout__predefined--15 .swiper {
    height: 28em;
  }
  .layout__predefined--15 .swiper__controls {
    height: 100%;
    left: 0;
    right: auto;
    width: 100%;
    transform: none;
  }
  .layout__predefined--15 .swiper__nav {
    left: 1em;
  }
  .layout__predefined--15 .swiper__nav.swiper__nav--next {
    left: calc(75vw - var(--gutter-width) - 1em);
    right: auto;
  }
  .testimonials > .row > div {
    position: static;
  }
  .testimonials__quotes-wrap,
  .testimonials__quotes {
    position: static;
  }
  .testimonials__quotes .swiper__controls {
    bottom: 0;
    left: 0;
    top: auto;
    position: absolute;
    width: 100%;
  }
  .testimonials__quotes .swiper__nav {
    bottom: calc(100% + 1em);
    top: auto;
    right: 0em;
  }
  .testimonials__quotes .swiper__nav.swiper__nav--prev {
    top: auto;
    bottom: 1em;
    display: none;
  }
  .testimonials__quotes-wrap .content {
    padding-top: 2.5em !important;
  }
  .testimonials__images-wrap {
    border-radius: 0.5em;
    overflow: hidden;
  }
  .testimonials__quotes-wrap > .content {
    padding-top: var(--page-spacing) !important;
  }
  .testimonials__quotes {
    padding-bottom: var(--page-spacing);
    position: relative;
  }
  .sectional > .layout__testimonials[data-layout-spacing=none] {
    padding-bottom: var(--page-padding);
  }
  .sectional > .layout__testimonials[data-layout-padding=none] > .layout__pos {
    padding: 0 var(--page-padding);
  }
  .layout__testimonials[data-layout-width=fullscreen] .content {
    padding-left: 0;
  }
  .featured-news__title + .row {
    gap: 5em 0;
  }
  .google-map__canvas {
    aspect-ratio: 1;
  }
  .back-bar {
    top: -3.25em;
  }
  .filter-wrap .alm-filters-container .alm-filter--search {
    width: auto;
  }
  .alm-filters-container .alm-filter--text-wrap.has-button input[type=text] {
    height: 3em;
  }
  .filter-wrap .alm-filters-container button[type=button]:before,
  .filter-wrap .alm-filters-container button[type=button]:after {
    width: 1.35em;
    height: 1.35em;
  }
  .filter-wrap .alm-filters-container button[type=button] > span {
    font-size: 1em;
  }
  .back-bar a {
    font-size: 0.9em;
  }
  .back-bar + .layout {
    margin-top: 7em;
  }
  .footer__navigation > ul {
    display: block;
  }
}
@keyframes spin-reset-btn {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

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