.w-image__inner-img {
  display: inherit;
  object-fit: inherit;
  aspect-ratio: inherit;
  object-position: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
}

.w-text-link {
  display: inline-flex;
  align-items: center;
  transition: all 150ms ease-in-out;
}
.w-text-link__anchor {
  color: var(--text-link-color);
  cursor: pointer;
  text-decoration: var(--text-link-text-decoration, none);
  display: flex;
  flex-direction: var(--text-link-flex-direction, row);
  align-items: center;
  gap: var(--spacing-4-rem);
}
.w-text-link__anchor--button {
  font: inherit;
  text-align: inherit;
}
.w-text-link__anchor--disabled {
  color: var(--color-fg-default-disabled);
  cursor: auto;
}
.w-text-link__anchor:hover {
  --text-link-text-decoration: underline;
}
.w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-text-link--light-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-text-link--dark-container {
  --text-link-color: var(--color-fg-brand-link-inverted);
}
.w-container--theme-light .w-text-link--default-container,
.w-container--theme-subtle .w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-container--theme-dark .w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link-inverted);
}
.w-text-link--size-small {
  --text-link-icon-size: var(--spacing-16-rem);
}
.w-text-link--size-medium {
  --text-link-icon-size: var(--spacing-24-rem);
}
.w-text-link--icon-left {
  --text-link-flex-direction: row-reverse;
}
.w-text-link svg {
  width: var(--text-link-icon-size);
  height: var(--text-link-icon-size);
  color: var(--text-link-color);
}

.w-badge {
  display: inline-flex;
  padding: var(--spacing-4-rem) var(--spacing-8-rem);
  align-items: center;
  gap: var(--spacing-4-rem);
  border-radius: var(--corner-radius-full-rem);
}
.w-badge--light-container {
  background: var(--color-container-default-lightest);
}
.w-badge--subtle-container {
  background: var(--color-container-default-subtle);
}
.w-badge--transparent-container .w-icon,
.w-badge--transparent-container .w-badge__star,
.w-badge--dark-container .w-icon,
.w-badge--dark-container .w-badge__star {
  color: var(--color-fg-default-primary-inverted);
  fill: var(--color-fg-default-primary-inverted);
}
.w-badge--transparent-container {
  background: none;
}
.w-badge--dark-container {
  background: var(--color-container-default-lightest-on-image-35);
  backdrop-filter: blur(calc(var(--effect-bg-blur-on-image, 20px) / 2));
}
.w-badge__label {
  margin-right: var(--spacing-4-rem);
}
.w-badge__star-wrapper {
  position: relative;
  display: inline-flex;
  min-width: calc(14/var(--size-rem-base)*1rem);
  min-height: calc(14/var(--size-rem-base)*1rem);
}
.w-badge__star--filled,
.w-badge__star--half-filled {
  fill: var(--color-fg-brand-primary);
}
.w-badge__star--half-filled {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 50% 0 0);
}
.w-badge--tag {
  border-radius: 0 0 var(--corner-radius-sm-rem) 0;
}
.w-badge--context-booking .w-icon,
.w-badge--context-booking .w-badge__label {
  color: var(--color-fg-default-secondary);
  fill: var(--color-fg-default-secondary);
}
.w-badge--context-accessible .w-icon,
.w-badge--context-accessible .w-badge__label {
  color: var(--color-fg-default-primary-inverted);
  fill: var(--color-fg-default-primary-inverted);
}

.w-favorite-button--loading {
  pointer-events: none;
}

