/*
Set multiple properties with their relative breakpoints in one go.
Depends on: Bootstrap
Example usage:

$font-size: (
  xs: 10px,
  sm: 10px,
  md: 12px,
  lg: 14px,
  xl: 14px,
);

.my-element {
  @include set-property(
    (
      font-size: $font-size,
    ),
    2,
    !important
  );
}
*/
@import url("https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
:root {
  --grid-breakpoint-xs: 0;
  --grid-breakpoint-sm: 576px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 1024px;
  --grid-breakpoint-xl: 1440px;
}

:root {
  --container-max-width: 575px;
  --container-margin: 0;
  --grid-gutter-width: 0;
  --padding-block-standard: 80px;
  --padding-block-reduced: 60px;
  --padding-block-small: 40px;
  --spacer: 15px;
  --icon-offset: 40px;
}

@media (min-width: 576px) {
  :root {
    --container-max-width: 767px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-max-width: 1023px;
    --padding-block-standard: 120px;
    --padding-block-reduced: 90px;
    --padding-block-small: 60px;
    --spacer: 20px;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-max-width: 1439px;
  }
}
@media (min-width: 1440px) {
  :root {
    --container-max-width: 9999px;
  }
}
/*!
 * Reboot v1.0
 */
/* Box sizing border-box for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1, h2, h3, h4, h5, h6, .psk-gallery .swiper-caption *,
p, blockquote,
dl, dd,
ol, ul,
figure,
hr,
pre {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #212529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles on ul, ol elements */
ul[class],
ol[class] {
  list-style: none;
}

/* Set default styles for headings */
h1, h2, h3, h4, h5, h6, .psk-gallery .swiper-caption * {
  font-weight: 500;
  line-height: 1.2;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default table border */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* Inherit font from the parent element */
  font-size: inherit; /* Inherit font size from the parent element */
  line-height: inherit; /* Inherit line height from the parent element */
  margin: 0; /* Remove default margin */
}

button,
input { /* Prevent the browser default styling on button and inputs */
  overflow: visible;
}

button,
select { /* Prevent the browser default styling on button and select */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Use the native button styling */
}

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText; /* Show a dotted outline */
}

/* Set default link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:hover {
  text-decoration: underline;
}

/* Miscellaneous */
hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 1rem 0;
}

pre,
code {
  font-family: "Courier New", Courier, monospace;
}

pre {
  overflow: auto;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-margin);
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  --bs-gutter-x: var(--grid-gutter-width);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

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

.col-1 {
  flex: 0 0 auto;
  width: 4.16666667%;
}

.col-2 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-3 {
  flex: 0 0 auto;
  width: 12.5%;
}

.col-4 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-5 {
  flex: 0 0 auto;
  width: 20.83333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 25%;
}

.col-7 {
  flex: 0 0 auto;
  width: 29.16666667%;
}

.col-8 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-9 {
  flex: 0 0 auto;
  width: 37.5%;
}

.col-10 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-11 {
  flex: 0 0 auto;
  width: 45.83333333%;
}

.col-12 {
  flex: 0 0 auto;
  width: 50%;
}

.col-13 {
  flex: 0 0 auto;
  width: 54.16666667%;
}

.col-14 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-15 {
  flex: 0 0 auto;
  width: 62.5%;
}

.col-16 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-17 {
  flex: 0 0 auto;
  width: 70.83333333%;
}

.col-18 {
  flex: 0 0 auto;
  width: 75%;
}

.col-19 {
  flex: 0 0 auto;
  width: 79.16666667%;
}

.col-20 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-21 {
  flex: 0 0 auto;
  width: 87.5%;
}

.col-22 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-23 {
  flex: 0 0 auto;
  width: 95.83333333%;
}