.w-large-photo-module-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: var(--spacing-24-rem) var(--spacing-12-rem);
  aspect-ratio: 2/3;
  gap: var(--spacing-8-rem);
  border-radius: var(--corner-radius-lg-rem);
  box-shadow: 0 calc(2/var(--size-rem-base)*1rem) calc(20/var(--size-rem-base)*1rem) 0 rgba(0, 0, 0, .08);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight {
    --large-photo-module-spotlight-align-items: flex-start;
    --large-photo-module-spotlight-text-align: left;
    padding: var(--spacing-24-rem) var(--spacing-32-rem);
    aspect-ratio: 3/2;
    box-shadow: none;
  }
}
.w-large-photo-module-spotlight__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-large-photo-module-spotlight__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 40%,
      var(--color-container-default-tone-80) 100%);
}
.w-large-photo-module-spotlight__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: var(--spacing-16-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__content {
    gap: var(--spacing-24-rem);
  }
}
.w-large-photo-module-spotlight__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-16-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__header {
    flex-direction: row;
  }
}
.w-large-photo-module-spotlight__brand-icon {
  width: var(--spacing-48-rem);
  height: var(--spacing-48-rem);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  background-color: var(--color-container-default-lightest);
  filter: drop-shadow(0 calc(-3 / var(--size-rem-base) * 1rem) calc(6 / var(--size-rem-base) * 1rem) rgba(51, 51, 51, 0.06)) drop-shadow(0 0 calc(2 / var(--size-rem-base) * 1rem) rgba(85, 85, 85, 0.08));
}
.w-large-photo-module-spotlight__text-column {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: center;
  align-items: var(--large-photo-module-spotlight-align-items, center);
  min-width: 0;
}
.w-large-photo-module-spotlight__location {
  text-align: var(--large-photo-module-spotlight-text-align, center);
}
.w-large-photo-module-spotlight__title {
  align-self: stretch;
  text-align: var(--large-photo-module-spotlight-text-align, center);
}
.w-large-photo-module-spotlight__title-link {
  color: inherit;
  text-decoration: none;
}
.w-large-photo-module-spotlight__title-link:hover {
  text-decoration: underline;
}
.w-large-photo-module-spotlight__info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-32-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__info-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
}
.w-large-photo-module-spotlight__badges {
  display: flex;
  align-items: center;
  gap: var(--spacing-8-rem);
}
.w-large-photo-module-spotlight__ctas {
  display: flex;
  align-items: center;
  gap: var(--spacing-8-rem);
}