.col-24 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 4.16666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-5 {
    flex: 0 0 auto;
    width: 20.83333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 576px) {
  .col-sm-7 {
    flex: 0 0 auto;
    width: 29.16666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-8 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-9 {
    flex: 0 0 auto;
    width: 37.5%;
  }
}

@media (min-width: 576px) {
  .col-sm-10 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-11 {
    flex: 0 0 auto;
    width: 45.83333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 576px) {
  .col-sm-13 {
    flex: 0 0 auto;
    width: 54.16666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-14 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-15 {
    flex: 0 0 auto;
    width: 62.5%;
  }
}

@media (min-width: 576px) {
  .col-sm-16 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-17 {
    flex: 0 0 auto;
    width: 70.83333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-18 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 576px) {
  .col-sm-19 {
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-20 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-21 {
    flex: 0 0 auto;
    width: 87.5%;
  }
}

@media (min-width: 576px) {
  .col-sm-22 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-23 {
    flex: 0 0 auto;
    width: 95.83333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-24 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 4.16666667%;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 20.83333333%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-md-7 {
    flex: 0 0 auto;
    width: 29.16666667%;
  }
}

@media (min-width: 768px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 auto;
    width: 37.5%;
  }
}

@media (min-width: 768px) {
  .col-md-10 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md-11 {
    flex: 0 0 auto;
    width: 45.83333333%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-13 {
    flex: 0 0 auto;
    width: 54.16666667%;
  }
}

@media (min-width: 768px) {
  .col-md-14 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-15 {
    flex: 0 0 auto;
    width: 62.5%;
  }
}

@media (min-width: 768px) {
  .col-md-16 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md-17 {
    flex: 0 0 auto;
    width: 70.83333333%;
  }
}

@media (min-width: 768px) {
  .col-md-18 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-md-19 {
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}

@media (min-width: 768px) {
  .col-md-20 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-21 {
    flex: 0 0 auto;
    width: 87.5%;
  }
}

@media (min-width: 768px) {
  .col-md-22 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md-23 {
    flex: 0 0 auto;
    width: 95.83333333%;
  }
}

@media (min-width: 768px) {
  .col-md-24 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 4.16666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

@media (min-width: 1024px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 20.83333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 1024px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: 29.16666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: 37.5%;
  }
}

@media (min-width: 1024px) {
  .col-lg-10 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-11 {
    flex: 0 0 auto;
    width: 45.83333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-12 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .col-lg-13 {
    flex: 0 0 auto;
    width: 54.16666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-14 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-15 {
    flex: 0 0 auto;
    width: 62.5%;
  }
}

@media (min-width: 1024px) {
  .col-lg-16 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-17 {
    flex: 0 0 auto;
    width: 70.83333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-18 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .col-lg-19 {
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-20 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-21 {
    flex: 0 0 auto;
    width: 87.5%;
  }
}

@media (min-width: 1024px) {
  .col-lg-22 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-23 {
    flex: 0 0 auto;
    width: 95.83333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-24 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 4.16666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

@media (min-width: 1440px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-5 {
    flex: 0 0 auto;
    width: 20.83333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-6 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 1440px) {
  .col-xl-7 {
    flex: 0 0 auto;
    width: 29.16666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-8 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-9 {
    flex: 0 0 auto;
    width: 37.5%;
  }
}

@media (min-width: 1440px) {
  .col-xl-10 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-11 {
    flex: 0 0 auto;
    width: 45.83333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-12 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 1440px) {
  .col-xl-13 {
    flex: 0 0 auto;
    width: 54.16666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-14 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-15 {
    flex: 0 0 auto;
    width: 62.5%;
  }
}

@media (min-width: 1440px) {
  .col-xl-16 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-17 {
    flex: 0 0 auto;
    width: 70.83333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-18 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 1440px) {
  .col-xl-19 {
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-20 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-21 {
    flex: 0 0 auto;
    width: 87.5%;
  }
}

@media (min-width: 1440px) {
  .col-xl-22 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-23 {
    flex: 0 0 auto;
    width: 95.83333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-24 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 1023.98px) {
  .large-up {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .large-down {
    display: none !important;
  }
}

a,
.cta-large > a,
.cta-medium > a,
a > .cta-large,
a > .cta-medium {
  color: #8B3126;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 25%;
  text-decoration-thickness: 0.5px;
  text-decoration-skip-ink: auto;
}
a:hover,
.cta-large > a:hover,
.cta-medium > a:hover,
a > .cta-large:hover,
a > .cta-medium:hover {
  color: #8B3126;
  text-decoration: none;
  text-decoration-style: solid;
  text-underline-offset: 25%;
  text-decoration-thickness: 0.5px;
  text-decoration-skip-ink: auto;
}

ul:not(.list-unstyled) {
  list-style: none;
}
ul:not(.list-unstyled) > li {
  position: relative;
  padding-left: 30px;
}
ul:not(.list-unstyled) > li:not(:last-child) {
  margin-bottom: 0.25em;
}
ul:not(.list-unstyled) > li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url("/images/icons/Check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
ul:not(.list-unstyled):not(:first-child) {
  margin-top: 1em;
}
ul:not(.list-unstyled):not(:last-child) {
  margin-bottom: 1em;
}

p:not(:last-child) {
  margin-bottom: 10px;
}
p:empty {
  display: none;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

div.table-responsive {
  overflow: auto;
}
div.table-responsive:not(:first-child) {
  margin-top: 1em;
}
div.table-responsive:not(:last-child) {
  margin-bottom: 1em;
}

table {
  border: 1px solid #DCC1BE;
}
table tr:not(:last-child) {
  border-bottom: 1px solid #DCC1BE;
}
table tr th,
table tr td {
  white-space: nowrap;
  text-align: left;
  padding: 0.5em 0;
}

@font-face {
  font-family: "SwissTime";
  src: url("/fonts/SwissTime-Italic.woff2") format("woff2"), url("/fonts/SwissTime-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SwissTime";
  src: url("/fonts/SwissTime-Regular.woff2") format("woff2"), url("/fonts/SwissTime-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SwissNow";
  src: url("/fonts/SwissNow-SemiBold.woff2") format("woff2"), url("/fonts/SwissNow-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SwissNow";
  src: url("/fonts/SwissNow-BookItalic.woff2") format("woff2"), url("/fonts/SwissNow-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SwissNow";
  src: url("/fonts/SwissNow-Book.woff2") format("woff2"), url("/fonts/SwissNow-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SwissNow";
  src: url("/fonts/SwissNow-SemiBoldItalic.woff2") format("woff2"), url("/fonts/SwissNow-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Canora Frente";
  src: url("/fonts/Canora-Frente.woff2") format("woff2"), url("/fonts/Canora-Frente.woff") format("woff");
  font-display: swap;
}
select,
textarea,
button,
a.button,
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
input[type=url],
input[type=search],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=color],
input[type=file],
input[type=range],
input[type=submit],
input[type=reset],
input[type=button] {
  appearance: none;
  outline: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  line-height: inherit;
  text-align: inherit;
}

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

/**umb_name:h1*/
h1 {
  margin-bottom: 10px;
}
h1 a {
  color: inherit;
  text-decoration: none;
}
h1:last-child {
  margin-bottom: 0;
}
h1 {
  font-family: "Canora Frente";
  font-weight: 400;
  font-size: clamp(72px, 9.7vw, 160px);
  line-height: 1.15em;
}
@media (max-width: 1023.98px) {
  h1 {
    line-height: 1em;
  }
}

/**umb_name:.h1*/
.h1 {
  margin-bottom: 10px;
}
.h1 a {
  color: inherit;
  text-decoration: none;
}
.h1:last-child {
  margin-bottom: 0;
}
.h1 {
  font-family: "Canora Frente";
  font-weight: 400;
  font-size: clamp(72px, 9.7vw, 160px);
  line-height: 1.15em;
}
@media (max-width: 1023.98px) {
  .h1 {
    line-height: 1em;
  }
}

/**umb_name:.h1-small*/
.h1-small {
  margin-bottom: 10px;
}
.h1-small a {
  color: inherit;
  text-decoration: none;
}
.h1-small:last-child {
  margin-bottom: 0;
}
.h1-small {
  font-family: "Canora Frente";
  font-weight: 400;
  font-size: clamp(72px, 9.7vw, 160px);
  line-height: 1.15em;
}
@media (max-width: 1023.98px) {
  .h1-small {
    line-height: 1em;
  }
}
.h1-small {
  font-size: 85px;
}
@media (max-width: 1023.98px) {
  .h1-small {
    font-size: 72px;
  }
}

.story-title {
  margin-bottom: 10px;
}
.story-title a {
  color: inherit;
  text-decoration: none;
}
.story-title:last-child {
  margin-bottom: 0;
}
.story-title {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 70px;
  line-height: 1em;
  text-transform: uppercase;
  font-style: normal;
}
@media (max-width: 1023.98px) {
  .story-title {
    font-size: 32px;
  }
}

/**umb_name:h2*/
h2 {
  margin-bottom: 10px;
}
h2 a {
  color: inherit;
  text-decoration: none;
}
h2:last-child {
  margin-bottom: 0;
}
h2 {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2em;
}
h2:has(.accent) {
  line-height: 1.45em;
}
@media (max-width: 1023.98px) {
  h2 {
    font-size: 20px;
  }
}

/**umb_name:.h2*/
.h2 {
  margin-bottom: 10px;
}
.h2 a {
  color: inherit;
  text-decoration: none;
}
.h2:last-child {
  margin-bottom: 0;
}
.h2 {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2em;
}
.h2:has(.accent) {
  line-height: 1.45em;
}
@media (max-width: 1023.98px) {
  .h2 {
    font-size: 20px;
  }
}

/**umb_name:h3*/
h3 {
  margin-bottom: 10px;
}
h3 a {
  color: inherit;
  text-decoration: none;
}
h3:last-child {
  margin-bottom: 0;
}
h3 {
  font-family: "SwissNow";
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  h3 {
    font-size: 16px;
  }
}

/**umb_name:.h3*/
.h3 {
  margin-bottom: 10px;
}
.h3 a {
  color: inherit;
  text-decoration: none;
}
.h3:last-child {
  margin-bottom: 0;
}
.h3 {
  font-family: "SwissNow";
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .h3 {
    font-size: 16px;
  }
}

body h4 {
  font-weight: 400 !important;
}

/**umb_name:h4*/
h4 {
  margin-bottom: 10px;
}
h4 a {
  color: inherit;
  text-decoration: none;
}
h4:last-child {
  margin-bottom: 0;
}
h4 {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  h4 {
    font-size: 13px;
  }
}

.h4 {
  margin-bottom: 10px;
}
.h4 a {
  color: inherit;
  text-decoration: none;
}
.h4:last-child {
  margin-bottom: 0;
}
.h4 {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .h4 {
    font-size: 13px;
  }
}

/**umb_name:h5*/
h5 {
  margin-bottom: 10px;
}
h5 a {
  color: inherit;
  text-decoration: none;
}
h5:last-child {
  margin-bottom: 0;
}
h5 {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  h5 {
    font-size: 11px;
  }
}

/**umb_name:h6*/
h6, .psk-gallery .swiper-caption * {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  h6, .psk-gallery .swiper-caption * {
    font-size: 11px;
  }
}

/**umb_name:p.h6*/
p.h6 {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  p.h6 {
    font-size: 11px;
  }
}

.copy {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
}

/**umb_name:.copy-xlarge*/
p.copy-xlarge {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 30px;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  p.copy-xlarge {
    font-size: 20px;
  }
}

/**umb_name:.copy-large*/
p.copy-large {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 21px;
}
@media (max-width: 1023.98px) {
  p.copy-large {
    font-size: 18px;
  }
}

/**umb_name:.copy-medium*/
p.copy-medium {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 19px;
}
@media (max-width: 1023.98px) {
  p.copy-medium {
    font-size: 16px;
  }
}

/**umb_name:.copy-small*/
p.copy-small {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  p.copy-small {
    font-size: 14px;
  }
}

/**umb_name:.copy-xsmall*/
p.copy-xsmall {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 14px;
}
@media (max-width: 1023.98px) {
  p.copy-xsmall {
    font-size: 12px;
  }
}

/*@mixin quote {
  font-family: map-get($font-families, 1);
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5em;
  letter-spacing: 0;
  @include media-breakpoint-down(lg) {
    font-size: 19px;
  }
}

!**umb_name:.quote*!
p.quote {
  @include quote;
}*/
/**umb_name:.cta*/
.cta {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .cta {
    font-size: 11px;
  }
}

/**umb_name:.cta-large*/
.cta-large {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .cta-large {
    font-size: 11px;
  }
}
.cta-large {
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 1023.98px) {
  .cta-large {
    font-size: 14px;
  }
}

/**umb_name:.cta-medium*/
.cta-medium {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .cta-medium {
    font-size: 11px;
  }
}
.cta-medium {
  font-weight: 600;
}

/**umb_name:a.cta-copy*/
a.cta-copy {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  a.cta-copy {
    font-size: 11px;
  }
}
a.cta-copy {
  font-weight: 600;
  color: #222223;
}

.selector {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .selector {
    font-size: 11px;
  }
}
.selector {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  border-radius: 20px;
  min-height: 34px;
  padding-left: 20px;
  padding-right: 20px;
  color: #8B3126;
  border: 1px solid #DCC1BE;
  cursor: pointer;
  transition: all 450ms;
}
@media (hover: hover) {
  .selector:hover {
    border: 1px solid #B9837D;
  }
}

/**umb_name:.caps*/
.caps {
  text-transform: uppercase;
}

/**umb_name:.italic*/
.italic {
  font-style: italic;
}

/**umb_name:.sans*/
.sans {
  font-family: "SwissNow";
}

/**umb_name:.canora*/
.canora {
  font-family: "Canora Frente";
  text-transform: none;
}

h2 .canora, .h2 .canora {
  font-size: 60px;
}
@media (max-width: 1023.98px) {
  h2 .canora, .h2 .canora {
    font-size: 40px;
  }
}

/**umb_name:.accent*/
.accent {
  color: #8B3126;
}

/**umb_name:.list-unstyled*/
.list-unstyled {
  padding: 0;
}
.list-unstyled > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
.list-unstyled > li:before {
  display: none;
}

/**umb_name:.drop-cap*/
.drop-cap {
  font-family: "Canora Frente";
  font-size: 140px;
  font-weight: 400;
  line-height: 0.55em;
  letter-spacing: 0;
}

body {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  color: #222223;
}

/**umb_name:.button-primary*/
a.button-primary {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  a.button-primary {
    font-size: 11px;
  }
}
a.button-primary {
  font-weight: 600;
  text-decoration: none;
  padding: 22px 32px;
  transition: all 450ms;
  text-align: center;
  border: 1px solid #8B3126;
  background-color: #8B3126;
  color: #FDF9F3;
}
@media (hover: hover) {
  a.button-primary.hover, a.button-primary:hover {
    border-color: #622119;
    background-color: #622119;
    color: #FDF9F3;
  }
}
a.button-primary:has(img) {
  display: inline-flex;
  gap: 0.5em;
  font-weight: normal;
}
a.button-primary:has(img) img {
  max-height: 1.5em;
}
@media (max-width: 1023.98px) {
  a.button-primary {
    padding: 12px 22px;
  }
}

/**umb_name:.button-primary-rounded*/
a.button-primary-rounded {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  a.button-primary-rounded {
    font-size: 11px;
  }
}
a.button-primary-rounded {
  font-weight: 600;
  text-decoration: none;
  padding: 22px 32px;
  transition: all 450ms;
  text-align: center;
  border: 1px solid #8B3126;
  background-color: #8B3126;
  color: #FDF9F3;
}
@media (hover: hover) {
  a.button-primary-rounded.hover, a.button-primary-rounded:hover {
    border-color: #622119;
    background-color: #622119;
    color: #FDF9F3;
  }
}
a.button-primary-rounded:has(img) {
  display: inline-flex;
  gap: 0.5em;
  font-weight: normal;
}
a.button-primary-rounded:has(img) img {
  max-height: 1.5em;
}
@media (max-width: 1023.98px) {
  a.button-primary-rounded {
    padding: 12px 22px;
  }
}
a.button-primary-rounded {
  border-radius: 40px;
}

/**umb_name:.button-secondary*/
a.button-secondary {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  a.button-secondary {
    font-size: 11px;
  }
}
a.button-secondary {
  font-weight: 600;
  text-decoration: none;
  padding: 22px 32px;
  transition: all 450ms;
  text-align: center;
  border: 1px solid #8B3126;
  background-color: #8B3126;
  color: #FDF9F3;
}
@media (hover: hover) {
  a.button-secondary.hover, a.button-secondary:hover {
    border-color: #622119;
    background-color: #622119;
    color: #FDF9F3;
  }
}
a.button-secondary:has(img) {
  display: inline-flex;
  gap: 0.5em;
  font-weight: normal;
}
a.button-secondary:has(img) img {
  max-height: 1.5em;
}
@media (max-width: 1023.98px) {
  a.button-secondary {
    padding: 12px 22px;
  }
}
a.button-secondary {
  border: 1px solid #DCC1BE;
  background-color: #FDF9F3;
  color: #8B3126;
}
@media (hover: hover) {
  a.button-secondary.hover, a.button-secondary:hover {
    border: 1px solid #B9837D;
    background-color: #FDF9F3;
    color: #8B3126;
  }
}

/**umb_name:.button-secondary-rounded*/
a.button-secondary-rounded {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  a.button-secondary-rounded {
    font-size: 11px;
  }
}
a.button-secondary-rounded {
  font-weight: 600;
  text-decoration: none;
  padding: 22px 32px;
  transition: all 450ms;
  text-align: center;
  border: 1px solid #8B3126;
  background-color: #8B3126;
  color: #FDF9F3;
}
@media (hover: hover) {
  a.button-secondary-rounded.hover, a.button-secondary-rounded:hover {
    border-color: #622119;
    background-color: #622119;
    color: #FDF9F3;
  }
}
a.button-secondary-rounded:has(img) {
  display: inline-flex;
  gap: 0.5em;
  font-weight: normal;
}
a.button-secondary-rounded:has(img) img {
  max-height: 1.5em;
}
@media (max-width: 1023.98px) {
  a.button-secondary-rounded {
    padding: 12px 22px;
  }
}
a.button-secondary-rounded {
  border: 1px solid #DCC1BE;
  background-color: #FDF9F3;
  color: #8B3126;
}
@media (hover: hover) {
  a.button-secondary-rounded.hover, a.button-secondary-rounded:hover {
    border: 1px solid #B9837D;
    background-color: #FDF9F3;
    color: #8B3126;
  }
}
a.button-secondary-rounded {
  border-radius: 40px;
}

p:has(a + a) {
  display: flex;
  gap: var(--spacer);
  justify-content: center;
  align-items: center;
}

* + p:has(.cta-medium),
* + p:has(.cta-large) {
  margin-top: var(--spacer);
}

p.cta:has(+ h2) {
  margin-bottom: 0;
}

h5:has(+ h2) {
  margin-bottom: 0.5em !important;
}

.umbraco-forms-PSK {
  text-align: left;
}
.umbraco-forms-PSK fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.umbraco-forms-PSK fieldset .row .form-group:not(:last-child):not(:has(+ .umbraco-forms-navigation)) {
  margin-bottom: 20px;
}
.umbraco-forms-PSK fieldset .row .form-group .umbraco-forms-label {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .umbraco-forms-PSK fieldset .row .form-group .umbraco-forms-label {
    font-size: 11px;
  }
}
.umbraco-forms-PSK fieldset .row .form-group .umbraco-forms-label.umbraco-forms-hidden {
  display: none;
}
.umbraco-forms-PSK fieldset .row .form-group .checkboxlist {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
.umbraco-forms-PSK fieldset .row .form-group .psk-date-picker {
  background-image: url("/images/icons/Cal.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto 24px;
}
.umbraco-forms-PSK fieldset .row .form-group .form-check {
  position: relative;
  overflow: hidden;
}
.umbraco-forms-PSK fieldset .row .form-group .form-check input {
  position: absolute;
  top: -100px;
  left: -100px;
}
.umbraco-forms-PSK fieldset .row .form-group .form-check input + label {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .umbraco-forms-PSK fieldset .row .form-group .form-check input + label {
    font-size: 11px;
  }
}
.umbraco-forms-PSK fieldset .row .form-group .form-check input + label {
  display: inline-block;
  user-select: none;
  padding-left: 35px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none"><rect x="0.980469" y="0.820312" width="23" height="23" stroke="%23D1CCBE"/></svg>');
  background-position: top 0 left;
  background-repeat: no-repeat;
  background-size: 25px;
  line-height: 25px;
}
.umbraco-forms-PSK fieldset .row .form-group .form-check input:checked + label {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none"><rect x="0.980469" y="0.820312" width="23" height="23" stroke="%23D1CCBE"/><g clip-path="url(%23clip0_838_5001)"><path d="M6.98047 14.5839C7.12047 14.5139 8.91047 13.3639 11.5305 16.3039L18.0605 7.50391" stroke="%237A7A7B" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_838_5001"><rect width="12.08" height="9.8" fill="white" transform="translate(6.48047 7.00391)"/></clipPath></defs></svg>');
}
.umbraco-forms-PSK fieldset .row .form-group input:not([type=submit]):not([type=checkbox]), .umbraco-forms-PSK fieldset .row .form-group select, .umbraco-forms-PSK fieldset .row .form-group textarea {
  margin-bottom: 0;
  display: block;
  width: 100%;
  padding-block: 10px;
  border-bottom: 1px solid #DCC1BE;
}
.umbraco-forms-PSK fieldset .row .form-group input::placeholder, .umbraco-forms-PSK fieldset .row .form-group select, .umbraco-forms-PSK fieldset .row .form-group textarea::placeholder {
  color: inherit;
  margin-bottom: 0;
}
.umbraco-forms-PSK fieldset .row .form-group select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="20" viewBox="0 0 12 20" fill="none"><path d="M5.60352 4.71053L0.000619888 8.5L3.53926 4.47368L5.60352 0.210526L5.60352 4.71053Z" fill="%238B3126"/><path d="M5.60352 4.71053L11.2064 8.5L7.66774 4.71053L5.60352 0.210526L5.60352 4.71053Z" fill="%238B3126"/><path d="M5.60156 15.2895L11.2045 11.5L7.66582 15.5263L5.60156 19.7895L5.60156 15.2895Z" fill="%238B3126"/><path d="M5.60156 15.2895L-0.00133324 11.5L3.53734 15.2895L5.60156 19.7895L5.60156 15.2895Z" fill="%238B3126"/></svg>');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  line-height: inherit;
}
.umbraco-forms-PSK fieldset .row .form-group textarea {
  height: 10em;
}
.umbraco-forms-PSK fieldset .row .form-group .field-validation-error {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .umbraco-forms-PSK fieldset .row .form-group .field-validation-error {
    font-size: 11px;
  }
}
.umbraco-forms-PSK fieldset .row .form-group .field-validation-error {
  display: block;
  margin-top: 5px;
  color: #CC0000;
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation label.d-none {
  display: none;
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation {
  margin-top: 30px;
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit] {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit] {
    font-size: 11px;
  }
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit] {
  font-weight: 600;
  text-decoration: none;
  padding: 22px 32px;
  transition: all 450ms;
  text-align: center;
  border: 1px solid #8B3126;
  background-color: #8B3126;
  color: #FDF9F3;
}
@media (hover: hover) {
  .umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit].hover, .umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit]:hover {
    border-color: #622119;
    background-color: #622119;
    color: #FDF9F3;
  }
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit]:has(img) {
  display: inline-flex;
  gap: 0.5em;
  font-weight: normal;
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit]:has(img) img {
  max-height: 1.5em;
}
@media (max-width: 1023.98px) {
  .umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit] {
    padding: 12px 22px;
  }
}
.umbraco-forms-PSK fieldset .row .form-group.umbraco-forms-navigation input[type=submit] {
  border-radius: 40px;
  cursor: pointer;
}

[data-lastpass-icon-root] {
  display: none !important;
}

sup {
  vertical-align: top;
  font-size: 0.6em;
}

a:has(.media-holder) img {
  transition: transform 450ms;
}
a:has(.media-holder):hover img {
  transform: scale(1.03125);
}

/*
.media-holder {
  @include media-holder('auto');
}
*/
.swiper-button-prev,
.swiper-button-next {
  --swiper-spacer: 30px;
  top: 50%;
  width: 56px;
  height: 54px;
  margin-top: -28px;
}
@media (max-width: 1023.98px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 18px;
    height: 16px;
    margin-top: -8px;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: 26px 24px;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev.swiper-button-prev:after,
.swiper-button-next.swiper-button-prev:after {
  background-image: url(/images/icons/Prev.svg);
}
.swiper-button-prev.swiper-button-prev,
.swiper-button-next.swiper-button-prev {
  left: var(--swiper-spacer);
}
.swiper-button-prev.swiper-button-next:after,
.swiper-button-next.swiper-button-next:after {
  background-image: url(/images/icons/Next.svg);
}
.swiper-button-prev.swiper-button-next,
.swiper-button-next.swiper-button-next {
  right: var(--swiper-spacer);
}

.swiper-lazy-preloader {
  border-color: var(--accent);
  border-top-color: transparent;
}

.swiper-pagination {
  bottom: 0 !important;
  text-align: left;
  display: flex;
  justify-content: center;
  gap: 10px;
  /*@include media-breakpoint-down(lg) {
    gap: 5px;
    .swiper-pagination-bullet {
      width: 6px;
      height: 6px;
    }
  }*/
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #DCC1BE;
  border-color: #8B3126;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #8B3126;
}

.psk-gallery {
  --swiper-theme-color: white;
  --swiper-pagination-bullet-inactive-color: white;
  opacity: 0;
  transition: opacity var(--psk-gallery-transition-speed, 450ms);
  background-color: var(--psk-gallery-bg, #fff);
  color: var(--psk-gallery-fg, #212529);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--psk-gallery-z-index, 1000);
}
.psk-gallery img,
.psk-gallery video {
  object-fit: contain;
}
.psk-gallery picture {
  display: block;
}
.psk-gallery video {
  width: 100%;
  max-height: 100%;
}
.psk-gallery .video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.psk-gallery picture,
.psk-gallery .video {
  padding: var(--psk-gallery-padding, 60px);
  padding-bottom: calc(var(--psk-gallery-padding, 60px) + 20px);
}
.psk-gallery .no-swiper-caption picture,
.psk-gallery .no-swiper-caption .video {
  padding: var(--psk-gallery-padding, 60px);
}
.psk-gallery .swiper-container {
  opacity: 0;
  transition: opacity 0.3s;
}
.psk-gallery .swiper-container.swiper-initialized {
  opacity: 1;
}
.psk-gallery .swiper-slide * {
  user-select: none;
}
.psk-gallery .swiper-caption {
  position: absolute;
  inset: auto 0 40px 0;
  text-align: center;
}
.psk-gallery, .psk-gallery > div, .psk-gallery > div > div, .psk-gallery > div > div > div, .psk-gallery img, .psk-gallery picture, .psk-gallery .video, .psk-gallery-container, .psk-gallery-container > div,
.psk-gallery .swiper-container {
  width: 100%;
  height: 100%;
}
.psk-gallery-close {
  position: absolute;
  top: var(--psk-gallery-close-top, 1.5rem);
  right: var(--psk-gallery-close-right, 1.5rem);
  z-index: 2;
}
.psk-gallery.open {
  opacity: 1;
}

body.overflow-hidden {
  overflow: hidden;
}

.psk-gallery {
  --psk-gallery-padding: 4.1666666667vw;
  background-color: #FFFFFF;
}
.psk-gallery .swiper-pagination {
  display: none;
}
.psk-gallery .swiper-caption {
  bottom: 0;
  display: flex;
  height: var(--psk-gallery-padding);
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023.98px) {
  .psk-gallery .swiper-caption {
    height: calc(16px + 4 * var(--psk-gallery-padding));
    padding-inline: calc(var(--psk-gallery-padding) + 18px);
  }
}
.psk-gallery picture,
.psk-gallery .video {
  padding-bottom: var(--psk-gallery-padding, 60px);
}
@media (max-width: 1023.98px) {
  .psk-gallery picture,
  .psk-gallery .video {
    padding-bottom: calc(32px + 4 * var(--psk-gallery-padding)) !important;
  }
}
.psk-gallery .swiper-container {
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .psk-gallery .swiper-container {
    position: relative;
  }
  .psk-gallery .swiper-container:after {
    content: "";
    position: absolute;
    bottom: calc(16px + 4 * var(--psk-gallery-padding));
    left: 0;
    right: 0;
    height: 1px;
    background-color: #DCC1BE;
    z-index: 1;
  }
}
.psk-gallery .swiper-button-prev,
.psk-gallery .swiper-button-next {
  top: 50%;
  width: 26px;
  height: 24px;
  margin-top: -12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
.psk-gallery .swiper-button-prev:after,
.psk-gallery .swiper-button-next:after {
  display: none;
}
@media (max-width: 1023.98px) {
  .psk-gallery .swiper-button-prev,
  .psk-gallery .swiper-button-next {
    width: 18px;
    height: 16px;
    margin-top: -8px;
    margin-top: auto;
    top: auto;
    bottom: calc(var(--psk-gallery-padding) * 2);
  }
}
.psk-gallery .swiper-button-prev {
  left: var(--psk-gallery-padding);
  background-image: url(/images/icons/Prev.svg);
}
@media (max-width: 1023.98px) {
  .psk-gallery .swiper-button-prev {
    left: 100px;
  }
}
.psk-gallery .swiper-button-next {
  right: var(--psk-gallery-padding);
  background-image: url(/images/icons/Next.svg);
}
@media (max-width: 1023.98px) {
  .psk-gallery .swiper-button-next {
    right: 100px;
  }
}
.psk-gallery a.psk-gallery-close {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-image: url("/images/icons/Close.svg");
  width: 68px;
  height: 68px;
  top: var(--psk-gallery-padding);
  right: var(--psk-gallery-padding);
  outline: none;
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
  border: 1px solid #DCC1BE;
  border-radius: 100%;
}
@media (max-width: 1023.98px) {
  .psk-gallery a.psk-gallery-close {
    width: 32px;
    height: 32px;
    background-size: 12px;
  }
}

.reveal {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.reveal:not(.static) .media-holder > div {
  will-change: transform;
  opacity: 0;
}

main section:not(.static) > * {
  opacity: 0;
}

.to-animate .media-holder > div {
  will-change: transform;
  opacity: 0;
  transition: all 450ms;
}
.to-animate.animated .media-holder > div {
  opacity: 1;
}

.section02 > .container > .row > div:first-child, .section02 > .container > .row > div:last-child {
  text-align: center;
}
.section02 > .container > .row > div:first-child img, .section02 > .container > .row > div:last-child img {
  display: inline-block;
}
.section02 > .container > .row > div:last-child(:empty) {
  display: none;
}
@media (min-width: 1024px) {
  .section02 > .container > .row > div:first-child {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .section02 > .container > .row > div:nth-child(2) {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 45.83333333%;
  }
  .section02 > .container > .row > div:last-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 12.5%;
  }
}
@media (max-width: 1023.98px) {
  .section02 > .container > .row > div {
    margin-left: 12.5%;
    flex: 0 0 auto;
    width: 75%;
    text-align: center;
  }
  .section02 > .container > .row > div:not(:last-child):has(+ div:not(:empty)) {
    margin-bottom: var(--padding-block-reduced);
  }
}

.section03 .row > div:first-child {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 20.83333333%;
}
@media (max-width: 1023.98px) {
  .section03 .row > div:first-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-bottom: 40px;
  }
}
.section03 .row > div:last-child {
  margin-left: 8.33333333%;
  flex: 0 0 auto;
  width: 62.5%;
}
@media (max-width: 1023.98px) {
  .section03 .row > div:last-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.section03 .row > div:last-child .accordion-list {
  margin-bottom: calc(-1 * var(--spacer));
}
.section03 .row > div:last-child .accordion-list .accordion {
  margin-bottom: var(--spacer);
  border-bottom: 1px solid #DCC1BE;
}
.section03 .row > div:last-child .accordion-list .accordion .toggle {
  cursor: pointer;
  margin: 0;
  padding-bottom: var(--spacer);
}
.section03 .row > div:last-child .accordion-list .accordion .toggle span {
  display: inline-block;
  position: relative;
  padding-left: calc(30px + var(--spacer));
}
.section03 .row > div:last-child .accordion-list .accordion .toggle span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #8B3126;
  background-image: url(/images/icons/Checkbox.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 250ms;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms;
  width: 80%;
}
@media (max-width: 1023.98px) {
  .section03 .row > div:last-child .accordion-list .accordion .wrapper {
    width: 100%;
  }
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content {
  padding: 0 0 var(--spacer) calc(30px + var(--spacer));
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table {
  border: 0;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table tr {
  border-bottom: 0;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table tr td {
  vertical-align: top;
  width: 30%;
  white-space: normal;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table tr td:first-child {
  width: 70%;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table tr td:first-child p {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.section03 .row > div:last-child .accordion-list .accordion .wrapper .content table tr td:first-child p img {
  margin: -0.125em 10px 0 0;
}
.section03 .row > div:last-child .accordion-list .accordion.open .toggle span:before {
  transform: rotate(180deg);
}

.section04 .row > div {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 91.66666667%;
  text-align: center;
}
.section04 .row > div img {
  display: inline-block;
}
.section04 .row > div .tower-mark {
  filter: brightness(0) saturate(100%) invert(52%) sepia(9%) saturate(46%) hue-rotate(202deg) brightness(90%) contrast(93%);
  margin: 0 auto;
}
.section04.align-right .row > div {
  text-align: right;
}
.section04.align-left .row > div {
  text-align: left;
}

.section05 {
  padding: 0;
  padding-bottom: 1px;
}
.section05 > div.media {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.section05 > div.media .reveal {
  position: absolute;
  z-index: 1;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div {
  height: 100%;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div picture, .section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div picture img, .section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div picture video, .section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div .video-holder img, .section05 > div.media .reveal:not(:has(+ .container)) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section05 > div.media .reveal:not(:has(+ .container)) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section05 > div.media .reveal:has(+ .container) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section05 > div.media .reveal:has(+ .container) .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.section05 > div.media .reveal:has(+ .container) .media-holder > div {
  height: 100%;
}
.section05 > div.media .reveal:has(+ .container) .media-holder > div picture, .section05 > div.media .reveal:has(+ .container) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section05 > div.media .reveal:has(+ .container) .media-holder > div picture img, .section05 > div.media .reveal:has(+ .container) .media-holder > div picture video, .section05 > div.media .reveal:has(+ .container) .media-holder > div .video-holder img, .section05 > div.media .reveal:has(+ .container) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section05 > div.media .reveal:has(+ .container) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section05 > div.media .reveal:has(+ .container) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section05 > div.media .reveal:has(+ .container) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section05 > div.media .reveal:has(+ .container) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section05 > div.media .reveal:has(+ .container) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section05 > div.media .reveal:has(+ .container) .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
.section05 > div.media .container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.section05 > div.media .container .row {
  height: 100%;
  align-items: center;
}
.section05 > div.media .container .row > div {
  margin-left: 25%;
  flex: 0 0 auto;
  width: 50%;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .section05 > div.media .container .row > div {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.section05 > div.media .container .row > div * {
  color: #FDF9F3;
}
.section05 > div.media .container .row > div img {
  display: inline-block;
  height: 48vh;
  max-height: 450px;
  width: auto;
}
@media (max-width: 1023.98px) {
  .section05 > div.media .container .row > div img {
    height: 28vh;
    max-height: 250px;
  }
}
.section05 > div.caption {
  padding-top: var(--spacer);
  flex: 0 0 auto;
}
.section05 > div.caption .row > div {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 33.33333333%;
}
@media (max-width: 1023.98px) {
  .section05 > div.caption .row > div {
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}
.section05.fixed-ratio > div.media {
  height: auto;
  aspect-ratio: 1.7777777778;
}
@media (max-width: 1023.98px) {
  .section05.fixed-ratio > div.media {
    aspect-ratio: 0.5625;
  }
}
.section05.align-right > div.media .container .row > div {
  margin-left: 62.5%;
  flex: 0 0 auto;
  width: 25%;
  padding-block: var(--padding-block-standard);
}
@media (max-width: 1023.98px) {
  .section05.align-right > div.media .container .row {
    align-items: flex-start;
  }
  .section05.align-right > div.media .container .row > div {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.section05:has(.caption) {
  padding-bottom: var(--padding-block-standard);
}

.section05.unpinned {
  position: relative;
  z-index: 20;
  padding: 4.1666666667vw;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(-100%);
  margin-bottom: calc(-1 * (200px + 8.3333333333vw));
}
@media (max-width: 1023.98px) {
  .section05.unpinned {
    padding: 8.3333333333vw;
    margin-bottom: calc(-1 * (120px + 16.6666666667vw));
  }
}
.section05.unpinned .badge {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 200px;
  width: 200px;
  background-image: url(/images/icons/Book.gif);
  background-repeat: no-repeat;
  background-size: auto 60px;
  background-position: top 50px center;
  background-color: #475956;
  border-radius: 100%;
  margin-left: auto;
  transition: all 450ms;
}
@media (max-width: 1023.98px) {
  .section05.unpinned .badge {
    height: 120px;
    width: 120px;
    background-position: top 25px center;
    background-size: auto 30px;
  }
}
.section05.unpinned .badge span {
  margin-bottom: 10px;
}
.section05.unpinned .badge span a {
  color: inherit;
  text-decoration: none;
}
.section05.unpinned .badge span:last-child {
  margin-bottom: 0;
}
.section05.unpinned .badge span {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .section05.unpinned .badge span {
    font-size: 11px;
  }
}
.section05.unpinned .badge span {
  color: #FDF9F3;
  display: block;
  padding: 0 40px 50px;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .section05.unpinned .badge span {
    padding: 0 10px 30px;
  }
}
.section05.unpinned .badge:hover {
  background-image: url(/images/icons/Book-hover.gif);
  background-color: #2F3A38;
}

.section05.popup {
  position: fixed;
  z-index: 40;
  inset: auto 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms;
  padding: 4.1666666667vw;
}
.section05.popup > div {
  height: 100%;
  background-image: url(/images/icons/PopupMask.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: auto;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
}
.section05.popup > div .close {
  position: absolute;
  top: 40px;
  right: calc(4.1666666667vw + 40px);
  width: 68px;
  height: 68px;
  border: 1px solid black;
  border-radius: 100%;
  background-image: url(/images/icons/Close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(5%) saturate(560%) hue-rotate(8deg) brightness(96%) contrast(86%);
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .section05.popup > div .close {
    width: 32px;
    height: 32px;
    background-size: 14px;
    top: 20px;
    right: calc(4.1666666667vw + 20px);
  }
}
.section05.popup > div .container {
  height: 100%;
}
.section05.popup > div .container .row {
  height: 100%;
  justify-content: center;
  align-items: center;
}
.section05.popup > div .container .row > div {
  flex: 0 0 auto;
  width: 41.66666667%;
  text-align: center;
  color: #FDF9F3;
}
@media (max-width: 1023.98px) {
  .section05.popup > div .container .row > div {
    flex: 0 0 auto;
    width: 75%;
  }
}
.section05.popup > div .container .row > div .illustration {
  margin-bottom: 64px;
}
.section05.popup > div .container .row > div .illustration img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
}
@media (max-width: 1023.98px) {
  .section05.popup > div .container .row > div .illustration img {
    max-width: 220px;
  }
}
.section05.popup > div .container .row > div .badge {
  width: 140px;
  height: 48px;
  background-image: url(/images/icons/Book.gif);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto 24px;
}
@media (max-width: 1023.98px) {
  .section05.popup > div .container .row > div .badge {
    width: 78px;
    height: 27px;
  }
}
.section05.popup.open {
  pointer-events: auto;
  opacity: 1;
  background-color: #FDF9F3;
}

.section06 {
  padding-top: 0;
}
.section06 > div.media .row {
  margin-left: 12.5%;
  flex: 0 0 auto;
  width: 75%;
}
.section06 > div.media .row .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.6;
  height: auto;
}
.section06 > div.media .row .media-holder > div {
  height: 100%;
}
.section06 > div.media .row .media-holder > div picture, .section06 > div.media .row .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section06 > div.media .row .media-holder > div picture img, .section06 > div.media .row .media-holder > div picture video, .section06 > div.media .row .media-holder > div .video-holder img, .section06 > div.media .row .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section06 > div.media .row .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section06 > div.media .row .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section06 > div.media .row .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section06 > div.media .row .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section06 > div.media .row .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .section06 > div.media .row {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .section06 > div.media .row .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.5625;
    height: auto;
  }
  .section06 > div.media .row .media-holder > div {
    height: 100%;
  }
  .section06 > div.media .row .media-holder > div picture, .section06 > div.media .row .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .section06 > div.media .row .media-holder > div picture img, .section06 > div.media .row .media-holder > div picture video, .section06 > div.media .row .media-holder > div .video-holder img, .section06 > div.media .row .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section06 > div.media .row .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .section06 > div.media .row .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .section06 > div.media .row .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .section06 > div.media .row .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .section06 > div.media .row .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
}
.section06 > div.caption {
  padding-top: var(--spacer);
}
.section06 > div.caption .row > div {
  margin-left: 12.5%;
  flex: 0 0 auto;
  width: 33.33333333%;
}
@media (max-width: 1023.98px) {
  .section06 > div.caption .row > div {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 79.16666667%;
  }
}
.section06.is-scrollable {
  display: none;
}
.section06.is-scrollable .media {
  height: 90vh;
  overflow: scroll;
  display: flex;
}
.section06.is-scrollable .media::-webkit-scrollbar {
  display: none;
}
.section06.is-scrollable .media img {
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1023.98px) {
  .section06:has(+ .is-scrollable) {
    display: none;
  }
  .section06:has(+ .is-scrollable) + .is-scrollable {
    display: block;
  }
}

.section07 + .section05 {
  padding-top: 1px !important;
}
.section07 .row > div:first-child {
  margin-left: 8.33333333%;
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-block: 60px;
  gap: 60px;
}
.section07 .row > div:first-child .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section07 .row > div:first-child .media-holder > div {
  height: 100%;
}
.section07 .row > div:first-child .media-holder > div picture, .section07 .row > div:first-child .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section07 .row > div:first-child .media-holder > div picture img, .section07 .row > div:first-child .media-holder > div picture video, .section07 .row > div:first-child .media-holder > div .video-holder img, .section07 .row > div:first-child .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section07 .row > div:first-child .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section07 .row > div:first-child .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section07 .row > div:first-child .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section07 .row > div:first-child .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section07 .row > div:first-child .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .section07 .row > div:first-child {
    margin-left: 12.5%;
    flex: 0 0 auto;
    width: 75%;
  }
  .section07 .row > div:first-child .media {
    width: 50%;
    margin: 0 auto;
  }
}
.section07 .row > div:last-child {
  margin-left: 8.33333333%;
  flex: 0 0 auto;
  width: 58.33333333%;
}
@media (max-width: 1023.98px) {
  .section07 .row > div:last-child {
    margin-left: 0;
    flex: 0 0 auto;
    width: 100%;
  }
}
.section07 .row > div:last-child .reveal:has(+ p.h6) {
  height: calc(100% - 60px);
}
.section07 .row > div:last-child .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section07 .row > div:last-child .media-holder > div {
  height: 100%;
}
.section07 .row > div:last-child .media-holder > div picture, .section07 .row > div:last-child .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section07 .row > div:last-child .media-holder > div picture img, .section07 .row > div:last-child .media-holder > div picture video, .section07 .row > div:last-child .media-holder > div .video-holder img, .section07 .row > div:last-child .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section07 .row > div:last-child .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section07 .row > div:last-child .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section07 .row > div:last-child .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section07 .row > div:last-child .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section07 .row > div:last-child .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section07 .row > div:last-child .media-holder video {
  position: absolute;
  inset: 0;
}
@media (max-width: 1023.98px) {
  .section07 .row > div:last-child .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.8;
    height: auto;
  }
  .section07 .row > div:last-child .media-holder > div {
    height: 100%;
  }
  .section07 .row > div:last-child .media-holder > div picture, .section07 .row > div:last-child .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .section07 .row > div:last-child .media-holder > div picture img, .section07 .row > div:last-child .media-holder > div picture video, .section07 .row > div:last-child .media-holder > div .video-holder img, .section07 .row > div:last-child .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section07 .row > div:last-child .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .section07 .row > div:last-child .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .section07 .row > div:last-child .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .section07 .row > div:last-child .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .section07 .row > div:last-child .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
}
.section07 .row > div:last-child p.h6 {
  margin-top: var(--spacer);
}
@media (max-width: 1023.98px) {
  .section07 .row > div:last-child p.h6 {
    margin-left: 4.16666667%;
  }
}
.section07.reverse .row > div:first-child {
  flex-direction: column-reverse;
}

.section08.large-up {
  padding: 0;
  border-top: 1px solid #DCC1BE !important;
  position: relative;
}
.section08.large-up .item {
  position: absolute;
  inset: 0;
  padding: 60px 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms;
}
.section08.large-up .item .container {
  height: 100%;
}
.section08.large-up .item .container .row {
  height: 100%;
}
.section08.large-up .item .container .row > div {
  height: 100%;
}
.section08.large-up .item .container .row > div:first-child {
  margin-left: 8.33333333%;
  flex: 0 0 auto;
  width: 12.5%;
  padding-right: 1em;
}
.section08.large-up .item .container .row > div:nth-child(2) {
  flex: 0 0 auto;
  width: 29.16666667%;
  display: flex;
  flex-direction: column;
}
.section08.large-up .item .container .row > div:nth-child(2) > div {
  overflow: hidden;
  height: 40%;
}
.section08.large-up .item .container .row > div:nth-child(2) > div:first-child {
  height: 60%;
}
.section08.large-up .item .container .row > div:nth-child(3) {
  margin-left: 16.66666667%;
  flex: 0 0 auto;
  width: 29.16666667%;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder > div {
  height: 100%;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder > div picture, .section08.large-up .item .container .row > div:nth-child(3) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder > div picture img, .section08.large-up .item .container .row > div:nth-child(3) .media-holder > div picture video, .section08.large-up .item .container .row > div:nth-child(3) .media-holder > div .video-holder img, .section08.large-up .item .container .row > div:nth-child(3) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section08.large-up .item .container .row > div:nth-child(3) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section08.large-up .item .container .row > div:last-child {
  flex: 0 0 auto;
  width: 4.16666667%;
}
.section08.large-up .item .container .row > div:last-child .pagination {
  padding: 0;
}
.section08.large-up .item .container .row > div:last-child .pagination > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
.section08.large-up .item .container .row > div:last-child .pagination > li:before {
  display: none;
}
.section08.large-up .item .container .row > div:last-child .pagination {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.section08.large-up .item .container .row > div:last-child .pagination span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  border: 1px solid #DCC1BE;
  cursor: pointer;
}
.section08.large-up .item .container .row > div:last-child .pagination span.selected {
  border-color: #8B3126;
  background-color: #8B3126;
}
.section08.large-down .row > div {
  margin-left: 12.5%;
  flex: 0 0 auto;
  width: 75%;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div {
  height: 100%;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div picture, .section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div picture img, .section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div picture video, .section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div .video-holder img, .section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section08.large-down .row > div .swiper .swiper-slide .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section08.large-down .row > div .swiper .swiper-slide .reveal {
  margin-bottom: 20px;
}
.section08.large-down .row > div .swiper .swiper-slide h5 {
  margin-bottom: 0;
}
.section08.large-down .row > div .swiper .swiper-slide .model-content {
  margin-block: 30px;
}
.section08.large-down .row > div .swiper .swiper-slide .item-content {
  margin-block: 20px 51px;
}
.section08.large-down .row > div .swiper .swiper-pagination {
  text-align: center;
}

.section09 {
  padding-block: 60px;
}
.section09 .row > div {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.section09 .row > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.section09 .row > div > div > div {
  text-align: center;
  width: auto;
}
.section09 .row > div > div > div .icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
.section09 .row > div > div > div .icon.Bedroom {
  background-image: url("/images/icons/Bedroom.svg");
}
.section09 .row > div > div > div .icon.Bed {
  background-image: url("/images/icons/Bed.svg");
}
.section09 .row > div > div > div .icon.SizeSqm {
  background-image: url("/images/icons/SizeSqm.svg");
}
.section09 .row > div > div > div .icon.Bathroom {
  background-image: url("/images/icons/Bathroom.svg");
}
.section09 .row > div > div > div .icon.MaxGuests {
  background-image: url("/images/icons/Guests.svg");
}
.section09 .row > div > div > div .icon.SizeSft {
  background-image: url("/images/icons/SizeSft.svg");
}
.section09 .row > div > div > div .copy-large {
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .section09 .row > div {
    margin-left: 16.66666667%;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .section09 .row > div > div {
    gap: 0;
    row-gap: 40px;
    column-gap: 10px;
  }
  .section09 .row > div > div > div {
    width: calc(50% - 10px);
  }
}

.section10 {
  padding: 0;
}
@media (min-width: 1024px) {
  .section10 .container {
    border-top: 1px solid #DCC1BE;
  }
}
.section10 .container .row > div:first-child {
  flex: 0 0 auto;
  width: 50%;
}
@media (min-width: 1024px) {
  .section10 .container .row > div:first-child {
    border-top: 1px solid #FDF9F3;
    margin-top: -1px;
  }
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:first-child {
    flex: 0 0 auto;
    width: 100%;
  }
}
.section10 .container .row > div:first-child .pin {
  position: relative;
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:first-child .pin {
    height: 125vw !important;
  }
}
.section10 .container .row > div:first-child .pin .reveal {
  position: relative;
  z-index: 1;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder > div {
  height: 100%;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder > div picture, .section10 .container .row > div:first-child .pin .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder > div picture img, .section10 .container .row > div:first-child .pin .reveal .media-holder > div picture video, .section10 .container .row > div:first-child .pin .reveal .media-holder > div .video-holder img, .section10 .container .row > div:first-child .pin .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section10 .container .row > div:first-child .pin .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section10 .container .row > div:first-child .pin .reveal .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
.section10 .container .row > div:first-child .pin .text {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.section10 .container .row > div:first-child .pin .text > div {
  position: absolute;
  inset: 180px 12.5vw 0 4.1666666667vw;
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:first-child .pin .text > div {
    inset: auto 8.3333333333vw 16.6666666667vw;
    text-align: center;
  }
}
.section10 .container .row > div:first-child .pin .text > div * {
  color: #FDF9F3;
}
.section10 .container .row > div:first-child .pin .text > div h2 {
  line-height: 1.2em;
}
.section10 .container .row > div:last-child {
  margin-left: 8.33333333%;
  flex: 0 0 auto;
  width: 33.33333333%;
  padding-block: 180px;
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:last-child {
    flex: 0 0 auto;
    width: 83.33333333%;
    margin-left: 8.33333333%;
    padding-top: var(--padding-block-reduced);
    padding-bottom: var(--padding-block-standard);
  }
}
.section10 .container .row > div:last-child .scroller .content {
  margin-right: 8.3333333333vw;
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:last-child .scroller .content {
    margin-right: 0;
    text-align: center;
  }
}
.section10 .container .row > div:last-child .scroller .content .timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.section10 .container .row > div:last-child .scroller .content .timeline:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #8B3126;
}
.section10 .container .row > div:last-child .scroller .content .timeline span {
  background-color: #FDF9F3;
}
.section10 .container .row > div:last-child .scroller .content .timeline span:first-child {
  padding-right: 1em;
}
.section10 .container .row > div:last-child .scroller .content .timeline span:last-child {
  padding-left: 1em;
}
.section10 .container .row > div:last-child .scroller .item {
  margin-top: 60px;
  width: 20.8333333333vw;
  position: relative;
}
@media (max-width: 1023.98px) {
  .section10 .container .row > div:last-child .scroller .item {
    margin-top: var(--padding-block-standard);
    width: 45.8333333333vw;
  }
}
.section10 .container .row > div:last-child .scroller .item .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section10 .container .row > div:last-child .scroller .item .media-holder > div {
  height: 100%;
}
.section10 .container .row > div:last-child .scroller .item .media-holder > div picture, .section10 .container .row > div:last-child .scroller .item .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section10 .container .row > div:last-child .scroller .item .media-holder > div picture img, .section10 .container .row > div:last-child .scroller .item .media-holder > div picture video, .section10 .container .row > div:last-child .scroller .item .media-holder > div .video-holder img, .section10 .container .row > div:last-child .scroller .item .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section10 .container .row > div:last-child .scroller .item .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section10 .container .row > div:last-child .scroller .item .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section10 .container .row > div:last-child .scroller .item .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section10 .container .row > div:last-child .scroller .item .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section10 .container .row > div:last-child .scroller .item .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section10 .container .row > div:last-child .scroller .item a {
  text-decoration: none;
}
.section10 .container .row > div:last-child .scroller .item a:hover .cta-medium {
  color: #8B3126;
  text-decoration: none;
  text-decoration-style: solid;
  text-underline-offset: 25%;
  text-decoration-thickness: 0.5px;
  text-decoration-skip-ink: auto;
}
.section10 .container .row > div:last-child .scroller .item p {
  margin-top: 8px;
}
.section10 .container .row > div:last-child .scroller .item:nth-child(even) {
  margin-left: auto;
}
.section10 .container .row > div:last-child .scroller .item:nth-child(odd) {
  margin-right: auto;
}
.section10.reverse .container .row {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.section11 {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.section11 .item {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.section11 .item .large-media {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.section11 .item .large-media .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section11 .item .large-media .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.section11 .item .large-media .media-holder > div {
  height: 100%;
}
.section11 .item .large-media .media-holder > div picture, .section11 .item .large-media .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section11 .item .large-media .media-holder > div picture img, .section11 .item .large-media .media-holder > div picture video, .section11 .item .large-media .media-holder > div .video-holder img, .section11 .item .large-media .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section11 .item .large-media .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section11 .item .large-media .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section11 .item .large-media .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section11 .item .large-media .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section11 .item .large-media .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section11 .item .large-media .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
.section11 .item .small-media {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 4.1666666667vw;
  width: 22.9166666667vw;
  aspect-ratio: 0.75;
  transform: translateY(-50%);
}
.section11 .item .small-media .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section11 .item .small-media .media-holder > div {
  height: 100%;
}
.section11 .item .small-media .media-holder > div picture, .section11 .item .small-media .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section11 .item .small-media .media-holder > div picture img, .section11 .item .small-media .media-holder > div picture video, .section11 .item .small-media .media-holder > div .video-holder img, .section11 .item .small-media .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section11 .item .small-media .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section11 .item .small-media .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section11 .item .small-media .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section11 .item .small-media .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section11 .item .small-media .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .section11 .item .small-media {
    width: 35%;
  }
}
.section11 .item .content {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 4.1666666667vw;
  width: 25vw;
}
@media (max-width: 1023.98px) {
  .section11 .item .content {
    width: 50%;
  }
}
.section11 .item .content * {
  color: #FDF9F3;
}

.section12 {
  padding: 0;
  padding-bottom: 1px;
}
@media (max-width: 1023.98px) {
  .section12 {
    height: auto !important;
  }
  .section12 > div {
    flex-direction: column;
  }
}
.section12 > div {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 1px;
}
.section12 > div .item {
  flex: 1 1 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .section12 > div .item {
    height: auto !important;
    position: relative;
    z-index: 1;
  }
}
.section12 > div .item * {
  color: #FDF9F3;
}
.section12 > div .item .reveal {
  position: relative;
  z-index: 1;
}
.section12 > div .item .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section12 > div .item .reveal .media-holder > div {
  height: 100%;
}
.section12 > div .item .reveal .media-holder > div picture, .section12 > div .item .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section12 > div .item .reveal .media-holder > div picture img, .section12 > div .item .reveal .media-holder > div picture video, .section12 > div .item .reveal .media-holder > div .video-holder img, .section12 > div .item .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section12 > div .item .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section12 > div .item .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section12 > div .item .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section12 > div .item .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section12 > div .item .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section12 > div .item .reveal:has(+ .container) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section12 > div .item .reveal:has(+ .container) .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.section12 > div .item .reveal:has(+ .container) .media-holder > div {
  height: 100%;
}
.section12 > div .item .reveal:has(+ .container) .media-holder > div picture, .section12 > div .item .reveal:has(+ .container) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section12 > div .item .reveal:has(+ .container) .media-holder > div picture img, .section12 > div .item .reveal:has(+ .container) .media-holder > div picture video, .section12 > div .item .reveal:has(+ .container) .media-holder > div .video-holder img, .section12 > div .item .reveal:has(+ .container) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section12 > div .item .reveal:has(+ .container) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section12 > div .item .reveal:has(+ .container) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section12 > div .item .reveal:has(+ .container) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section12 > div .item .reveal:has(+ .container) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section12 > div .item .reveal:has(+ .container) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section12 > div .item .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.section12 > div .item .content .row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.section12 > div .item .content .row .pin {
  flex: 0 0 auto;
  width: 50%;
  text-align: center;
  pointer-events: auto;
}
@media (max-width: 1023.98px) {
  .section12 > div .item .content .row .pin {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.section12 > div .item .caption {
  position: absolute;
  inset: auto 4.1666666667vw 4.1666666667vw 4.1666666667vw;
  width: auto;
  z-index: 2;
}
.section12 > div .item:has(+ .item), .section12 > div .item + .item {
  z-index: 2;
}
.section12 > div .item:has(+ .item) .content .row .pin, .section12 > div .item + .item .content .row .pin {
  flex: 0 0 auto;
  width: 83.33333333%;
}
@media (max-width: 1023.98px) {
  .section12 > div .item:has(+ .item) .content .row .pin, .section12 > div .item + .item .content .row .pin {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.section12 + #footer .row:first-child {
  border-top: 0 !important;
}

.section15 {
  padding: 0;
}
.section15 .row > div {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 1023.98px) {
  .section15 .row > div {
    flex: 0 0 auto;
    width: 100%;
  }
}
.section15 .row > div:first-child {
  position: relative;
}
.section15 .row > div:first-child .reveal {
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (max-width: 1023.98px) {
  .section15 .row > div:first-child .reveal {
    position: relative;
    inset: auto;
  }
}
.section15 .row > div:first-child .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section15 .row > div:first-child .reveal .media-holder > div {
  height: 100%;
}
.section15 .row > div:first-child .reveal .media-holder > div picture, .section15 .row > div:first-child .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section15 .row > div:first-child .reveal .media-holder > div picture img, .section15 .row > div:first-child .reveal .media-holder > div picture video, .section15 .row > div:first-child .reveal .media-holder > div .video-holder img, .section15 .row > div:first-child .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section15 .row > div:first-child .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section15 .row > div:first-child .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section15 .row > div:first-child .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section15 .row > div:first-child .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section15 .row > div:first-child .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .section15 .row > div:first-child .reveal .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.8;
    height: auto;
  }
  .section15 .row > div:first-child .reveal .media-holder > div {
    height: 100%;
  }
  .section15 .row > div:first-child .reveal .media-holder > div picture, .section15 .row > div:first-child .reveal .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .section15 .row > div:first-child .reveal .media-holder > div picture img, .section15 .row > div:first-child .reveal .media-holder > div picture video, .section15 .row > div:first-child .reveal .media-holder > div .video-holder img, .section15 .row > div:first-child .reveal .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section15 .row > div:first-child .reveal .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .section15 .row > div:first-child .reveal .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .section15 .row > div:first-child .reveal .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .section15 .row > div:first-child .reveal .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .section15 .row > div:first-child .reveal .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div {
  height: 100%;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture img, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture video, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder img, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
@media (max-width: 1023.98px) {
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.8;
    height: auto;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div {
    height: 100%;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture img, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div picture video, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder img, .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
  .section15 .row > div:first-child .reveal:has(+ .media-text) .media-holder:before {
    background-color: rgba(0, 0, 0, var(--opacity));
  }
}
.section15 .row > div:first-child .media-text {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 8.3333333333vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section15 .row > div:first-child .media-text * {
  color: #FDF9F3;
}
@media (max-width: 1023.98px) {
  .section15 .row > div:last-child {
    min-height: auto !important;
  }
}
.section15 .row > div:last-child .swiper {
  height: 100%;
}
.section15 .row > div:last-child .swiper .swiper-slide > div {
  padding-inline: 4vw;
  text-align: center;
  padding-block: 68px;
}
@media (min-width: 1024px) {
  .section15 .row > div:last-child .swiper .swiper-slide > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
  }
}
@media (max-width: 1023.98px) {
  .section15 .row > div:last-child .swiper .swiper-slide > div > div:first-child {
    height: 100px;
    overflow: hidden;
  }
  .section15 .row > div:last-child .swiper .swiper-slide > div > div:last-child {
    margin-top: 68px;
  }
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div {
  max-width: 600px;
  margin: 0 auto;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center {
  position: relative;
}
@media (min-width: 1024px) {
  .section15 .row > div:last-child .swiper .swiper-slide > div > div.center {
    position: absolute;
    top: 50%;
    left: 8.3333333333vw;
    right: 8.3333333333vw;
    transform: translateY(-50%);
    max-width: none;
  }
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal {
  width: 10.4166666667vw;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal {
    width: 41.6666666667vw;
  }
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div {
  height: 100%;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div picture, .section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div picture img, .section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div picture video, .section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div .video-holder img, .section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .swiper-button-prev:after,
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .swiper-button-next:after {
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .swiper-button-prev {
  left: 0;
}
.section15 .row > div:last-child .swiper .swiper-slide > div > div.center .swiper-button-next {
  right: 0;
}
.section15 .row > div:last-child .swiper .swiper-pagination {
  padding: 30px;
}
.section15 .row > div:last-child .swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DCC1BE;
  background-color: #DCC1BE;
}
.section15 .row > div:last-child .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #8B3126;
  background-color: #8B3126;
}
@media (min-width: 1024px) {
  .section15.reverse .row {
    flex-direction: row-reverse;
  }
}

.section19 .container > .row > div:first-child {
  margin-left: 12.5%;
  flex: 0 0 auto;
  width: 16.66666667%;
}
@media (max-width: 1023.98px) {
  .section19 .container > .row > div:first-child {
    margin-left: 12.5%;
    flex: 0 0 auto;
    width: 75%;
  }
}
@media (min-width: 1024px) {
  .section19 .container > .row > div:first-child > div {
    margin-top: var(--padding-block-reduced);
  }
}
@media (max-width: 1023.98px) {
  .section19 .container > .row > div:first-child > div {
    margin-bottom: var(--padding-block-standard);
  }
  .section19 .container > .row > div:first-child > div:not(:has(*)) {
    display: none;
  }
}
.section19 .container > .row > div:first-child > div {
  text-align: center;
}
.section19 .container > .row > div:last-child {
  flex: 0 0 auto;
  width: 45.83333333%;
  margin-left: 12.5%;
}
@media (max-width: 1023.98px) {
  .section19 .container > .row > div:last-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.section19 .container > .row > div:last-child .reveal {
  height: auto;
  margin-bottom: var(--spacer);
}
.section19 .container > .row > div:last-child .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.5;
  height: auto;
}
.section19 .container > .row > div:last-child .reveal .media-holder > div {
  height: 100%;
}
.section19 .container > .row > div:last-child .reveal .media-holder > div picture, .section19 .container > .row > div:last-child .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section19 .container > .row > div:last-child .reveal .media-holder > div picture img, .section19 .container > .row > div:last-child .reveal .media-holder > div picture video, .section19 .container > .row > div:last-child .reveal .media-holder > div .video-holder img, .section19 .container > .row > div:last-child .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section19 .container > .row > div:last-child .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section19 .container > .row > div:last-child .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section19 .container > .row > div:last-child .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section19 .container > .row > div:last-child .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section19 .container > .row > div:last-child .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section19 .container > .row > div:last-child p:has(a + a) {
  justify-content: left;
  gap: 0.5em;
}
.section19 .container > .row > div:last-child .row > div {
  flex: 0 0 auto;
  width: 72.72727273%;
}
@media (max-width: 1023.98px) {
  .section19 .container > .row > div:last-child .row > div {
    flex: 0 0 auto;
    width: 100%;
  }
}
.section19.reverse .container > .row {
  flex-direction: row-reverse;
  justify-content: start;
}
@media (max-width: 1023.98px) {
  .section19.reverse .container > .row {
    flex-direction: column-reverse;
  }
  .section19.reverse .container > .row > div:first-child > div {
    margin-block: var(--padding-block-standard) 0;
  }
}

.section20 .row > div:first-child {
  margin-left: 12.5%;
  flex: 0 0 auto;
  width: 20.83333333%;
}
@media (max-width: 1023.98px) {
  .section20 .row > div:first-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.section20 .row > div:first-child .reveal {
  height: auto;
}
.section20 .row > div:first-child .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
}
.section20 .row > div:first-child .reveal .media-holder > div {
  height: 100%;
}
.section20 .row > div:first-child .reveal .media-holder > div picture, .section20 .row > div:first-child .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section20 .row > div:first-child .reveal .media-holder > div picture img, .section20 .row > div:first-child .reveal .media-holder > div picture video, .section20 .row > div:first-child .reveal .media-holder > div .video-holder img, .section20 .row > div:first-child .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section20 .row > div:first-child .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section20 .row > div:first-child .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section20 .row > div:first-child .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section20 .row > div:first-child .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section20 .row > div:first-child .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section20 .row > div:first-child p.h6 {
  margin-top: var(--spacer);
}
.section20 .row > div:last-child {
  flex: 0 0 auto;
  width: 45.83333333%;
  margin-left: 4.16666667%;
}
@media (max-width: 1023.98px) {
  .section20 .row > div:last-child {
    margin-top: var(--padding-block-reduced);
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
@media (min-width: 1024px) {
  .section20.reverse .row {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .section20.reverse .row > div:first-child {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 20.83333333%;
  }
  .section20.reverse .row > div:last-child {
    flex: 0 0 auto;
    width: 45.83333333%;
    margin-left: 12.5%;
  }
}
@media (max-width: 1023.98px) {
  .section20.reverse .row {
    flex-direction: column-reverse;
  }
  .section20.reverse .row > div:last-child {
    margin-top: 0;
    margin-bottom: var(--padding-block-reduced);
  }
}

.section21 {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100dvh;
}
@media (max-width: 1023.98px) {
  .section21 {
    height: auto !important;
  }
}
.section21 .row {
  justify-content: center;
}
.section21 .row > div {
  flex: 0 0 auto;
  width: 66.66666667%;
}
@media (max-width: 1023.98px) {
  .section21 .row > div {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.section21 .row > div {
  text-align: center;
}
.section21 .row > div .quote {
  font-family: "Canora Frente";
  line-height: 1em;
  font-size: clamp(72px, 14dvh, 140px);
}
@media (max-width: 1023.98px) {
  .section21 .row > div .quote {
    font-size: 72px;
  }
}
.section21 .row > div .quote:not(:last-child) {
  margin-bottom: 40px;
}
.section21 .row > div span {
  color: #D1CCBE;
}

.section22 {
  padding: 0;
}
.section22:has(.last .media:last-child .caption) {
  z-index: 11;
}
.section22 .row > div.first {
  flex: 0 0 auto;
  width: 58.33333333%;
}
@media (max-width: 1023.98px) {
  .section22 .row > div.first {
    flex: 0 0 auto;
    width: 87.5%;
  }
}
.section22 .row > div.first .reveal {
  height: auto;
}
.section22 .row > div.first .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section22 .row > div.first .reveal .media-holder > div {
  height: 100%;
}
.section22 .row > div.first .reveal .media-holder > div picture, .section22 .row > div.first .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section22 .row > div.first .reveal .media-holder > div picture img, .section22 .row > div.first .reveal .media-holder > div picture video, .section22 .row > div.first .reveal .media-holder > div .video-holder img, .section22 .row > div.first .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section22 .row > div.first .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section22 .row > div.first .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section22 .row > div.first .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section22 .row > div.first .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section22 .row > div.first .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section22 .row > div.first .caption {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .section22 .row > div.first .caption {
    font-size: 11px;
  }
}
.section22 .row > div.first .caption {
  height: 40px;
  line-height: 40px;
  margin: 0 0 0 4.1666666667vw;
  padding: 0;
}
.section22 .row > div.last {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 25%;
}
@media (max-width: 1023.98px) {
  .section22 .row > div.last {
    flex: 0 0 auto;
    width: 54.16666667%;
    margin-left: 45.83333333%;
    padding-top: var(--padding-block-reduced);
  }
}
.section22 .row > div.last .scroller .secondary-medias {
  position: relative;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder > div {
  height: 100%;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder > div picture, .section22 .row > div.last .scroller .secondary-medias .media .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder > div picture img, .section22 .row > div.last .scroller .secondary-medias .media .media-holder > div picture video, .section22 .row > div.last .scroller .secondary-medias .media .media-holder > div .video-holder img, .section22 .row > div.last .scroller .secondary-medias .media .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section22 .row > div.last .scroller .secondary-medias .media .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section22 .row > div.last .scroller .secondary-medias .media .caption {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .section22 .row > div.last .scroller .secondary-medias .media .caption {
    font-size: 11px;
  }
}
.section22 .row > div.last .scroller .secondary-medias .media .caption {
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
@media (max-width: 1023.98px) {
  .section22 .row > div.last .scroller .secondary-medias .media .caption {
    margin-left: 4.1666666667vw;
  }
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child {
  position: relative;
  z-index: 2;
  opacity: 1;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div {
  height: 100%;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div picture, .section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div picture img, .section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div picture video, .section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div .video-holder img, .section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section22 .row > div.last .scroller .secondary-medias .media:first-child .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  opacity: 0;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div {
  height: 100%;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div picture, .section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div picture img, .section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div picture video, .section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div .video-holder img, .section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section22 .row > div.last .scroller .secondary-medias .media:last-child .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}

.section23 .row > div:first-child {
  flex: 0 0 auto;
  width: 25%;
  margin-left: 8.33333333%;
  padding-top: 20lvw;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .section23 .row > div:first-child {
    flex: 0 0 auto;
    width: 75%;
    margin-left: 12.5%;
    padding-top: 0;
    margin-bottom: var(--padding-block-reduced);
  }
  .section23 .row > div:first-child:empty {
    display: none;
  }
}
.section23 .row > div:last-child {
  flex: 0 0 auto;
  width: 58.33333333%;
  margin-left: 8.33333333%;
}
@media (max-width: 1023.98px) {
  .section23 .row > div:last-child {
    flex: 0 0 auto;
    width: 87.5%;
    margin-left: 0;
  }
}
.section23 .row > div:last-child .reveal {
  height: auto;
}
.section23 .row > div:last-child .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.section23 .row > div:last-child .reveal .media-holder > div {
  height: 100%;
}
.section23 .row > div:last-child .reveal .media-holder > div picture, .section23 .row > div:last-child .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.section23 .row > div:last-child .reveal .media-holder > div picture img, .section23 .row > div:last-child .reveal .media-holder > div picture video, .section23 .row > div:last-child .reveal .media-holder > div .video-holder img, .section23 .row > div:last-child .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section23 .row > div:last-child .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.section23 .row > div:last-child .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.section23 .row > div:last-child .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.section23 .row > div:last-child .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.section23 .row > div:last-child .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.section23 .row > div:last-child .caption {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .section23 .row > div:last-child .caption {
    font-size: 11px;
  }
}
.section23 .row > div:last-child .caption {
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  .section23 .row > div:last-child .caption {
    margin-left: 4.1666666667vw;
  }
}

.section24 .row > div:first-child {
  flex: 0 0 auto;
  width: 50%;
  margin-left: 25%;
}
.section24 .row > div:first-child:not(:last-child) {
  flex: 0 0 auto;
  width: 45.83333333%;
  margin-left: 12.5%;
}
.section24 .row > div:last-child:not(:first-child) {
  flex: 0 0 auto;
  width: 12.5%;
  margin-left: 16.66666667%;
}
@media (max-width: 1023.98px) {
  .section24 .row > div:last-child:not(:first-child) {
    margin-top: var(--spacer);
  }
}
@media (max-width: 1023.98px) {
  .section24 .row > div:first-child, .section24 .row > div:first-child:not(:last-child), .section24 .row > div:last-child:not(:first-child) {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 4.16666667%;
  }
}

body {
  background-color: #FDF9F3;
}
body#tinymce {
  background-color: transparent;
}
body.book-a-table-is-visible, body.menu-is-visible, body.lock {
  overflow: hidden;
}

main {
  position: relative;
  pointer-events: all;
}
main section {
  position: relative;
  z-index: 10;
}
body.type--towerrevuetagpage main, body.type--towerrevue main, body.type--story main, body.type--package main, body.type--eatanddrink main, body.type--accommodation main, body.type--page main {
  padding-top: 70px;
}
@media (max-width: 1023.98px) {
  body.type--towerrevuetagpage main, body.type--towerrevue main, body.type--story main, body.type--package main, body.type--eatanddrink main, body.type--accommodation main, body.type--page main {
    padding-top: 60px;
  }
}

#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 70px;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 0 rgba(253, 249, 243, 0.4);
  transition: background-color 450ms;
}
@media (max-width: 1023.98px) {
  #topbar {
    height: 60px;
  }
}
#topbar .container {
  height: 100%;
}
#topbar .container .row {
  height: 100%;
}
#topbar .container .row > div {
  height: 100%;
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 95.83333333%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#topbar .container .row > div > div {
  display: flex;
  gap: 40px;
  height: 100%;
  align-items: center;
}
#topbar .container .row > div > div .button-primary {
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#topbar .menu {
  cursor: pointer;
}
#topbar .menu span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: 29px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/icons/Menu.svg);
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
}
#topbar .switcher {
  position: relative;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1023.98px) {
  #topbar .switcher {
    display: none;
  }
}
#topbar .switcher > .toggler span {
  color: #222223;
  background-color: transparent;
  border-color: transparent;
}
#topbar .switcher > .toggler span:before {
  filter: brightness(0) saturate(100%) invert(6%) sepia(89%) saturate(36%) hue-rotate(202deg) brightness(89%) contrast(83%);
}
#topbar .switcher > .toggler span.winter {
  padding-left: 25px;
  padding-right: 0;
}
#topbar .switcher > .toggler span.winter:before {
  left: 0;
}
#topbar .switcher > .toggler span.summer {
  padding-right: 25px;
  padding-left: 0;
}
#topbar .switcher > .toggler span.summer:before {
  right: 0;
}
#topbar .switcher > .toggler span:not(.current) {
  display: none;
}
#topbar .switcher > div {
  top: 24px;
  padding-block: 28px 18px;
}
#topbar .switcher > div:before {
  background-image: url(/images/icons/SwitcherNose.png);
  transform: rotate(180deg);
  height: 28px;
}
#topbar .switcher > div:after {
  background-image: url(/images/icons/SwitcherEars.png);
  transform: rotate(180deg);
  height: 18px;
}
#topbar .switcher > div > div {
  padding-block: 30px 38px;
}
#topbar .switcher > div > div .toggler {
  height: 30px;
  margin-top: var(--spacer);
  display: inline-block;
}
#topbar .switcher > div > div .toggler span {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #topbar .switcher > div > div .toggler span {
    font-size: 11px;
  }
}
#topbar .switcher > div > div .toggler span {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  border-radius: 20px;
  min-height: 34px;
  padding-left: 20px;
  padding-right: 20px;
  color: #8B3126;
  border: 1px solid #DCC1BE;
  cursor: pointer;
  transition: all 450ms;
}
@media (hover: hover) {
  #topbar .switcher > div > div .toggler span:hover {
    border: 1px solid #B9837D;
  }
}
#topbar .switcher > div > div .toggler span {
  background-color: transparent;
}
#topbar .switcher > div > div .toggler span.winter {
  padding-left: 35px;
}
#topbar .switcher > div > div .toggler span.summer {
  padding-right: 35px;
}
#topbar .switcher > div > div .toggler span:before {
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
#topbar .logo {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 235px;
  height: 62px;
  display: block;
  background-size: auto 62px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/icons/LogoSmall.svg);
  filter: brightness(0) saturate(100%) invert(6%) sepia(89%) saturate(36%) hue-rotate(202deg) brightness(89%) contrast(83%);
  transition: opacity 450ms;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}
@media (max-width: 1023.98px) {
  #topbar .logo {
    width: 148px;
    height: 23px;
    background-size: auto 44px;
  }
}
#topbar ul {
  padding: 0;
}
#topbar ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#topbar ul > li:before {
  display: none;
}
#topbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--spacer);
}
#topbar ul li.selected {
  display: none;
}
#topbar ul li a {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #topbar ul li a {
    font-size: 11px;
  }
}
#topbar ul li a {
  text-decoration: none;
  color: #FDF9F3;
}
@media (max-width: 1023.98px) {
  #topbar ul li a {
    display: block;
    position: absolute;
    left: calc(4.1666666667vw + 60px);
    top: 50%;
    transform: translateY(-50%);
  }
}
body.menu-is-visible #topbar .menu span {
  background-image: url(/images/icons/Close.svg);
}
body.menu-is-visible #topbar, body.sticky #topbar, body.type--towerrevue #topbar, body.type--story #topbar, body.type--towerrevuetagpage #topbar, body.type--package #topbar, body.type--eatanddrink #topbar, body.type--accommodation #topbar, body.type--page #topbar {
  box-shadow: inset 0 -1px 0 0 #DCC1BE;
}
body.menu-is-visible #topbar .switcher, body.sticky #topbar .switcher, body.type--towerrevue #topbar .switcher, body.type--story #topbar .switcher, body.type--towerrevuetagpage #topbar .switcher, body.type--package #topbar .switcher, body.type--eatanddrink #topbar .switcher, body.type--accommodation #topbar .switcher, body.type--page #topbar .switcher {
  opacity: 1;
  pointer-events: auto;
}
body.menu-is-visible #topbar, body.sticky #topbar, body.type--towerrevue #topbar, body.type--story #topbar, body.type--package #topbar, body.type--towerrevuetagpage #topbar, body.type--eatanddrink #topbar, body.type--accommodation #topbar, body.type--page #topbar {
  background-color: #FDF9F3;
}
body.menu-is-visible #topbar .menu span, body.sticky #topbar .menu span, body.type--towerrevue #topbar .menu span, body.type--story #topbar .menu span, body.type--package #topbar .menu span, body.type--towerrevuetagpage #topbar .menu span, body.type--eatanddrink #topbar .menu span, body.type--accommodation #topbar .menu span, body.type--page #topbar .menu span {
  filter: brightness(0) saturate(100%) invert(6%) sepia(89%) saturate(36%) hue-rotate(202deg) brightness(89%) contrast(83%);
}
body.menu-is-visible #topbar .logo, body.sticky #topbar .logo, body.type--towerrevue #topbar .logo, body.type--story #topbar .logo, body.type--package #topbar .logo, body.type--towerrevuetagpage #topbar .logo, body.type--eatanddrink #topbar .logo, body.type--accommodation #topbar .logo, body.type--page #topbar .logo {
  opacity: 1;
  pointer-events: auto;
}
body.menu-is-visible #topbar ul li a, body.sticky #topbar ul li a, body.type--towerrevue #topbar ul li a, body.type--story #topbar ul li a, body.type--package #topbar ul li a, body.type--towerrevuetagpage #topbar ul li a, body.type--eatanddrink #topbar ul li a, body.type--accommodation #topbar ul li a, body.type--page #topbar ul li a {
  color: #222223;
}

#season-hero {
  position: relative;
  height: 100dvh;
  padding: 0;
}
#season-hero .reveal {
  position: relative;
  z-index: 1;
}
#season-hero .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#season-hero .reveal .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
#season-hero .reveal .media-holder > div {
  height: 100%;
}
#season-hero .reveal .media-holder > div picture, #season-hero .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#season-hero .reveal .media-holder > div picture img, #season-hero .reveal .media-holder > div picture video, #season-hero .reveal .media-holder > div .video-holder img, #season-hero .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#season-hero .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
#season-hero .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
#season-hero .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
#season-hero .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
#season-hero .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
#season-hero .reveal .media-holder:before {
  background-color: rgba(0, 0, 0, 0.1);
}
#season-hero .logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#season-hero .logo img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
  height: 80%;
  max-height: 600px;
  width: auto;
}
@media (max-width: 1023.98px) {
  #season-hero .logo img {
    height: 50%;
    max-height: 450px;
  }
}
#season-hero .switcher {
  position: absolute;
  border: 1px solid rgba(253, 249, 243, 0.4);
  padding: 1px;
  border-radius: 20px;
  z-index: 3;
  bottom: 4.1666666667vw;
  left: 4.1666666667vw;
}
@media (max-width: 1023.98px) {
  #season-hero .switcher {
    left: 50%;
    transform: translateX(-50%);
    bottom: 160px;
  }
}
#season-hero .switcher > .toggler {
  display: flex;
}
#season-hero .switcher > .toggler span.current {
  color: #8B3126;
  background-color: #FDF9F3;
}
#season-hero .switcher > .toggler span.current:before {
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
#season-hero .switcher > .toggler span:not(.current) {
  color: #FDF9F3;
  background-color: transparent;
  border-color: transparent;
}
#season-hero .switcher > .toggler span:not(.current):before {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
}
#season-hero .switcher > div {
  bottom: 38px;
  padding-block: 18px 28px;
}
@media (max-width: 1023.98px) {
  #season-hero .switcher > div {
    display: none;
  }
}
#season-hero .switcher > div:before {
  background-image: url(/images/icons/SwitcherEars.png);
  height: 18px;
}
#season-hero .switcher > div:after {
  background-image: url(/images/icons/SwitcherNose.png);
  height: 28px;
}
#season-hero .switcher > div > div {
  padding-block: 38px 30px;
}
#season-hero .switcher > div > div h5 {
  margin-bottom: 0;
}
#season-hero .switcher > div > div p:has(.toggler) {
  display: none;
}

.switcher .toggler {
  pointer-events: none;
  text-decoration: none;
}
.switcher .toggler span {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .switcher .toggler span {
    font-size: 11px;
  }
}
.switcher .toggler span {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  border-radius: 20px;
  min-height: 34px;
  padding-left: 20px;
  padding-right: 20px;
  color: #8B3126;
  border: 1px solid #DCC1BE;
  cursor: pointer;
  transition: all 450ms;
}
@media (hover: hover) {
  .switcher .toggler span:hover {
    border: 1px solid #B9837D;
  }
}
.switcher .toggler span:before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.switcher .toggler span:not(.current) {
  pointer-events: auto;
}
.switcher .toggler span.winter {
  padding-left: 35px;
}
.switcher .toggler span.winter:before {
  background-image: url(/images/icons/Winter.svg);
  left: 10px;
}
.switcher .toggler span.summer {
  padding-right: 35px;
}
.switcher .toggler span.summer:before {
  background-image: url(/images/icons/Summer.svg);
  right: 10px;
}
.switcher > div {
  position: absolute;
  width: 300px;
  left: 50%;
  opacity: 0;
  text-align: center;
  transform: translateX(-50%);
  transition: all 450ms;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
}
.switcher > div:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.switcher > div:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.switcher > div, .switcher > div * {
  pointer-events: none !important;
}
.switcher > div > div {
  background-color: #FDF9F3;
}
.switcher:hover > div {
  transform: translateY(0) translateX(-50%) !important;
  opacity: 1;
}
.switcher:hover > div, .switcher:hover > div * {
  pointer-events: auto !important;
}

#panel-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background-color: #FDF9F3;
  margin: 70px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms;
  overflow: auto;
}
#panel-menu::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1023.98px) {
  #panel-menu {
    margin: var(--padding-block-reduced) 0 0;
  }
}
#panel-menu > div {
  background-color: #DCC1BE;
  display: grid;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  min-height: 100%;
}
@media (max-width: 1023.98px) {
  #panel-menu > div {
    display: flex;
    flex-direction: column;
  }
}
#panel-menu > div > div {
  background-color: #FDF9F3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1vh 4.1666666667vw;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div {
    padding: var(--padding-block-reduced) 8.3333333333vw;
  }
  #panel-menu > div > div.large-down {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 0;
  }
  #panel-menu > div > div.large-down:before {
    content: "";
    top: 0;
    left: 50%;
    position: absolute;
    bottom: 0;
    background-color: #DCC1BE;
    width: 1px;
  }
  #panel-menu > div > div.large-down > div {
    width: 50%;
    text-align: center;
    padding: 30px 8.3333333333vw;
  }
  #panel-menu > div > div.large-down > div .toggler {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
  }
  #panel-menu > div > div.large-down > div .toggler span {
    font-family: "SwissNow";
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.7em;
    display: inline-block;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    border-radius: 20px;
    min-height: 34px;
    padding-left: 20px;
    padding-right: 20px;
    color: #8B3126;
    border: 1px solid #DCC1BE;
    cursor: pointer;
    transition: all 450ms;
    position: relative;
    text-decoration: none;
    color: #222223;
  }
}
@media (max-width: 1023.98px) and (max-width: 1023.98px) {
  #panel-menu > div > div.large-down > div .toggler span {
    font-size: 11px;
  }
}
@media (max-width: 1023.98px) and (hover: hover) {
  #panel-menu > div > div.large-down > div .toggler span:hover {
    border: 1px solid #B9837D;
  }
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.large-down > div .toggler span:before {
    content: "";
    width: 17px;
    height: 17px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
  }
  #panel-menu > div > div.large-down > div .toggler span.winter {
    padding-left: 35px;
  }
  #panel-menu > div > div.large-down > div .toggler span.winter:before {
    background-image: url(/images/icons/Winter.svg);
    left: 10px;
  }
  #panel-menu > div > div.large-down > div .toggler span.summer {
    padding-right: 35px;
  }
  #panel-menu > div > div.large-down > div .toggler span.summer:before {
    background-image: url(/images/icons/Summer.svg);
    right: 10px;
  }
  #panel-menu > div > div.large-down > div .toggler span.selected {
    border: 0;
  }
  #panel-menu > div > div.large-down > div .toggler span.unselected {
    color: #8B3126;
  }
  #panel-menu > div > div.large-down > div .toggler span.unselected:before {
    filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
  }
  #panel-menu > div > div.large-down > div .toggler span.hidden {
    display: none;
  }
}
#panel-menu > div > div * {
  margin-bottom: 0;
}
#panel-menu > div > div.div2, #panel-menu > div > div.div3, #panel-menu > div > div.div4, #panel-menu > div > div.div5 {
  text-align: center;
  align-items: center;
}
#panel-menu > div > div.div1 {
  grid-area: 1/1/5/3;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div1 {
    grid-area: 1/1/2/3;
    padding-top: 30px;
  }
}
#panel-menu > div > div.div1 ul li {
  padding-left: 22px;
  transition: padding-left 450ms;
}
#panel-menu > div > div.div1 ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/images/icons/MenuIcon.svg);
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
#panel-menu > div > div.div1 ul li:hover {
  padding-left: 30px;
}
#panel-menu > div > div.div1 ul li:not(:last-child) {
  margin-bottom: 10px;
}
#panel-menu > div > div.div1 ul li a {
  margin-bottom: 10px;
}
#panel-menu > div > div.div1 ul li a a {
  color: inherit;
  text-decoration: none;
}
#panel-menu > div > div.div1 ul li a:last-child {
  margin-bottom: 0;
}
#panel-menu > div > div.div1 ul li a {
  font-family: "SwissTime";
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2em;
}
#panel-menu > div > div.div1 ul li a:has(.accent) {
  line-height: 1.45em;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div1 ul li a {
    font-size: 20px;
  }
}
#panel-menu > div > div.div1 ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #8B3126;
}
#panel-menu > div > div.div2 {
  grid-area: 1/3/2/4;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div2 {
    grid-area: 2/1/3/2;
  }
}
#panel-menu > div > div.div2 ul {
  padding: 0;
}
#panel-menu > div > div.div2 ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#panel-menu > div > div.div2 ul > li:before {
  display: none;
}
#panel-menu > div > div.div2 ul li {
  display: flex;
  justify-content: center;
}
#panel-menu > div > div.div2 ul li a {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div2 ul li a {
    font-size: 11px;
  }
}
#panel-menu > div > div.div2 ul li a {
  font-weight: 600;
}
#panel-menu > div > div.div3 {
  grid-area: 2/3/3/4;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div3 {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div {
    padding-block: 30px;
  }
}
#panel-menu > div > div.div4 {
  grid-area: 1/4/3/5;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div4 {
    grid-area: 3/1/4/3;
  }
}
#panel-menu > div > div.div5 {
  grid-area: 3/3/5/4;
}
#panel-menu > div > div.div5 p:first-child {
  margin-bottom: var(--spacer);
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div5 {
    grid-area: 4/1/5/3;
  }
}
#panel-menu > div > div.div6 {
  grid-area: 3/4/4/5;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.div6 {
    grid-area: 5/1/6/2;
    text-align: center;
    align-items: center;
  }
}
#panel-menu > div > div.large-down, #panel-menu > div > div.div7 {
  grid-area: 4/4/5/5;
}
#panel-menu > div > div.large-down ul, #panel-menu > div > div.div7 ul {
  padding: 0;
}
#panel-menu > div > div.large-down ul > li, #panel-menu > div > div.div7 ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#panel-menu > div > div.large-down ul > li:before, #panel-menu > div > div.div7 ul > li:before {
  display: none;
}
#panel-menu > div > div.large-down ul li, #panel-menu > div > div.div7 ul li {
  display: flex;
}
#panel-menu > div > div.large-down ul li a, #panel-menu > div > div.div7 ul li a {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.large-down ul li a, #panel-menu > div > div.div7 ul li a {
    font-size: 11px;
  }
}
#panel-menu > div > div.large-down ul li a, #panel-menu > div > div.div7 ul li a {
  font-weight: 600;
}
@media (max-width: 1023.98px) {
  #panel-menu > div > div.large-down, #panel-menu > div > div.div7 {
    grid-area: 5/2/6/3;
  }
  #panel-menu > div > div.large-down ul, #panel-menu > div > div.div7 ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacer);
  }
  #panel-menu > div > div.large-down ul li, #panel-menu > div > div.div7 ul li {
    justify-content: center;
  }
}
body.menu-is-visible #panel-menu {
  opacity: 1;
  pointer-events: auto;
}

#subnav {
  position: relative;
  z-index: 30;
}
@media (max-width: 1023.98px) {
  #subnav {
    visibility: hidden;
  }
}
#subnav .container {
  background-color: #FDF9F3;
}
#subnav .row {
  padding-block: 14px;
}
@media (min-width: 1024px) {
  #subnav .row {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
    padding-block: 23px;
  }
}
#subnav .row:has(a[style]) ul a[style] {
  padding-top: var(--icon-offset);
}
#subnav .row:has(a[style]) ul a[style]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 35px;
  width: 35px;
  background-image: var(--background);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 450ms;
}
@media (max-width: 1023.98px) {
  #subnav .row:has(a[style]) ul a[style]:before {
    height: 28px;
    width: 28px;
  }
}
#subnav .row .page-name {
  visibility: hidden;
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #subnav .row .page-name {
    font-size: 11px;
  }
}
#subnav .row .page-name {
  position: absolute;
  top: calc(50% + 0.5 * var(--icon-offset));
  transform: translateY(-50%);
  color: #8B3126;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 30%;
  line-height: 1.3em;
}
@media (max-width: 1023.98px) {
  #subnav .row .page-name {
    max-width: none;
    width: 100%;
    text-align: center;
  }
  #subnav .row .page-name + ul {
    transition: opacity 0.3s ease;
  }
}
body.show-page-name #subnav .row .page-name {
  visibility: visible;
}
body.show-page-name #subnav .row .page-name.is-visible {
  opacity: 1;
}
@media (max-width: 1023.98px) {
  body.show-page-name #subnav .row .page-name.is-visible + ul {
    opacity: 0;
    pointer-events: none;
  }
}
#subnav .row ul {
  padding: 0;
}
#subnav .row ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#subnav .row ul > li:before {
  display: none;
}
#subnav .row ul {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: baseline;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  #subnav .row ul {
    width: auto;
    gap: 6.25vw;
    padding-inline: 6.25vw;
    margin: 0 auto;
  }
  #subnav .row ul.is-overflow {
    justify-content: left;
    overflow: auto;
  }
  #subnav .row ul.is-overflow::-webkit-scrollbar {
    display: none;
  }
}
#subnav .row ul a {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 13px;
  line-height: 1.1em;
  letter-spacing: 0.02em;
  text-decoration: none;
}
@media (max-width: 1023.98px) {
  #subnav .row ul a {
    font-size: 12px;
  }
}
#subnav .row ul a {
  position: relative;
  display: block;
  white-space: nowrap;
}
#subnav .row ul li.selected a {
  font-weight: 600;
}
#subnav.sticky .row:has(a[style]) ul a[style]:before {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}
body.type--season #subnav {
  display: none;
}