.w-large-photo-module {
  width: 100%;
  aspect-ratio: var(--large-photo-module-aspect-ratio, 375/562);
  position: relative;
  box-shadow: 0 var(--spacing-2-rem) var(--spacing-20-rem) 0 rgba(0, 0, 0, .08);
}
.w-large-photo-module--appearance-card {
  border-radius: var(--corner-radius-lg-rem);
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 769.07 / 432;
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 1023.64 / 575;
  }
}
@media (min-width: 1280px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 1280 / 719;
    max-height: calc(719/var(--size-rem-base)*1rem);
  }
}
.w-large-photo-module__container {
  position: absolute;
  inset: 0;
}
.w-large-photo-module__container--overlay {
  background: var(--color-container-default-tone-50, rgba(0, 0, 0, 0.5));
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container {
  background: var(--color-container-default-tone-50);
}
.w-large-photo-module__container--overlay-gradient {
  background: var(--large-photo-module-container-gradient, linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, var(--color-container-default-tone-80) 90%));
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container--overlay-gradient {
  --large-photo-module-container-gradient:
    linear-gradient(
      
      0deg,
      var(--color-container-default-lightest-on-image-80) 0%,
      var(--color-container-default-lightest-on-image-80) 100% );
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container--overlay:not(.w-large-photo-module__container--overlay-gradient) {
  background: var(--color-container-default-lightest-on-image-50, rgba(255, 255, 255, 0.5));
}
.w-large-photo-module__text-container {
  color: var(--color-fg-default-primary-inverted);
  text-align: var(--large-photo-module-text-align, center);
  display: flex;
  flex-direction: column;
  align-items: var(--large-photo-module-align-item, center);
  gap: var(--spacing-24-rem);
  position: absolute;
  inset: var(--large-photo-module-text-container-top, auto) var(--large-photo-module-text-container-right, auto) var(--large-photo-module-text-container-bottom, var(--spacing-32-rem)) var(--large-photo-module-text-container-left, auto);
  width: var(--large-photo-module-text-width, 100%);
  transform: var(--large-photo-module-text-container-transform, initial);
  padding: var(--large-photo-module-text-container-padding, var(--spacing-24-rem) var(--spacing-12-rem));
}
@media (min-width: 768px) {
  .w-large-photo-module__text-container {
    --large-photo-module-text-width: calc(458 / var(--size-rem-base) * 1rem);
    --large-photo-module-text-align: center;
    --large-photo-module-text-container-top: 50%;
    --large-photo-module-text-container-left: 50%;
    --large-photo-module-text-container-transform: translate(-50%, -50%);
  }
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__text-container {
  color: var(--color-fg-default-primary);
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__text-container {
  --large-photo-module-text-width: 100%;
  --large-photo-module-text-align: center;
  --large-photo-module-align-item: flex-start;
  --large-photo-module-text-container-transform: initial;
  --large-photo-module-text-container-top: auto;
  --large-photo-module-text-container-left: auto;
  --large-photo-module-text-container-right: auto;
  --large-photo-module-text-container-bottom: 0;
}
@media (min-width: 768px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__text-container {
    --large-photo-module-text-align: left;
    --large-photo-module-text-container-padding: var(--spacing-32-rem);
  }
}
.w-large-photo-module__info-container {
  display: flex;
  flex-direction: var(--large-photo-module-info-container-flex-direction, column);
  gap: var(--spacing-24-rem);
  align-items: center;
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__info-container {
  width: 100%;
}
@media (min-width: 1024px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__info-container {
    --large-photo-module-info-container-flex-direction: row;
    justify-content: space-between;
  }
}
.w-large-photo-module__subheading {
  padding: var(--spacing-12-rem) var(--spacing-32-rem);
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__subheading {
  border-radius: var(--corner-radius-md-rem);
  background: var(--color-container-default-lightest-on-image-35);
  backdrop-filter: blur(calc(var(--effect-bg-blur-on-image-rem) / 2));
}
.w-large-photo-module__link {
  color: var(--color-fg-brand-link-inverted);
  text-decoration: none;
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__link {
  color: var(--color-fg-brand-link);
}
.w-large-photo-module__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-large-photo-module__caption {
  color: var(--color-fg-default-primary-inverted);
  position: absolute;
  bottom: var(--large-photo-module-caption-bottom, var(--spacing-16-rem));
  left: var(--large-photo-module-caption-left, var(--spacing-16-rem));
  right: var(--large-photo-module-caption-right, var(--spacing-16-rem));
  padding: var(--spacing-12-rem) var(--spacing-16-rem);
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .w-large-photo-module__caption {
    --large-photo-module-caption-left: var(--spacing-24-rem);
    --large-photo-module-caption-right: var(--spacing-24-rem);
    --large-photo-module-caption-bottom: var(--spacing-24-rem);
  }
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__caption {
  color: var(--color-fg-default-primary);
}
.w-large-photo-module--clickable {
  cursor: pointer;
  transition: transform .2s ease;
}
.w-large-photo-module--clickable:hover {
  transform: scale(1.02);
}
.w-large-photo-module--clickable:focus-visible {
  outline: 2px solid var(--color-border-brand-primary);
  outline-offset: 2px;
}

.w-carousel-navigation {
  display: flex;
  align-items: center;
  gap: var(--spacing-12-rem);
}
.w-carousel-navigation__button-container {
  border-radius: var(--corner-radius-md-rem);
  display: var(--carousel-controls-button-display, none);
}
.w-carousel-navigation--theme-light .w-carousel-navigation__button-container {
  background: var(--color-container-default-subtle);
}
.w-carousel-navigation--single-slide .w-carousel-navigation__button-container {
  --carousel-controls-button-display: none;
}
@media (min-width: 768px) {
  .w-carousel-navigation--variant-counter:not(.w-carousel-navigation--single-slide) .w-carousel-navigation__button-container {
    --carousel-controls-button-display: flex;
  }
}
@media (min-width: 1024px) {
  .w-carousel-navigation--variant-default:not(.w-carousel-navigation--single-slide) .w-carousel-navigation__button-container {
    --carousel-controls-button-display: flex;
  }
}
@media (min-width: 768px) {
  .w-carousel-navigation--variant-counter:not(.w-carousel-navigation--single-slide).w-carousel-navigation--hide-controls-until-lg .w-carousel-navigation__button-container {
    --carousel-controls-button-display: none;
  }
}
@media (min-width: 1024px) {
  .w-carousel-navigation--variant-counter:not(.w-carousel-navigation--single-slide).w-carousel-navigation--hide-controls-until-lg .w-carousel-navigation__button-container {
    --carousel-controls-button-display: flex;
  }
}
.w-carousel-navigation--theme-light .w-carousel-navigation__prev-button,
.w-carousel-navigation--theme-light .w-carousel-navigation__next-button {
  color: var(--color-fg-brand-primary);
}
.w-carousel-navigation--theme-dark .w-carousel-navigation__prev-button,
.w-carousel-navigation--theme-dark .w-carousel-navigation__next-button {
  color: var(--color-fg-default-primary-inverted);
}
.w-carousel-navigation__dots-pagination {
  display: var(--carousel-navigation-dots-pagination-display, flex);
  align-items: center;
  gap: .5rem;
}
@media (min-width: 768px) {
  .w-carousel-navigation--variant-counter .w-carousel-navigation__dots-pagination {
    --carousel-navigation-dots-pagination-display: none;
  }
}
@media (min-width: 768px) {
  .w-carousel-navigation--variant-counter.w-carousel-navigation--hide-controls-until-lg .w-carousel-navigation__dots-pagination {
    --carousel-navigation-dots-pagination-display: flex;
  }
}
@media (min-width: 1024px) {
  .w-carousel-navigation--variant-counter.w-carousel-navigation--hide-controls-until-lg .w-carousel-navigation__dots-pagination {
    --carousel-navigation-dots-pagination-display: none;
  }
}
.w-carousel-navigation__pagination-item {
  --carousel-navigation-bullet-size: 0.5rem;
  width: var(--carousel-navigation-bullet-size);
  height: var(--carousel-navigation-bullet-size);
  border-radius: 50%;
  background-color: var(--carousel-navigation-bullet-color);
}
.w-carousel-navigation__pagination-item--active {
  --carousel-navigation-bullet-size: 0.75rem;
}
.w-carousel-navigation--theme-light .w-carousel-navigation__pagination-item {
  --carousel-navigation-bullet-color: var( --color-container-default-tone-20 );
}
.w-carousel-navigation--theme-light .w-carousel-navigation__pagination-item--active {
  --carousel-navigation-bullet-color: var(--color-fg-brand-primary);
}
.w-carousel-navigation--theme-dark .w-carousel-navigation__pagination-item {
  --carousel-navigation-bullet-color: var( --color-container-default-lightest-on-image-35 );
}
.w-carousel-navigation--theme-dark .w-carousel-navigation__pagination-item--active {
  --carousel-navigation-bullet-color: var( --color-container-default-lightest );
}
.w-carousel-navigation--single-slide .w-carousel-navigation__pagination-item {
  display: none;
}
.w-carousel-navigation__counter-text {
  color: var(--color-fg-default-primary-inverted);
  white-space: nowrap;
  min-width: 1rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

.w-large-photo-module-carousel {
  display: flex;
  flex-direction: column;
  position: relative;
}
.w-large-photo-module-carousel__navigation {
  justify-content: center;
  padding: var(--spacing-32-rem) 0;
}
.w-large-photo-module-carousel .swiper-slide {
  --swipper-slide-variation-height-padding: calc(28 / var(--size-rem-base) * 1rem);
  --swipper-slide-variation-height-padding-slide: calc(20 / var(--size-rem-base) * 1rem);
  --swipper-slide-variation-height-padding-support: calc(70 / var(--size-rem-base) * 1rem);
  --large-photo-module-carousel-slide-width: calc( (100vw - calc(12 / var(--size-rem-base) * 1rem)) / 1.1 );
  width: min(100%, var(--large-photo-module-carousel-slide-width));
  max-width: calc(939/var(--size-rem-base)*1rem);
  transition: padding .2s ease;
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide {
    --large-photo-module-carousel-slide-width: calc( (100vw - calc(48 / var(--size-rem-base) * 1rem)) / 1.75 );
  }
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide-next {
    padding: var(--swipper-slide-variation-height-padding) var(--swipper-slide-variation-height-padding-support) var(--swipper-slide-variation-height-padding) var(--swipper-slide-variation-height-padding-slide);
  }
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide-prev {
    padding: var(--swipper-slide-variation-height-padding) var(--swipper-slide-variation-height-padding-slide) var(--swipper-slide-variation-height-padding) var(--swipper-slide-variation-height-padding-support);
  }
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide-prev:not(.w-large-photo-module-carousel--centered-slides *) {
    visibility: hidden;
  }
}

.w-large-photo-module-carousel--centered-slides .swiper-slide {
  --swipper-slide-variation-height-padding-support: calc(64 / var(--size-rem-base) * 1rem);
  max-width: calc(322/var(--size-rem-base)*1rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel--centered-slides .swiper-slide {
    max-width: calc(573/var(--size-rem-base)*1rem);
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module-carousel--centered-slides .swiper-slide {
    max-width: calc(784.5/var(--size-rem-base)*1rem);
  }
}
@media (min-width: 1280px) {
  .w-large-photo-module-carousel--centered-slides .swiper-slide {
    max-width: calc(939/var(--size-rem-base)*1rem);
  }
}


/*# sourceMappingURL=9736.a65fcba6.css.map*/