#footer {
  background-color: #F1ECDF;
  position: relative;
  z-index: 20;
}
#footer .row {
  padding-block: var(--padding-block-standard);
}
@media (max-width: 1023.98px) {
  #footer .row {
    padding-block: var(--padding-block-reduced);
  }
}
#footer .row > div ul {
  padding: 0;
}
#footer .row > div ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#footer .row > div ul > li:before {
  display: none;
}
#footer .row > div *:not([class*=button-]) {
  color: #7A7A7B;
}
#footer .row > div p:has([class*=button-]) {
  margin-top: var(--spacer);
}
#footer .row > div a.button-primary-rounded {
  border-color: #7A7A7B;
  background-color: transparent;
  color: #222223;
  background-image: url(/images/icons/register.svg);
  background-position: center left 32px;
  background-repeat: no-repeat;
  padding-left: 66px;
  font-weight: 400;
}
@media (max-width: 1023.98px) {
  #footer .row > div a.button-primary-rounded {
    background-position: center left 22px;
    padding-left: 56px;
  }
}
#footer .row:first-child {
  background-color: #FDF9F3;
  padding-block: var(--padding-block-reduced);
}
body:not(.type--towerrevuetagpage):not(.type--towerrevue):not(.type--story) #footer .row:first-child {
  border-top: 1px solid #DCC1BE;
}
#footer .row:first-child > div {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 91.66666667%;
}
#footer .row:first-child > div ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacer);
  justify-content: space-between;
}
@media (max-width: 1023.98px) {
  #footer .row:first-child > div ul {
    justify-content: center;
    row-gap: 30px;
    column-gap: 25px;
  }
}
#footer .row:first-child > div ul a {
  display: block;
}
#footer .row:first-child > div ul img {
  max-width: 140px;
  max-height: 90px;
}
@media (max-width: 1023.98px) {
  #footer .row:first-child > div ul img {
    max-width: 100px;
    max-height: 60px;
  }
}
#footer .row:nth-child(2) > div {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 91.66666667%;
  text-align: center;
}
#footer .row:nth-child(2) > div p.h1 {
  font-size: 85px;
  color: #7A7A7B;
  margin-bottom: 0.25em;
}
@media (max-width: 1023.98px) {
  #footer .row:nth-child(2) > div p.h1 {
    font-size: 48px;
  }
}
#footer .row:last-child {
  border-top: 1px solid #FDF9F3;
}
#footer .row:last-child > div:first-child {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 25%;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:first-child {
    order: 1;
    flex: 0 0 auto;
    width: 45.83333333%;
  }
}
#footer .row:last-child > div:first-child ul li {
  display: flex;
}
#footer .row:last-child > div:first-child ul li a {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:first-child ul li a {
    font-size: 11px;
  }
}
#footer .row:last-child > div:first-child ul li a {
  font-weight: 600;
}
#footer .row:last-child > div:nth-child(2) {
  flex: 0 0 auto;
  width: 41.66666667%;
  text-align: center;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:nth-child(2) {
    order: 3;
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-block: var(--padding-block-reduced) 30px;
  }
}
#footer .row:last-child > div:nth-child(2) ul {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
#footer .row:last-child > div:nth-child(3) {
  flex: 0 0 auto;
  width: 25%;
  text-align: center;
}
#footer .row:last-child > div:nth-child(3) p {
  margin-top: 0;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:nth-child(3) {
    order: 2;
    flex: 0 0 auto;
    width: 45.83333333%;
    text-align: right;
  }
}
#footer .row:last-child > div:nth-child(4) {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 91.66666667%;
  text-align: center;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:nth-child(4) {
    order: 4;
  }
}
#footer .row:last-child > div:last-child {
  margin-top: 60px;
  margin-left: 29.16666667%;
  flex: 0 0 auto;
  width: 41.66666667%;
  text-align: center;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:last-child {
    order: 5;
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
#footer .row:last-child > div:last-child .partners ul {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#footer .row:last-child > div:last-child .legal-pages {
  margin-block: 30px;
}
#footer .row:last-child > div:last-child .legal-pages ul {
  display: flex;
  gap: var(--spacer);
  justify-content: center;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:last-child .legal-pages ul {
    flex-wrap: wrap;
    gap: calc(0.5 * var(--spacer));
  }
}
#footer .row:last-child > div:last-child .legal-pages ul a {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  #footer .row:last-child > div:last-child .legal-pages ul a {
    font-size: 11px;
  }
}

section:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #FDF9F3;
}
body.type--towerrevuetagpage section:before, body.type--towerrevue section:before, body.type--story section:before {
  background-color: #F1ECDF;
}
section.next-to-send-to-back {
  border-top: 1px solid #FDF9F3;
}
section.border-top {
  border-top: 1px solid #DCC1BE;
}
section.border-bottom {
  border-bottom: 1px solid #DCC1BE;
}
section.border-top-and-bottom {
  border-top: 1px solid #DCC1BE;
  border-bottom: 1px solid #DCC1BE;
}
section, section.padding-block-standard {
  padding-block: var(--padding-block-standard);
}
section.padding-block-reduced {
  padding-block: var(--padding-block-reduced);
}
section.padding-block-small {
  padding-block: var(--padding-block-small);
}
section.padding-block-none {
  padding-block: 0;
}
section.no-padding-bottom {
  padding-bottom: 0;
}
section.border-bottom:has(+ .next-to-send-to-back), section.border-top-and-bottom:has(+ .next-to-send-to-back) {
  border-top: 0;
}

#panel-book-a-table {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  pointer-events: none;
  top: 100dvh;
  height: 80dvh;
}
@media (min-width: 1024px) {
  #panel-book-a-table {
    transition: all 450ms;
  }
}
#panel-book-a-table::-webkit-scrollbar {
  display: none;
}
#panel-book-a-table:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 450ms;
}
#panel-book-a-table > div {
  position: relative;
  z-index: 20;
  left: 50%;
  width: 91.6666666667vw;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
  transform: translateX(-50%);
  background-color: #FDF9F3;
}
@media (max-width: 1023.98px) {
  #panel-book-a-table > div {
    width: 100%;
  }
}
#panel-book-a-table > div .flag {
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
  top: -48px;
  line-height: 50px;
  height: 50px;
  border-top: 1px solid #DCC1BE;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background-color: #FDF9F3;
  padding: 0 60px 0 90px;
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
}
#panel-book-a-table > div .flag:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  background-image: url("/images/icons/Bell.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
@media (max-width: 1023.98px) {
  #panel-book-a-table > div .flag {
    line-height: 32px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0 30px 0 45px;
    height: 48px;
  }
  #panel-book-a-table > div .flag:before {
    top: calc(50% - 8px);
    left: 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
}
#panel-book-a-table > div .list {
  padding-block: 60px;
  padding-inline: 8.3333333333vw;
  text-align: center;
  pointer-events: auto;
  height: 80dvh;
  overflow: scroll;
}
#panel-book-a-table > div .list * {
  color: #8B3126;
}
#panel-book-a-table > div .list .h1-small {
  font-size: 60px;
}
#panel-book-a-table > div .list ul {
  padding: 0;
}
#panel-book-a-table > div .list ul > li {
  position: inherit;
  padding: 0;
  margin: 0;
}
#panel-book-a-table > div .list ul > li:before {
  display: none;
}
#panel-book-a-table > div .list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 0;
}
#panel-book-a-table > div .list ul li {
  flex: 0 0 auto;
  padding: 30px;
  /* Row of 3: every 5 elements, first 3 */
}
#panel-book-a-table > div .list ul li:nth-child(5n+1), #panel-book-a-table > div .list ul li:nth-child(5n+2), #panel-book-a-table > div .list ul li:nth-child(5n+3) {
  width: 33.3%;
}
#panel-book-a-table > div .list ul li {
  /* Row of 2: every 5 elements, next 2 */
}
#panel-book-a-table > div .list ul li:nth-child(5n+4), #panel-book-a-table > div .list ul li:nth-child(5n) {
  width: 50%;
}
#panel-book-a-table > div .list ul h4 {
  margin: 0 0 4px 0;
}
#panel-book-a-table > div .list ul p {
  margin: 0;
}
@media (max-width: 1023.98px) {
  #panel-book-a-table > div .list {
    padding-block: 30px 60px;
    padding-inline: 4.1666666667vw;
  }
  #panel-book-a-table > div .list .h1-small {
    font-size: 40px;
  }
  #panel-book-a-table > div .list ul {
    margin: 15px 0 0;
  }
  #panel-book-a-table > div .list ul li {
    width: 50% !important;
    padding: 15px;
  }
}
#panel-book-a-table > div .close {
  position: relative;
  padding-top: 78px;
  cursor: pointer;
  margin-top: 60px;
}
#panel-book-a-table > div .close:before, #panel-book-a-table > div .close:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
}
#panel-book-a-table > div .close:before {
  border-radius: 100%;
  border: 1px solid #DCC1BE;
}
#panel-book-a-table > div .close:after {
  background-image: url("/images/icons/Close.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
  background-position: center;
}
@media (max-width: 1023.98px) {
  #panel-book-a-table > div .close {
    padding-top: 37px;
    margin-top: 15px;
  }
  #panel-book-a-table > div .close:before, #panel-book-a-table > div .close:after {
    width: 32px;
    height: 32px;
  }
  #panel-book-a-table > div .close:after {
    background-size: 15px;
  }
  #panel-book-a-table > div .close span {
    display: none;
  }
}
body.book-a-table-is-visible #panel-book-a-table {
  pointer-events: auto;
}
body.book-a-table-is-visible #panel-book-a-table:after {
  opacity: 1;
}
body.book-a-table-is-visible #panel-book-a-table {
  bottom: auto;
  top: 20dvh;
}

#tower-revue-badge {
  position: fixed;
  z-index: 10;
  top: 100px;
  left: calc(4.1666666667vw - 22px);
  height: 68px;
  width: 68px;
  background-image: url("/images/icons/TR.svg");
  background-position: center;
  background-size: 34px auto;
  background-repeat: no-repeat;
  background-color: #F1ECDF;
  border-radius: 100%;
}
@media (max-width: 1023.98px) {
  #tower-revue-badge {
    top: 80px;
    left: calc(4.1666666667vw - 6px);
    height: 40px;
    width: 40px;
    background-size: 20px auto;
  }
}
#tower-revue-badge a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.text .row {
  justify-content: center;
}
.text .row > div {
  flex: 0 0 auto;
  width: 75%;
  text-align: center;
}
.text .row > div img {
  display: block;
  margin: 0 auto;
}
.text .row > div h3 + p:has(img:only-child) {
  margin-top: 40px;
}
.text .row > div h5 + h1 {
  margin-top: var(--spacer);
}
@media (max-width: 1023.98px) {
  .text .row > div {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .text .row > div h2:has(.accent) {
    line-height: 1.55em;
  }
}
@media (min-width: 1024px) {
  .text.width-reduced .row {
    justify-content: flex-start;
  }
  .text.width-reduced .row > div {
    margin-left: 12.5%;
    flex: 0 0 auto;
    width: 50%;
    text-align: left;
  }
  .text.width-reduced.align-center .row {
    justify-content: center;
  }
  .text.width-reduced.align-center .row > div {
    margin-left: 0;
  }
  .text.width-reduced.align-right .row > div {
    margin-left: 37.5%;
    text-align: left;
  }
}
@media (max-width: 1023.98px) {
  .text.width-reduced.align-center .row > div {
    text-align: left;
  }
}

.slider-small {
  padding: 0;
}
.slider-small:not(:has(+ #footer)):not(:has(+ .slider-small)):not(:has(+ .slider-large)) .row.carousel {
  border-bottom: 1px solid #DCC1BE;
}
.slider-small .row {
  border-top: 1px solid #DCC1BE;
}
.slider-small .row.title > div {
  flex: 0 0 auto;
  width: 91.66666667%;
  margin-left: 4.16666667%;
  padding-block: var(--spacer);
}
.slider-small .row.carousel {
  position: relative;
}
.slider-small .row.carousel > div {
  flex: 0 0 auto;
  width: 100%;
}
.slider-small .row.carousel > div .swiper-slide {
  height: auto;
}
.slider-small .row.carousel > div .swiper-slide:not(:first-child) {
  border-left: 1px solid #DCC1BE;
}
.slider-small .row.carousel > div .swiper-slide > div {
  padding: 4.1666666667vw;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder > div {
  height: 100%;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder > div picture, .slider-small .row.carousel > div .swiper-slide > div .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder > div picture img, .slider-small .row.carousel > div .swiper-slide > div .media-holder > div picture video, .slider-small .row.carousel > div .swiper-slide > div .media-holder > div .video-holder img, .slider-small .row.carousel > div .swiper-slide > div .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.slider-small .row.carousel > div .swiper-slide > div .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.slider-small .row.carousel > div .swiper-slide > div {
  position: relative;
}
.slider-small .row.carousel > div .swiper-slide > div > a:before {
  content: "";
  position: absolute;
  inset: 0;
}
.slider-small .row.carousel > div .swiper-slide > div > a:hover + h4 {
  color: #622119;
}
.slider-small .row.carousel > div .swiper-slide > div h4 {
  margin-block: var(--spacer);
  text-align: center;
  position: relative;
}
.slider-small .row.carousel > div .swiper-slide > div h4 span {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .slider-small .row.carousel > div .swiper-slide > div h4 span {
    font-size: 11px;
  }
}
.slider-small .row.carousel > div .swiper-slide > div h4 span {
  position: absolute;
  transform: translateX(100%);
  top: 0;
  right: 0;
  width: 4.1666666667vw;
  padding-top: 30px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  color: #8B3126;
  text-transform: none;
}
@media (max-width: 1023.98px) {
  .slider-small .row.carousel > div .swiper-slide > div h4 span {
    display: none;
  }
}
.slider-small .row.carousel > div .swiper-slide > div h4 span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/images/icons/SizeSqm.svg");
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
.slider-small .row.carousel > div .swiper-button-prev,
.slider-small .row.carousel > div .swiper-button-next {
  width: 65px;
  height: 102px;
  margin-top: -61px;
  top: 17vw;
}
.slider-small .row.carousel > div .swiper-button-prev:after,
.slider-small .row.carousel > div .swiper-button-next:after {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
}
@media (max-width: 1023.98px) {
  .slider-small .row.carousel > div .swiper-button-prev,
  .slider-small .row.carousel > div .swiper-button-next {
    display: none;
  }
}
.slider-small .row.carousel > div .swiper-button-prev {
  left: calc(4.1666666667vw + var(--swiper-spacer));
}
.slider-small .row.carousel > div .swiper-button-prev:after {
  background-size: contain;
  background-image: url("/images/icons/PrevLarge.svg");
}
.slider-small .row.carousel > div .swiper-button-next {
  right: calc(4.1666666667vw + var(--swiper-spacer));
}
.slider-small .row.carousel > div .swiper-button-next:after {
  background-size: contain;
  background-image: url("/images/icons/NextLarge.svg");
}

.macro01 {
  padding: 0;
  border-top: 1px solid #DCC1BE !important;
}
.macro01:not(:has(+ .macro01)) {
  border-bottom: 1px solid #DCC1BE !important;
}
.macro01:has(+ #footer) {
  border-bottom: 0 !important;
}
.macro01 .row {
  padding-block: 4.1666666667vw;
  justify-content: center;
}
@media (max-width: 1023.98px) {
  .macro01 .row {
    padding-bottom: 40px;
  }
}
.macro01 .row > div:first-child {
  position: relative;
  flex: 0 0 auto;
  width: 62.5%;
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:first-child {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.macro01 .row > div:first-child .swiper .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.7777777778;
  height: auto;
}
.macro01 .row > div:first-child .swiper .media-holder > div {
  height: 100%;
}
.macro01 .row > div:first-child .swiper .media-holder > div picture, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.macro01 .row > div:first-child .swiper .media-holder > div picture img, .macro01 .row > div:first-child .swiper .media-holder > div picture video, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder img, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.macro01 .row > div:first-child .swiper .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.macro01 .row > div:first-child .swiper .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.macro01 .row > div:first-child .swiper .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.macro01 .row > div:first-child .swiper .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.macro01 .row > div:first-child .swiper .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:first-child .swiper .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.5;
    height: auto;
  }
  .macro01 .row > div:first-child .swiper .media-holder > div {
    height: 100%;
  }
  .macro01 .row > div:first-child .swiper .media-holder > div picture, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .macro01 .row > div:first-child .swiper .media-holder > div picture img, .macro01 .row > div:first-child .swiper .media-holder > div picture video, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder img, .macro01 .row > div:first-child .swiper .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .macro01 .row > div:first-child .swiper .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .macro01 .row > div:first-child .swiper .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .macro01 .row > div:first-child .swiper .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .macro01 .row > div:first-child .swiper .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .macro01 .row > div:first-child .swiper .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.7777777778;
  height: auto;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div {
  height: 100%;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture img, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture video, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder img, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.5;
    height: auto;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div {
    height: 100%;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture img, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div picture video, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder img, .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
  .macro01 .row > div:first-child .swiper:has(.swiper-pagination) .media-holder:before {
    background-color: rgba(0, 0, 0, var(--opacity));
  }
}
.macro01 .row > div:first-child .swiper .swiper-pagination {
  padding: 30px;
}
.macro01 .row > div:first-child .swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.6);
}
.macro01 .row > div:first-child .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid white;
  background-color: white;
}
.macro01 .row > div:first-child .swiper .swiper-button-prev,
.macro01 .row > div:first-child .swiper .swiper-button-next {
  top: 0;
  bottom: 0;
  margin: 0;
  transform: none;
  height: 100%;
  width: 10%;
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:first-child .swiper .swiper-button-prev,
  .macro01 .row > div:first-child .swiper .swiper-button-next {
    width: 15%;
  }
}
.macro01 .row > div:first-child .swiper .swiper-button-prev:after,
.macro01 .row > div:first-child .swiper .swiper-button-next:after {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
}
.macro01 .row > div:first-child .swiper .swiper-button-prev {
  left: 0;
}
.macro01 .row > div:first-child .swiper .swiper-button-next {
  right: 0;
}
.macro01 .row > div:last-child {
  margin-left: 4.16666667%;
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:last-child {
    margin-left: 0;
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-top: var(--spacer);
    display: block;
  }
}
.macro01 .row > div:last-child .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1023.98px) {
  .macro01 .row > div:last-child .title {
    margin-bottom: 40px;
    justify-content: space-between;
  }
}
.macro01 .row > div:last-child .title .SizeSqm {
  position: relative;
  flex: none;
  padding-top: 30px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  color: #8B3126;
  text-transform: none;
}
.macro01 .row > div:last-child .title .SizeSqm:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/images/icons/SizeSqm.svg");
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
.macro01 .row > div:last-child p:has(a + a) {
  justify-content: left;
}
.macro01 .row > div:last-child p:has(a + a) a.button-primary {
  padding: 4px 24px;
}
.macro01.odd .row {
  flex-direction: row-reverse;
}
.macro01.odd .row > div:first-child {
  margin-left: 4.16666667%;
}
@media (max-width: 1023.98px) {
  .macro01.odd .row > div:first-child {
    margin-left: 0;
  }
}
.macro01.odd .row > div:last-child {
  margin-left: 0;
}

.highlighted-list {
  padding: 0;
}
.highlighted-list .container .deco-top,
.highlighted-list .container .deco-bottom {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.highlighted-list .container .deco-top {
  aspect-ratio: 11.1627906977;
  background-image: url(/images/icons/frame-top.png);
}
.highlighted-list .container .deco-bottom {
  aspect-ratio: 23.606557377;
  background-image: url(/images/icons/frame-bottom.png);
}
.highlighted-list .container .list {
  background-color: #8B3126;
  margin-block: -1px;
  padding-block: 40px var(--padding-block-reduced);
}
.highlighted-list .container .list * {
  color: #FDF9F3;
}
.highlighted-list .container .list .row {
  justify-content: center;
}
.highlighted-list .container .list .row > div {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.highlighted-list .container .list .row.title {
  text-align: center;
  margin-bottom: 60px;
}
.highlighted-list .container .list .row.title span {
  margin-bottom: 10px;
}
.highlighted-list .container .list .row.title span a {
  color: inherit;
  text-decoration: none;
}
.highlighted-list .container .list .row.title span:last-child {
  margin-bottom: 0;
}
.highlighted-list .container .list .row.title span {
  font-family: "SwissNow";
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .highlighted-list .container .list .row.title span {
    font-size: 16px;
  }
}
.highlighted-list .container .list .row.content > div {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.highlighted-list .container .list .row.content > div:after, .highlighted-list .container .list .row.content > div:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 41px;
}
@media (max-width: 1023.98px) {
  .highlighted-list .container .list .row.content > div:after, .highlighted-list .container .list .row.content > div:before {
    top: 7.5px;
  }
}
.highlighted-list .container .list .row.content > div:before {
  z-index: 1;
  background-color: #8B3126;
  width: 326px;
}
@media (max-width: 1023.98px) {
  .highlighted-list .container .list .row.content > div:before {
    width: 246px;
  }
}
.highlighted-list .container .list .row.content > div:after {
  z-index: 2;
  background-image: url("/images/icons/OrnamentPackages.svg");
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
  background-repeat: no-repeat;
  width: 430px;
}
@media (max-width: 1023.98px) {
  .highlighted-list .container .list .row.content > div:after {
    width: 326px;
    background-size: 400px auto;
  }
}
.highlighted-list .container .list .row.content > div > div {
  text-align: center;
  border-block: 1px solid #B9837D;
}
@media (max-width: 1023.98px) {
  .highlighted-list .container .list .row.content > div > div {
    padding: 40px 8.3333333333vw;
  }
  .highlighted-list .container .list .row.content > div > div:not(:first-child) {
    border-top: 0;
  }
}
@media (min-width: 1024px) {
  .highlighted-list .container .list .row.content > div > div {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    padding: 4.1666666667vw;
  }
  .highlighted-list .container .list .row.content > div > div:only-child {
    flex-basis: 100%;
    max-width: 100%;
    padding: 4.1666666667vw 29.1666666667vw;
  }
  .highlighted-list .container .list .row.content > div > div:nth-child(2):nth-last-child(1), .highlighted-list .container .list .row.content > div > div:nth-child(1):nth-last-child(2) {
    flex-basis: 50%;
    max-width: 50%;
    padding: 4.1666666667vw 8.3333333333vw;
  }
  .highlighted-list .container .list .row.content > div > div:nth-child(n+4) {
    border-top: 0;
    border-left: 0;
  }
  .highlighted-list .container .list .row.content > div > div:nth-child(n+4):has(+ div) {
    border-right: 1px solid #B9837D;
  }
  .highlighted-list .container .list .row.content > div > div:nth-child(3n) {
    border-right: 0 !important;
  }
  .highlighted-list .container .list .row.content > div > div + div {
    border-left: 1px solid #B9837D;
  }
}
.highlighted-list .container .list .row.content > div > div h2 {
  margin-bottom: 0;
}
.highlighted-list .container .list .row.content > div > div .icon {
  margin-block: 30px;
}
.highlighted-list .container .list .row.content > div > div .icon img {
  margin: 0 auto;
  width: 60px;
  height: auto;
}
.highlighted-list.package-list .container .list {
  padding-block: var(--padding-block-standard);
}
.highlighted-list.package-list .container .list .row:first-child {
  margin-bottom: var(--padding-block-standard);
}
.highlighted-list.package-list .container .list .row:first-child span:last-child {
  margin-bottom: 10px;
}
.highlighted-list.package-list .container .list .row:first-child span:last-child a {
  color: inherit;
  text-decoration: none;
}
.highlighted-list.package-list .container .list .row:first-child span:last-child:last-child {
  margin-bottom: 0;
}
.highlighted-list.package-list .container .list .row:first-child span:last-child {
  font-family: "Canora Frente";
  font-weight: 400;
  font-size: clamp(72px, 9.7vw, 160px);
  line-height: 1.15em;
}
@media (max-width: 1023.98px) {
  .highlighted-list.package-list .container .list .row:first-child span:last-child {
    line-height: 1em;
  }
}
.highlighted-list.package-list .container .list .row:first-child span:last-child {
  text-transform: none;
}
.highlighted-list + #footer .row:first-child {
  border-top: 0 !important;
}

.pop-up {
  padding: 0;
  display: flex;
}
.pop-up > div {
  flex: 1;
}
.pop-up > div.large-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pop-up > div.large-media .reveal {
  position: absolute;
  z-index: 1;
}
.pop-up > div.large-media .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.pop-up > div.large-media .reveal .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.pop-up > div.large-media .reveal .media-holder > div {
  height: 100%;
}
.pop-up > div.large-media .reveal .media-holder > div picture, .pop-up > div.large-media .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.pop-up > div.large-media .reveal .media-holder > div picture img, .pop-up > div.large-media .reveal .media-holder > div picture video, .pop-up > div.large-media .reveal .media-holder > div .video-holder img, .pop-up > div.large-media .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pop-up > div.large-media .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.pop-up > div.large-media .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.pop-up > div.large-media .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.pop-up > div.large-media .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.pop-up > div.large-media .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.pop-up > div.large-media .reveal .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
.pop-up > div.container {
  position: relative;
  inset: 0;
  z-index: 2;
}
.pop-up > div.container .row {
  align-items: center;
  justify-content: center;
  padding-block: 60px;
}
.pop-up > div.container .row > div {
  flex: 0 0 auto;
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pop-up > div.container .row > div .reveal {
  width: 16.6666666667vw;
  margin: 0 auto;
}
.pop-up > div.container .row > div .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.pop-up > div.container .row > div .reveal .media-holder > div {
  height: 100%;
}
.pop-up > div.container .row > div .reveal .media-holder > div picture, .pop-up > div.container .row > div .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.pop-up > div.container .row > div .reveal .media-holder > div picture img, .pop-up > div.container .row > div .reveal .media-holder > div picture video, .pop-up > div.container .row > div .reveal .media-holder > div .video-holder img, .pop-up > div.container .row > div .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pop-up > div.container .row > div .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.pop-up > div.container .row > div .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.pop-up > div.container .row > div .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.pop-up > div.container .row > div .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.pop-up > div.container .row > div .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.pop-up > div.container .row > div * {
  color: #FDF9F3;
  margin-bottom: 0;
}
.pop-up > div.container .row > div .title-large {
  margin-bottom: 10px;
}
.pop-up > div.container .row > div .title-large a {
  color: inherit;
  text-decoration: none;
}
.pop-up > div.container .row > div .title-large:last-child {
  margin-bottom: 0;
}
.pop-up > div.container .row > div .title-large {
  font-family: "Canora Frente";
  font-weight: 400;
  font-size: clamp(72px, 9.7vw, 160px);
  line-height: 1.15em;
}
@media (max-width: 1023.98px) {
  .pop-up > div.container .row > div .title-large {
    line-height: 1em;
  }
}
.pop-up > div.container .row > div .title-large {
  margin-inline: -4.1666666667vw;
}
.pop-up > div.container .row > div p {
  margin-top: 0;
}
.pop-up > div.container .row > div h2 {
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .pop-up > div.container .row > div {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .pop-up > div.container .row > div .reveal {
    width: 41.6666666667vw;
  }
  .pop-up > div.container .row > div .title-large {
    margin-inline: 0;
  }
}

.teaser-2-cols {
  padding: 0;
}
.teaser-2-cols .row {
  height: 90vh;
  min-height: 680px;
  max-height: 960px;
}
@media (max-width: 1023.98px) {
  .teaser-2-cols .row {
    height: auto;
    min-height: auto;
    max-height: none;
  }
}
.teaser-2-cols .row > div {
  position: relative;
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 1023.98px) {
  .teaser-2-cols .row > div {
    flex: 0 0 auto;
    width: 100%;
  }
}
.teaser-2-cols .row > div:first-child .swiper {
  position: absolute;
  inset: 0;
}
@media (max-width: 1023.98px) {
  .teaser-2-cols .row > div:first-child .swiper {
    position: relative;
    inset: auto;
  }
}
.teaser-2-cols .row > div:first-child .swiper .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder > div {
  height: 100%;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder > div picture, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder > div picture img, .teaser-2-cols .row > div:first-child .swiper .media-holder > div picture video, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder img, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.teaser-2-cols .row > div:first-child .swiper .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (max-width: 1023.98px) {
  .teaser-2-cols .row > div:first-child .swiper .media-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.8;
    height: auto;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder > div {
    height: 100%;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder > div picture, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder > div picture img, .teaser-2-cols .row > div:first-child .swiper .media-holder > div picture video, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder img, .teaser-2-cols .row > div:first-child .swiper .media-holder > div .video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    cursor: pointer;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 20%;
    pointer-events: none;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder .open-gallery span {
    color: #FFFFFF;
    position: absolute;
    inset: auto 1em 1em;
    text-align: center;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder:has(.open-gallery) img {
    transition: transform 450ms;
  }
  .teaser-2-cols .row > div:first-child .swiper .media-holder:has(.open-gallery):hover img {
    transform: scale(1.125);
  }
}
.teaser-2-cols .row > div:first-child .swiper .swiper-pagination {
  padding: 30px;
}
.teaser-2-cols .row > div:first-child .swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.6);
}
.teaser-2-cols .row > div:first-child .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid white;
  background-color: white;
}
.teaser-2-cols .row > div:first-child .swiper .swiper-button-next:after,
.teaser-2-cols .row > div:first-child .swiper .swiper-button-prev:after {
  filter: invert(1);
}
.teaser-2-cols .row > div:last-child .pin {
  padding-inline: 4vw;
  text-align: center;
  padding-block: 68px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 1024px) {
  .teaser-2-cols .row > div:last-child .pin > div {
    max-width: 600px;
    margin: 0 auto;
  }
  .teaser-2-cols .row > div:last-child .pin > div:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 8.3333333333vw;
    right: 8.3333333333vw;
    transform: translateY(-50%);
    max-width: none;
  }
}
.teaser-2-cols .row > div:last-child .pin .reveal {
  width: 10.4166666667vw;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .teaser-2-cols .row > div:last-child .pin .reveal {
    width: 41.6666666667vw;
  }
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div {
  height: 100%;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div picture, .teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div picture img, .teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div picture video, .teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div .video-holder img, .teaser-2-cols .row > div:last-child .pin .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.teaser-2-cols .row > div:last-child .pin .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
@media (min-width: 1024px) {
  .teaser-2-cols.reverse .row {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1023.98px) {
  .teaser-2-cols.border-top {
    border-top: 0;
  }
}
.teaser-2-cols.story-detail-page .row > div:last-child .pin, .teaser-2-cols.macro10 .row > div:last-child .pin {
  justify-content: center;
  gap: var(--padding-block-standard);
}
.teaser-2-cols.story-detail-page .row > div:last-child .pin p.copy-large::first-letter, .teaser-2-cols.macro10 .row > div:last-child .pin p.copy-large::first-letter {
  font-family: "Canora Frente";
  font-size: 140px;
  font-weight: 400;
  line-height: 0.55em;
  letter-spacing: 0;
}
.teaser-2-cols.story-detail-page .row > div:last-child .pin > div:nth-child(2), .teaser-2-cols.macro10 .row > div:last-child .pin > div:nth-child(2) {
  position: relative;
  inset: auto;
  transform: none;
}

.slider-large {
  padding: 0;
  overflow: hidden;
}
.slider-large:not(:has(+ #footer)):not(:has(+ .slider-large)):not(:has(+ .slider-small)) .row.carousel {
  border-bottom: 1px solid #DCC1BE;
}
.slider-large .row {
  border-top: 1px solid #DCC1BE;
}
.slider-large .row.title > div {
  flex: 0 0 auto;
  width: 91.66666667%;
  margin-left: 4.16666667%;
  padding-block: var(--spacer);
}
.slider-large .row.carousel {
  justify-content: center;
  position: relative;
}
.slider-large .row.carousel .content {
  flex: 0 0 auto;
  width: 62.5%;
}
@media (max-width: 1023.98px) {
  .slider-large .row.carousel .content {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.slider-large .row.carousel .content .swiper {
  overflow: visible;
}
.slider-large .row.carousel .content .swiper .swiper-slide {
  height: auto;
}
.slider-large .row.carousel .content .swiper .swiper-slide:not(:first-child) {
  border-left: 1px solid #DCC1BE;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div {
  padding: 60px;
  display: flex;
  gap: 60px;
  flex-direction: row;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .slider-large .row.carousel .content .swiper .swiper-slide > div {
    display: block;
    padding-top: 4.1666666667vw;
    padding-inline: 4.1666666667vw;
  }
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div {
  height: 100%;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div picture, .slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div picture img, .slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div picture video, .slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div .video-holder img, .slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.slider-large .row.carousel .content .swiper .swiper-slide > div .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.slider-large .row.carousel .content .swiper .swiper-slide > div > div:first-child {
  width: 60%;
}
@media (max-width: 1023.98px) {
  .slider-large .row.carousel .content .swiper .swiper-slide > div > div:first-child {
    width: auto;
  }
}
.slider-large .row.carousel .content .swiper .swiper-slide > div > div:last-child {
  margin-block: var(--spacer);
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .slider-large .row.carousel .content .swiper .swiper-slide > div > div:last-child {
    margin-block: 0;
    padding-inline: 4.1666666667vw;
    width: auto;
  }
  .slider-large .row.carousel .content .swiper .swiper-slide > div > div:last-child > div:first-child {
    margin-block: var(--spacer);
    height: 80px;
    overflow: hidden;
  }
}
.slider-large .row.carousel .swiper-button-prev,
.slider-large .row.carousel .swiper-button-next {
  width: 65px;
  height: 102px;
  margin-top: -61px;
}
.slider-large .row.carousel .swiper-button-prev:after,
.slider-large .row.carousel .swiper-button-next:after {
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(3946%) hue-rotate(327deg) brightness(85%) contrast(97%);
}
@media (max-width: 1023.98px) {
  .slider-large .row.carousel .swiper-button-prev,
  .slider-large .row.carousel .swiper-button-next {
    display: none;
  }
}
.slider-large .row.carousel .swiper-button-prev {
  left: 4.1666666667vw;
}
.slider-large .row.carousel .swiper-button-prev:after {
  background-size: contain;
  background-image: url("/images/icons/PrevLarge.svg");
}
.slider-large .row.carousel .swiper-button-next {
  right: 4.1666666667vw;
}
.slider-large .row.carousel .swiper-button-next:after {
  background-size: contain;
  background-image: url("/images/icons/NextLarge.svg");
}
@media (min-width: 1024px) {
  .slider-large .row.carousel .swiper-button-next:after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
  }
}

.package-detail {
  padding: 0;
}
.package-detail .container .deco-top,
.package-detail .container .deco-bottom {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.package-detail .container .deco-top {
  aspect-ratio: 11.1627906977;
  background-image: url(/images/icons/frame-top.png);
}
.package-detail .container .deco-bottom {
  aspect-ratio: 23.606557377;
  background-image: url(/images/icons/frame-bottom.png);
}
.package-detail .container .detail {
  background-color: #8B3126;
  margin-block: -1px;
  padding-block: 40px var(--padding-block-standard);
}
.package-detail .container .detail * {
  color: #FDF9F3;
}
.package-detail .container .detail .row {
  justify-content: center;
}
.package-detail .container .detail .row:first-child > div {
  flex: 0 0 auto;
  width: 91.66666667%;
  text-align: center;
}
.package-detail .container .detail .row:nth-child(2) {
  margin-bottom: var(--padding-block-reduced);
}
@media (min-width: 1024px) {
  .package-detail .container .detail .row:nth-child(2) {
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
  }
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row:nth-child(2) {
    margin-top: 40px;
  }
}
.package-detail .container .detail .row:nth-child(2) > div {
  text-align: center;
}
.package-detail .container .detail .row:nth-child(2) > div.content {
  flex: 0 0 auto;
  width: 25%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row:nth-child(2) > div.content {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.package-detail .container .detail .row:nth-child(2) > div.media {
  flex: 0 0 auto;
  width: 16.66666667%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row:nth-child(2) > div.media {
    flex: 0 0 auto;
    width: 41.66666667%;
    margin-top: 40px;
  }
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div {
  height: 100%;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div picture, .package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div picture img, .package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div picture video, .package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div .video-holder img, .package-detail .container .detail .row:nth-child(2) > div.media .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.package-detail .container .detail .row:nth-child(2) > div.media .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.package-detail .container .detail .row:nth-child(2) > div.validity {
  flex: 0 0 auto;
  width: 25%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row:nth-child(2) > div.validity {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .package-detail .container .detail .row:nth-child(2) > div.validity:has(p) {
    margin-top: 40px;
  }
}
.package-detail .container .detail .row:nth-child(2) > div.validity p {
  position: relative;
  padding-top: 42px;
}
.package-detail .container .detail .row:nth-child(2) > div.validity p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 32px;
  width: 32px;
  background-image: url(/images/icons/Events.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
.package-detail .container .detail .row.services {
  margin-block: var(--padding-block-reduced) var(--padding-block-standard);
}
.package-detail .container .detail .row.services > div:first-child {
  flex: 0 0 auto;
  width: 16.66666667%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row.services > div:first-child {
    flex: 0 0 auto;
    width: 91.66666667%;
    text-align: center;
    margin-bottom: 40px;
  }
}
.package-detail .container .detail .row.services > div:last-child {
  flex: 0 0 auto;
  width: 62.5%;
  margin-left: 12.5%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row.services > div:last-child {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 0;
  }
}
.package-detail .container .detail .row.services > div:last-child ul {
  font-family: "SwissTime";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-size: 21px;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row.services > div:last-child ul {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .package-detail .container .detail .row.services > div:last-child ul {
    columns: 2;
    column-gap: 4.1666666667vw;
  }
}
.package-detail .container .detail .row.services > div:last-child ul li:before {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(80%) hue-rotate(349deg) brightness(109%) contrast(98%);
}
.package-detail .container .detail .row:nth-child(5) > div {
  flex: 0 0 auto;
  width: 62.5%;
  margin-left: 29.16666667%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row:nth-child(5) > div {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 0;
  }
}
.package-detail .container .detail .row.sub-content {
  margin-top: 60px;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row.sub-content {
    margin-top: 40px;
  }
}
.package-detail .container .detail .row.sub-content > div {
  flex: 0 0 auto;
  width: 62.5%;
  margin-left: 29.16666667%;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .row.sub-content > div {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 0;
  }
}
.package-detail .container .detail .row.sub-content > div p:has(a + a) {
  justify-content: start;
}
.package-detail .container .detail .row.sub-content > div .button-secondary-rounded {
  background-color: transparent;
  border: 1px solid #B9837D;
}
@media (hover: hover) {
  .package-detail .container .detail .row.sub-content > div .button-secondary-rounded.hover, .package-detail .container .detail .row.sub-content > div .button-secondary-rounded:hover {
    border: 1px solid #FDF9F3;
  }
}
.package-detail .container .detail .ornament {
  border-top: 1px solid #DCC1BE;
  border-width: 0.5px;
  margin: 0 4.1666666667vw;
  padding: 0;
  position: relative;
}
.package-detail .container .detail .ornament:after, .package-detail .container .detail .ornament:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 41px;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .ornament:after, .package-detail .container .detail .ornament:before {
    top: 7.5px;
  }
}
.package-detail .container .detail .ornament:before {
  z-index: 1;
  background-color: #8B3126;
  width: 326px;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .ornament:before {
    width: 246px;
  }
}
.package-detail .container .detail .ornament:after {
  z-index: 2;
  background-image: url("/images/icons/OrnamentPackages.svg");
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
  background-repeat: no-repeat;
  width: 430px;
}
@media (max-width: 1023.98px) {
  .package-detail .container .detail .ornament:after {
    width: 326px;
    background-size: 400px auto;
  }
}
.package-detail:has(+ .highlighted-list) .deco-bottom {
  display: none;
}
.package-detail + .highlighted-list {
  margin-top: -1px;
}
.package-detail + .highlighted-list .deco-top {
  display: none;
}
.package-detail + .highlighted-list .container .list {
  padding-top: 0;
}

.gallery {
  padding: 0;
  overflow: hidden;
}
.gallery:first-child {
  margin-top: -1px;
}
body:not(.type--towerrevue):not(.type--towerrevuetagpage) .gallery:has(+ #footer) {
  margin-bottom: -1px;
}
.gallery .row {
  justify-content: center;
}
.gallery .row > div .item-list {
  margin-inline: -0.5px;
  overflow: hidden;
}
.gallery .row > div .item-list:before, .gallery .row > div .item-list:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DCC1BE;
}
.gallery .row > div .item-list:before {
  top: 0;
}
.gallery .row > div .item-list:after {
  bottom: 0;
}
@media (min-width: 1024px) {
  .gallery .row > div .item-list .sizer,
  .gallery .row > div .item-list .item {
    width: 33.33%;
  }
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .sizer,
  .gallery .row > div .item-list .item {
    width: 50%;
  }
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .header {
    padding: 30px 4.1666666667vw !important;
    width: 100%;
  }
}
.gallery .row > div .item-list .header h2:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .header h2:not(:last-child) {
    margin-bottom: 30px;
  }
}
.gallery .row > div .item-list .header .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .header .tag-list {
    gap: 2.0833333333vw;
  }
}
.gallery .row > div .item-list .header .tag-list label {
  font-family: "SwissNow";
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7em;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .header .tag-list label {
    font-size: 11px;
  }
}
.gallery .row > div .item-list .header .tag-list label {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  border-radius: 20px;
  min-height: 34px;
  padding-left: 20px;
  padding-right: 20px;
  color: #8B3126;
  border: 1px solid #DCC1BE;
  cursor: pointer;
  transition: all 450ms;
}
@media (hover: hover) {
  .gallery .row > div .item-list .header .tag-list label:hover {
    border: 1px solid #B9837D;
  }
}
.gallery .row > div .item-list .header .tag-list label {
  position: relative;
  overflow: hidden;
}
.gallery .row > div .item-list .header .tag-list label input {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.gallery .row > div .item-list .header .tag-list label:has(input:checked) {
  border: 1px solid #B9837D;
}
.gallery .row > div .item-list .item {
  padding: 4.1666666667vw;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .item {
    padding: 2.0833333333vw;
  }
}
.gallery .row > div .item-list .item:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.5px;
  border: 1px solid #DCC1BE;
  pointer-events: none;
}
.gallery .row > div .item-list .item .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.gallery .row > div .item-list .item .media-holder > div {
  height: 100%;
}
.gallery .row > div .item-list .item .media-holder > div picture, .gallery .row > div .item-list .item .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.gallery .row > div .item-list .item .media-holder > div picture img, .gallery .row > div .item-list .item .media-holder > div picture video, .gallery .row > div .item-list .item .media-holder > div .video-holder img, .gallery .row > div .item-list .item .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .row > div .item-list .item .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.gallery .row > div .item-list .item .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.gallery .row > div .item-list .item .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.gallery .row > div .item-list .item .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.gallery .row > div .item-list .item .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.gallery .row > div .item-list .item .media-holder {
  cursor: pointer;
}
.gallery .row > div .item-list .item .caption {
  text-align: right;
  margin-top: 6px;
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .item .caption {
    font-size: 11px;
  }
}
.gallery .row > div .item-list .special > div {
  position: relative;
}
.gallery .row > div .item-list .special > div:before, .gallery .row > div .item-list .special > div:after {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.gallery .row > div .item-list .special > div:before {
  aspect-ratio: 11.1627906977;
  background-image: url(/images/icons/frame-top.png);
}
.gallery .row > div .item-list .special > div:after {
  aspect-ratio: 23.606557377;
  background-image: url(/images/icons/frame-bottom.png);
}
.gallery .row > div .item-list .special > div > div {
  background-color: #8B3126;
  text-align: center;
  padding: 4.1666666667vw;
}
@media (max-width: 1023.98px) {
  .gallery .row > div .item-list .special > div > div {
    padding: 12.5vw 4.1666666667vw;
  }
}
.gallery .row > div .item-list .special > div > div * {
  color: #FDF9F3;
}

.macroM > .container > .row {
  justify-content: center;
}
.macroM > .container > .row > div {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.macroM:has(.umbraco-forms-PSK) > .container .umbraco-forms-page .row {
  margin-inline: -13px;
}
.macroM:has(.umbraco-forms-PSK) > .container .umbraco-forms-page .row > div {
  padding-inline: 13px;
}
@media (min-width: 1024px) {
  .macroM:has(.umbraco-forms-PSK) > .container {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

.story-list {
  padding: 0;
  overflow: hidden;
}
.story-list:first-child {
  margin-top: -1px;
}
body:not(.type--story) .story-list:has(+ #footer) {
  margin-bottom: -1px;
}
.story-list .row {
  justify-content: center;
}
.story-list .row > div .item-list {
  margin-inline: -0.5px;
  overflow: hidden;
}
.story-list .row > div .item-list:before, .story-list .row > div .item-list:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DCC1BE;
}
.story-list .row > div .item-list:before {
  top: 0;
}
.story-list .row > div .item-list:after {
  bottom: 0;
}
@media (min-width: 1024px) {
  .story-list .row > div .item-list .sizer,
  .story-list .row > div .item-list .item {
    width: 33.33%;
  }
}
@media (max-width: 1023.98px) {
  .story-list .row > div .item-list .sizer,
  .story-list .row > div .item-list .item {
    width: 50%;
  }
}
@media (max-width: 1023.98px) {
  .story-list .row > div .item-list .header {
    padding: 30px 4.1666666667vw !important;
    width: 100%;
  }
}
.story-list .row > div .item-list .item {
  padding: 4.1666666667vw;
}
.story-list .row > div .item-list .item:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.5px;
  border: 1px solid #DCC1BE;
  pointer-events: none;
}
.story-list .row > div .item-list .item .reveal {
  margin-block: 40px 30px;
}
.story-list .row > div .item-list .item .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.3333333333;
  height: auto;
}
.story-list .row > div .item-list .item .reveal .media-holder > div {
  height: 100%;
}
.story-list .row > div .item-list .item .reveal .media-holder > div picture, .story-list .row > div .item-list .item .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.story-list .row > div .item-list .item .reveal .media-holder > div picture img, .story-list .row > div .item-list .item .reveal .media-holder > div picture video, .story-list .row > div .item-list .item .reveal .media-holder > div .video-holder img, .story-list .row > div .item-list .item .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-list .row > div .item-list .item .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.story-list .row > div .item-list .item .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.story-list .row > div .item-list .item .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.story-list .row > div .item-list .item .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.story-list .row > div .item-list .item .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.story-list.tag-id-0 {
  margin-bottom: 0 !important;
  /* .item-list:after {
     display: none;
   }*/
}

.story-tag-list {
  padding-block: 60px;
}
@media (max-width: 1023.98px) {
  .story-tag-list {
    padding-block: 30px;
  }
}
.story-tag-list .row {
  justify-content: center;
}
.story-tag-list .row > div {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.story-tag-list .row > div .tag-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.story-share {
  border-block: 1px solid #DCC1BE;
  padding-block: 60px;
}
@media (max-width: 1023.98px) {
  .story-share {
    padding-block: 30px;
  }
}
.story-share .row {
  justify-content: center;
}
.story-share .row > div {
  flex: 0 0 auto;
  width: 91.66666667%;
  text-align: center;
}
.story-share .row > div .socials {
  display: flex;
  gap: var(--spacer);
}
.story-share .row > div .socials a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  height: 26px;
  width: 26px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2130%) hue-rotate(317deg) brightness(89%) contrast(73%);
}
.story-share .row > div .socials .twitter {
  background-image: url("/images/icons/Twitter.svg");
}
.story-share .row > div .socials .facebook {
  background-image: url("/images/icons/Facebook.svg");
}
.story-share .row > div .socials .email {
  background-image: url("/images/icons/Email.svg");
}

.story-vertical-header {
  padding-top: 0;
}
.story-vertical-header .container > .row > div:first-child {
  flex: 0 0 auto;
  width: 37.5%;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:first-child {
    flex: 0 0 auto;
    width: 100%;
  }
}
.story-vertical-header .container > .row > div:first-child .reveal {
  height: auto;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.8;
  height: auto;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder > div {
  height: 100%;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder > div picture, .story-vertical-header .container > .row > div:first-child .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder > div picture img, .story-vertical-header .container > .row > div:first-child .reveal .media-holder > div picture video, .story-vertical-header .container > .row > div:first-child .reveal .media-holder > div .video-holder img, .story-vertical-header .container > .row > div:first-child .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.story-vertical-header .container > .row > div:first-child .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.story-vertical-header .container > .row > div:first-child .row {
  justify-content: center;
}
.story-vertical-header .container > .row > div:first-child .row > div {
  flex: 0 0 auto;
  width: 77.77777778%;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:first-child .row > div {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
.story-vertical-header .container > .row > div:first-child .row > div .h6 {
  margin-top: var(--spacer);
}
.story-vertical-header .container > .row > div:last-child {
  flex: 0 0 auto;
  width: 54.16666667%;
  margin-left: 4.16666667%;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 4.16666667%;
  }
}
.story-vertical-header .container > .row > div:last-child > div:first-child {
  justify-content: end;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child > div:first-child {
    margin-top: var(--padding-block-reduced);
  }
}
.story-vertical-header .container > .row > div:last-child > div:first-child > div {
  flex: 0 0 auto;
  width: 84.61538462%;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child > div:first-child > div {
    flex: 0 0 auto;
    width: 100%;
  }
}
.story-vertical-header .container > .row > div:last-child > div:first-child > div p.copy-large {
  font-size: 35px;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child > div:first-child > div p.copy-large {
    font-size: 22px;
  }
}
.story-vertical-header .container > .row > div:last-child > div:first-child > div p.copy-large::first-letter {
  font-family: "Canora Frente";
  font-size: 140px;
  font-weight: 400;
  line-height: 0.55em;
  letter-spacing: 0;
}
.story-vertical-header .container > .row > div:last-child > div:last-child {
  margin-top: var(--padding-block-standard);
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child > div:last-child {
    margin-top: var(--padding-block-reduced);
  }
}
.story-vertical-header .container > .row > div:last-child > div:last-child > div {
  flex: 0 0 auto;
  width: 84.61538462%;
}
@media (max-width: 1023.98px) {
  .story-vertical-header .container > .row > div:last-child > div:last-child > div {
    flex: 0 0 auto;
    width: 100%;
  }
}

.story-horizontal-header {
  padding-top: 0;
}
.story-horizontal-header .hero .media {
  height: calc(100% - 40px);
  position: relative;
}
.story-horizontal-header .hero .media .reveal {
  position: relative;
  z-index: 1;
}
.story-horizontal-header .hero .media .reveal .media-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.story-horizontal-header .hero .media .reveal .media-holder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.story-horizontal-header .hero .media .reveal .media-holder > div {
  height: 100%;
}
.story-horizontal-header .hero .media .reveal .media-holder > div picture, .story-horizontal-header .hero .media .reveal .media-holder > div .video-holder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.story-horizontal-header .hero .media .reveal .media-holder > div picture img, .story-horizontal-header .hero .media .reveal .media-holder > div picture video, .story-horizontal-header .hero .media .reveal .media-holder > div .video-holder img, .story-horizontal-header .hero .media .reveal .media-holder > div .video-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-horizontal-header .hero .media .reveal .media-holder .open-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.story-horizontal-header .hero .media .reveal .media-holder .open-gallery:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 20%;
  pointer-events: none;
}
.story-horizontal-header .hero .media .reveal .media-holder .open-gallery span {
  color: #FFFFFF;
  position: absolute;
  inset: auto 1em 1em;
  text-align: center;
}
.story-horizontal-header .hero .media .reveal .media-holder:has(.open-gallery) img {
  transition: transform 450ms;
}
.story-horizontal-header .hero .media .reveal .media-holder:has(.open-gallery):hover img {
  transform: scale(1.125);
}
.story-horizontal-header .hero .media .reveal .media-holder:before {
  background-color: rgba(0, 0, 0, var(--opacity));
}
.story-horizontal-header .hero .media .container {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
}
.story-horizontal-header .hero .media .container .row > div {
  flex: 0 0 auto;
  width: 58.33333333%;
  margin-left: 20.83333333%;
  margin-bottom: var(--padding-block-standard);
}
@media (max-width: 1023.98px) {
  .story-horizontal-header .hero .media .container .row > div {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 4.16666667%;
  }
}
.story-horizontal-header .hero .media .container .row > div * {
  color: #FDF9F3;
}
.story-horizontal-header .hero .caption {
  display: flex;
  align-items: center;
}
.story-horizontal-header .hero .caption .row > div {
  flex: 0 0 auto;
  width: 91.66666667%;
  margin-left: 4.16666667%;
}
.story-horizontal-header .hero .caption .row > div span {
  font-family: "SwissNow";
  font-weight: 340;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .story-horizontal-header .hero .caption .row > div span {
    font-size: 11px;
  }
}
.story-horizontal-header .hero .caption .row > div span {
  display: inline-block;
  padding-block: 10px;
}
.story-horizontal-header .hero .caption .row > div span a {
  font-weight: 600;
  color: #222223;
}
.story-horizontal-header .story-intro {
  margin-top: var(--padding-block-standard);
}
.story-horizontal-header .story-intro .row > div {
  flex: 0 0 auto;
  width: 45.83333333%;
  margin-left: 33.33333333%;
}
@media (max-width: 1023.98px) {
  .story-horizontal-header .story-intro .row > div {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 4.16666667%;
  }
}
.story-horizontal-header .story-intro .row > div p.copy-large {
  font-size: 35px;
}
@media (max-width: 1023.98px) {
  .story-horizontal-header .story-intro .row > div p.copy-large {
    font-size: 22px;
  }
}
.story-horizontal-header .story-intro .row > div p.copy-large::first-letter {
  font-family: "Canora Frente";
  font-size: 140px;
  font-weight: 400;
  line-height: 0.55em;
  letter-spacing: 0;
}
.story-horizontal-header .story-description {
  margin-top: var(--padding-block-reduced);
}
.story-horizontal-header .story-description .row > div {
  flex: 0 0 auto;
  width: 45.83333333%;
  margin-left: 41.66666667%;
}
@media (max-width: 1023.98px) {
  .story-horizontal-header .story-description .row > div {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 4.16666667%;
  }
}
/*# sourceMappingURL=maps/style.css.map */
