:root {
  --black: black;
  --bronze: #b78d49;
  --dim-grey: #636363;
  --slate: #0e302d;
  --white: white;
  --light-blue: #eaedf2;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  letter-spacing: .02vw;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 1vw;
  font-family: Playfair Display, sans-serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
}

h2 {
  color: var(--black);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 1vw;
  font-family: Oswald, sans-serif;
  font-size: 2.1vw;
  font-weight: 500;
  line-height: 3.1vw;
}

h3 {
  color: var(--bronze);
  margin-top: 2vw;
  margin-bottom: 1vw;
  font-family: Playfair Display, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 2.5vw;
}

h4 {
  color: var(--black);
  margin-top: 2vw;
  margin-bottom: 1vw;
  font-family: Lato, sans-serif;
  font-weight: 900;
}

h5 {
  color: var(--black);
  margin-top: 1vw;
  margin-bottom: .5vw;
  font-family: Lato, sans-serif;
  font-size: 1.2vw;
  font-weight: 900;
  line-height: 1.75vw;
}

h6 {
  color: var(--bronze);
  margin-top: 1vw;
  margin-bottom: 1.5vw;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

p {
  color: var(--dim-grey);
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 1vw;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 35px;
}

a {
  color: var(--bronze);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 2vw;
  padding-left: 4vw;
}

li {
  color: var(--dim-grey);
  letter-spacing: .01vw;
  margin-top: .5vw;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

img {
  max-width: 100%;
  margin-bottom: 0;
  display: inline-block;
}

strong {
  font-weight: bold;
}

blockquote {
  color: var(--bronze);
  border-left: 1px #000;
  margin-top: 3vw;
  margin-bottom: 5vw;
  padding: 0 4vw;
  font-family: Playfair Display, sans-serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
}

figure {
  margin-top: 3vw;
  margin-bottom: 3vw;
}

figcaption {
  opacity: .75;
  color: var(--dim-grey);
  text-align: left;
  margin-top: 1.5vw;
  margin-bottom: 2vw;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.cover {
  background-color: #f1f1f1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cover-overlay {
  z-index: 1;
  background-color: #03030399;
  width: 100%;
  height: 100vh;
  position: absolute;
}

.sc-content-holder {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  left: 0%;
  right: 0%;
}

.button-style-1 {
  background-color: var(--bronze);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  transition: background-color .2s;
  display: flex;
}

.button-style-1:hover {
  background-color: var(--slate);
}

.button-style-1.large {
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 100vw;
  width: 100%;
  height: 99px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-family: Playfair Display, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 3vw;
}

.button-style-1.large:hover {
  background-color: #b18c34;
}

.style-4s {
  color: var(--slate);
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.style-4s.white {
  color: #fff;
}

.style-4s.white.inline {
  display: inline-block;
}

.style-4s.white-faded {
  color: #ffffffa6;
  transition: color .1s;
}

.style-4s.white-faded:hover {
  color: var(--white);
}

.style-4s.menu-link {
  color: #fff9;
  transition: color .15s;
}

.style-4s.menu-link:hover {
  color: var(--white);
}

.style-4s.concierge {
  text-align: center;
}

.style-4s.contact-subhead {
  color: var(--white);
  text-align: center;
}

.style-4s.concierge-subtitle {
  color: var(--white);
}

.sc-sub-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 2vw;
  display: flex;
  overflow: hidden;
}

.global-container {
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  display: flex;
}

.global-container.food-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.global-container.button {
  flex-direction: column;
  align-items: center;
}

.global-container.about {
  align-items: center;
  width: 90vw;
}

.global-container.fb-container {
  z-index: 2;
  align-items: center;
  width: 70vw;
  position: absolute;
}

.eyebrow {
  color: var(--slate);
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.about-description-holder {
  margin-top: 5vw;
  margin-bottom: 5vw;
}

.button-style-5 {
  border-bottom: 1px solid var(--bronze);
  color: var(--bronze);
  text-align: center;
  letter-spacing: .2vw;
  text-transform: uppercase;
  background-color: #0000;
  padding: 0 0 5px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  transition: color .2s;
}

.button-style-5:hover {
  color: var(--slate);
}

.book-button {
  z-index: 100;
  border-radius: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-bottom: 4vw;
  margin-right: 2vw;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.fullbleed-image {
  background-color: #f1f1f1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.quote-holder {
  padding-left: 80px;
  padding-right: 80px;
}

.navbar {
  z-index: 100;
  border-bottom: 1px solid #fff3;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-width: 94vw;
  max-width: 900px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
}

.navbar-logo-holder {
  border-bottom: 30px #dd2f2f;
  margin-right: auto;
}

.navbar-link-holder {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.button-navbar {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0000;
  align-items: center;
  height: 100%;
  margin-left: 23px;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  display: flex;
}

.button-navbar:hover, .button-navbar.w--current {
  border-bottom: 4px solid var(--white);
  padding-top: 4px;
}

.button-navbar.link-delay {
  font-size: 12px;
  line-height: 14px;
}

.button-navbar.link-delay:hover {
  border-bottom: 6px solid var(--white);
  padding-top: 5px;
}

.button-navbar.link-delay.w--current {
  border-bottom: 5px solid var(--white);
  padding-top: 5px;
}

.button-navbar.dark {
  color: var(--slate);
}

.button-navbar.dark:hover {
  border-bottom-color: var(--slate);
}

.navbar-icon-holder {
  margin-bottom: 8px;
  margin-left: 30px;
}

.navbar-right {
  align-items: center;
  height: 100%;
  display: flex;
}

.menu {
  z-index: 200;
  background-color: var(--slate);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-link-holder {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.style-1xl {
  color: var(--black);
  text-align: center;
  letter-spacing: -.1vw;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 6vw;
  font-weight: 400;
  line-height: 7vw;
}

.cover-image, .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.global-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.global-section.global-rich-text.no-margin-bottom {
  padding-bottom: 0;
}

.global-section.global-rich-text.concierge {
  background-color: var(--light-blue);
}

.global-section.first {
  padding-bottom: 0;
}

.global-section.food-image {
  padding-top: 0;
  padding-bottom: 0;
}

.global-section.book-now {
  align-items: stretch;
}

.global-section.no-top-margin {
  padding-top: 0;
}

.global-section.line-break {
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.global-section.line-break.section-landing, .global-section.line-break.dine-with-us {
  padding-top: 0;
  padding-bottom: 0;
}

.global-section.fb-section {
  height: 40vw;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.global-section.faq-header, .global-section.blue {
  background-color: var(--light-blue);
}

.style-1m {
  color: var(--black);
  text-align: center;
  letter-spacing: -.1vw;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 3.5vw;
  font-weight: 400;
  line-height: 4.5vw;
}

.style-1m.align-left {
  text-align: left;
}

.style-1m.white {
  color: var(--white);
}

.style-1m.banner-title {
  color: var(--white);
  text-align: center;
  margin-top: 0;
}

._3up-image-holder {
  width: 100%;
  height: 17vw;
  position: relative;
  overflow: hidden;
}

._3up-image-holder.rooms {
  height: 17vw;
  position: relative;
}

._3up-text-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2vw;
  display: flex;
}

._3up-description {
  margin-bottom: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
}

.ps {
  letter-spacing: .01vw;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}

.ps.left {
  text-align: left;
  width: 90%;
}

.ps.left.article {
  width: 100%;
  margin-top: .5vw;
}

.ps.footer-paragraph {
  color: #ffffff80;
  text-align: center;
}

.ps._3up-text {
  text-align: center;
}

.sc-button {
  overflow: hidden;
}

.accordion-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.accordion-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14vw;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
}

.accordion-item-trigger {
  height: 5.5vw;
}

.accordion-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.menu-items {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-link {
  color: #ffffff80;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.menu-spacer {
  background-color: #ffffff4d;
  width: 1px;
  height: 13vw;
  margin-top: 8px;
}

.menu-container {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  display: flex;
  position: absolute;
}

.menu-footer {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1vw;
  padding-top: 19px;
  padding-bottom: 19px;
  display: flex;
}

.navbar-sticky {
  z-index: 101;
  background-color: var(--white);
  border-bottom: 1px solid #0003;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 80px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: fixed;
}

.navbar-sticky.transparent {
  background-color: #fff0;
}

.curtain {
  z-index: 300;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.feature-card {
  background-color: #eaedf2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 50px;
  display: flex;
}

.fc-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.fc-image-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.style-1l {
  color: var(--black);
  text-align: center;
  letter-spacing: -.1vw;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 7vw;
}

.style-1l.white {
  color: var(--white);
}

.style-1l.concierge-title {
  color: var(--white);
  text-align: center;
}

.style-1s {
  color: var(--black);
  text-align: center;
  letter-spacing: -.075vw;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
}

.style-1s.contact-info {
  color: var(--black);
  text-align: center;
}

.style-1s.contact-info.address {
  margin-top: 2vw;
}

.style-1s.concierge {
  color: var(--bronze);
  transition: color .15s;
}

.style-1s.concierge:hover {
  color: var(--slate);
}

.fc-text {
  margin-bottom: 1.75vw;
  padding-left: 2vw;
  padding-right: 2vw;
}

.fc-column-1 {
  flex-direction: column;
  order: -1;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.fc-column-1.right {
  order: 1;
}

.fc-column-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.fc-columns {
  height: 45vw;
  margin-top: -100px;
  display: flex;
}

.footer-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-large {
  background-color: var(--slate);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
  display: flex;
}

.footer-links {
  width: 100%;
}

.footer-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-linebreak {
  background-color: #fff3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.footer-logo-holder {
  width: 17vw;
}

.footer-link-holder {
  margin-bottom: 17px;
}

.div-block-20 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.global-text-styles {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.global-text-styles h1 {
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.global-text-styles h2 {
  width: 100%;
  margin-top: 2vw;
  margin-bottom: 1vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.global-text-styles p {
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.75vw;
}

.global-text-styles li {
  padding-left: .5vw;
}

.global-text-styles ul, .global-text-styles ol {
  padding-left: 15vw;
  padding-right: 10.5vw;
}

.global-text-styles figcaption {
  width: 100%;
  padding-right: 10.5vw;
}

.global-text-styles figure {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5vw;
  margin-bottom: 5vw;
  display: block;
}

.global-text-styles h4, .global-text-styles h3 {
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.global-text-styles blockquote {
  border-left-style: none;
  margin-top: 2vw;
  margin-left: 10.5vw;
  padding-right: 10.75vw;
}

.global-text-styles strong {
  color: var(--black);
}

.global-text-styles h5 {
  float: left;
  margin: -.1vw 1vw 0 10.5vw;
  font-family: Oswald, sans-serif;
  font-size: 6vw;
  font-weight: 500;
  line-height: 6vw;
}

.global-text-styles h6 {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.bb-icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.footer-description-holder {
  width: 70%;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.footer-description {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1vw;
  display: flex;
}

.sc-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 7vw;
  padding-right: 7vw;
  display: flex;
  overflow: hidden;
}

.sc-title.home {
  margin-bottom: 4vw;
}

.link-in-page {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Gill Sans Nova;
  font-size: 12px;
  font-weight: 300;
}

.services-collection {
  grid-column-gap: 1vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.item-description-holder {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

.item-description-holder.event-details {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.item-description-holder.article-subhead {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.amenity-icon {
  width: 100%;
  height: 100%;
}

.amenity-icon-holder {
  opacity: .4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3vw;
  height: 3vw;
  margin-bottom: 14px;
  display: flex;
}

._3up-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-style-2-1 {
  border-bottom: 1px solid var(--bronze);
  color: var(--bronze);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0000;
  padding: 0 0 5px;
  font-family: Gill Sans Nova;
  font-size: 12px;
  font-weight: 300;
}

._3up {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

._4up-image {
  width: 100%;
  height: 12vw;
}

.ps-headline {
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Gill Sans Nova;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}

.ps-headline.space-above {
  margin-top: .5vw;
}

.ps-headline.event-details {
  text-align: center;
  margin-bottom: 0;
}

.div-block-31 {
  overflow: hidden;
}

.book-now-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

._3up-rollover {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.line {
  background-color: var(--bronze);
  width: 80%;
  height: 1px;
}

.line.left {
  margin-right: 2vw;
}

.line.right {
  margin-left: 2vw;
}

.view-icon {
  background-color: var(--bronze);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.button-holder {
  justify-content: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

._3up-link-holder {
  margin-top: .5vw;
  margin-bottom: 1vw;
}

.ps-headline-bold {
  color: var(--black);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 16px;
}

.image-list-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.image-list {
  border-bottom: 1px solid #4d546b4d;
}

.image-list-item {
  align-items: center;
  margin-top: 1.5vw;
  margin-bottom: 1.5vw;
}

.il-photo-holder {
  float: left;
  width: 9vw;
  height: 6vw;
  margin-top: 5px;
  margin-bottom: .5vw;
  margin-right: 2vw;
  display: inline-block;
}

.global-button-pill {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.button-style-4 {
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.sc-content {
  z-index: 2;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 70%;
  height: 100vh;
  display: flex;
  position: absolute;
}

.sc-holder {
  width: 100%;
  height: 50%;
}

.sc-holder.middle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80%;
  padding-top: 4vw;
  padding-bottom: 4vw;
  display: flex;
}

.sc-holder.top-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20%;
  display: flex;
}

.sc-holder.top-bottom.concierge {
  align-items: flex-start;
  height: 50%;
}

.sc-holder.top-bottom.concierge.top {
  justify-content: center;
  align-items: center;
  height: 45%;
}

.sc-holder.top-bottom.concierge.bottom {
  justify-content: center;
  align-items: center;
  height: 55%;
}

.sc-scroll-line {
  background-color: #ffffff4d;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 1px;
  height: 100%;
  margin-top: 2vw;
  display: flex;
}

.section-cover {
  background-color: #f1f1f1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-cover.concierge {
  height: 100vh;
}

.sc-overlay {
  z-index: 1;
  background-image: linear-gradient(#000, #0003 0%, #000000bf);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
}

.sc-image {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.section-cover-button {
  background-color: var(--bronze);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 35px;
  font-family: Gill Sans Nova;
  font-size: 10px;
  display: flex;
}

.items.blue, .events.blue, .menus.blue {
  background-color: var(--light-blue);
}

.image-list-collection {
  width: 100%;
  margin-left: 10.5vw;
  margin-right: 10.5vw;
}

.image-list-wrapper {
  justify-content: center;
  display: flex;
}

.linebreak {
  background-color: #96772c80;
  width: 100%;
  height: 1px;
}

.linebreak-holder.food-details {
  padding-top: 6vw;
}

.team-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-image-holder {
  border-radius: 200px;
  width: 70%;
  overflow: hidden;
}

.team-name {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
  display: flex;
}

.team-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

._2m {
  color: var(--black);
  text-align: center;
  letter-spacing: -.2vw;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
  display: block;
}

._2m.margin-reset {
  margin-top: 0;
  margin-bottom: 0;
}

._2m.margin-reset.align-center {
  text-align: center;
}

._2m._3up-subtitle {
  color: var(--bronze);
}

.style-3xs {
  color: var(--bronze);
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.75vw;
  transition: color .1s;
}

.style-3xs.animate-in.rollover:hover {
  color: var(--slate);
}

.style-1xs {
  color: var(--black);
  text-align: center;
  letter-spacing: -.05vw;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 2.2vw;
  font-weight: 400;
  line-height: 2.5vw;
}

.style-1xs.margin-reset {
  margin-top: 0;
  margin-bottom: 0;
}

.style-1xs.margin-reset.price {
  float: right;
  font-size: 1.75vw;
  display: inline-block;
}

.style-1xs.highlight-1 {
  color: var(--bronze);
  transition: color .1s;
}

.style-1xs.highlight-1:hover {
  color: var(--slate);
}

.style-1xs.white {
  color: #fff;
}

.style-1xs.concierge {
  color: var(--bronze);
  text-align: center;
  margin-top: 0;
}

.pxs {
  letter-spacing: .01vw;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.pxs.gallery-text {
  color: var(--white);
}

.fc-button {
  overflow: hidden;
}

.article-subhead {
  color: var(--bronze);
  text-align: center;
  font-family: Georgia, Times, Times New Roman, serif;
  font-style: italic;
  font-weight: 400;
}

.search-holder {
  justify-content: center;
  width: 100%;
  margin-top: 5vw;
  display: flex;
}

.search {
  align-items: center;
  width: 60%;
  height: 50px;
  margin-bottom: 0;
  display: flex;
}

.search.search-page {
  width: 100%;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.search-button {
  float: right;
  background-color: var(--bronze);
  letter-spacing: .15vw;
  text-transform: uppercase;
  width: 27%;
  height: 100%;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.search-input {
  float: left;
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #0000;
  height: 100%;
  margin-bottom: 0;
  padding-left: 2vw;
  padding-right: 2vw;
}

.search-input.style-2 {
  background-color: var(--light-blue);
  color: var(--slate);
}

.text-block-2 {
  color: #4d546b80;
  font-family: GT America;
  font-weight: 300;
}

.search-result-item {
  border-bottom: 1px solid #4d546b4d;
  margin-bottom: 3vw;
  padding-bottom: 3vw;
}

.div-block-40 {
  width: 90%;
  margin-bottom: .5vw;
}

.lightbox-link {
  width: 100%;
  height: 100%;
  margin-bottom: -5px;
  overflow: hidden;
}

.collection-item {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.lightbox-images {
  z-index: 0;
  height: 95vh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.big-lightbox {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 95vh;
  display: flex;
  position: relative;
}

.lightbox-button {
  z-index: 10;
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 4vw;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.gallery-cta {
  background-color: #0006;
  border-radius: 30px;
  padding: 13px 22px;
}

.pm {
  text-align: left;
  letter-spacing: .25px;
  font-family: Lato, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
}

.pm._3up-description, .pm._3up-text {
  text-align: center;
}

.pm._3up-text.animate-in {
  display: flex;
}

.div-block-41 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

._3up-subtitle-holder {
  text-align: center;
  width: 100%;
  margin-bottom: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
}

.fc-title {
  text-align: center;
  margin-bottom: 1vw;
  padding-left: 1vw;
  padding-right: 2vw;
}

.page-title-holder.article-headline {
  padding-left: 10vw;
  padding-right: 10vw;
}

.page-title-holder.food-drink-title {
  padding-left: 4vw;
  padding-right: 4vw;
}

.menu-link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

._3up-view-link {
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.highlight-1 {
  color: var(--bronze);
}

.style-4s-bold {
  color: var(--slate);
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 22px;
}

.style-4s-bold:hover {
  color: var(--bronze);
}

.il-title-holder {
  margin-top: .5vw;
}

.h5 {
  color: var(--black);
  font-family: Work Sans, sans-serif;
  font-size: .9vw;
  font-weight: 700;
  line-height: 1.25vw;
}

.h5.map-directions {
  margin-top: 1vw;
}

.list-price {
  float: right;
  color: var(--black);
  text-align: center;
  letter-spacing: -.05vw;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 2.5vw;
  display: inline-block;
}

.bb-icon-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 100%;
  padding-bottom: 4px;
  display: flex;
}

.bb-background {
  z-index: 0;
  background-color: var(--slate);
  width: 100%;
  height: 100%;
  position: absolute;
}

.bb-text {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 1.5vw;
  display: flex;
}

.bb-content {
  z-index: 1;
  justify-content: space-between;
  display: flex;
  position: static;
}

.faq-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
  display: flex;
}

.faq-item {
  overflow: hidden;
}

.faq-spacer {
  padding-bottom: 2vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.faq-trigger {
  cursor: pointer;
  padding-bottom: 2vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.faq-content {
  margin-bottom: 2vw;
  overflow: hidden;
}

.faq-line {
  background-color: #4d546b4d;
  width: 100%;
  height: 1px;
  padding-left: 10vw;
  padding-right: 10vw;
}

.white-faded {
  color: #ffffff80;
}

.faq-title {
  margin-bottom: 4vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.fullscreen-banner {
  display: flex;
}

.contact-holder {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.faq-spacer-end {
  margin-top: -2vw;
  margin-bottom: 2vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.white {
  color: var(--white);
}

.footer-logo {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer-small {
  background-color: #092321;
  border-top: 1px solid #fff3;
  align-items: center;
  width: 100%;
  padding: 2vw;
  display: flex;
}

.fs-content-holder {
  justify-content: space-between;
  width: 100%;
  min-height: 10px;
  display: flex;
}

.fs-content {
  align-items: flex-start;
  width: 50%;
}

.fs-content.left {
  display: flex;
}

.fs-content.right {
  justify-content: flex-end;
  display: flex;
}

.fs-text {
  color: #ffffff80;
}

.fs-text.spacing-left {
  margin-left: 1vw;
}

.fs-link {
  color: var(--white);
}

.div-block-42 {
  display: flex;
}

.fs-link-faded {
  color: #ffffff80;
}

.quote-source {
  margin-top: 2vw;
}

.article-category-title-holder {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.fb-image-holder {
  z-index: 0;
  column-count: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.fb-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fb-image-overlay {
  z-index: 1;
  background-image: linear-gradient(to right, #000c, #00000080 31%, #0000 70%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.fb-subhead {
  margin-bottom: 1vw;
}

.fb-content-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.faq-tab {
  border-bottom: 3px solid var(--light-blue);
  background-color: var(--light-blue);
  color: var(--bronze);
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  height: 100%;
  margin-right: 2vw;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.faq-tab.w--current {
  background-color: var(--light-blue);
  color: var(--black);
  letter-spacing: .15vw;
  text-transform: uppercase;
  border-bottom: 3px solid #000;
  font-size: 12px;
  font-weight: 900;
  line-height: 14px;
}

.faq-text-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.tabs {
  z-index: 1;
}

.filter {
  z-index: 100;
  background-color: var(--light-blue);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-bottom: 5vw;
  padding-left: 15vw;
  padding-right: 15vw;
  display: flex;
  overflow: auto;
}

.faq-text-styles {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.faq-text-styles h1 {
  text-align: center;
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.faq-text-styles h2 {
  text-align: center;
  width: 100%;
  margin-top: 2vw;
  margin-bottom: 1vw;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
  font-size: 1.75vw;
}

.faq-text-styles p {
  text-align: center;
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.75vw;
  font-family: Georgia, Times, Times New Roman, serif;
  font-weight: 400;
}

.faq-text-styles ul, .faq-text-styles ol {
  padding-left: 15vw;
  padding-right: 10.5vw;
}

.faq-text-styles figcaption {
  opacity: .5;
  color: var(--dim-grey);
  text-align: left;
  width: 100%;
  margin-top: 2vw;
  padding-right: 10.5vw;
}

.faq-text-styles figure {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5vw;
  margin-bottom: 5vw;
  display: block;
}

.faq-text-styles h4, .faq-text-styles h3 {
  text-align: center;
  width: 100%;
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.faq-text-styles blockquote {
  text-align: center;
  border-left-style: none;
  margin-top: 2vw;
  margin-left: 10.5vw;
  padding-right: 10.75vw;
}

.faq-text-styles strong {
  color: var(--black);
}

.faq-text-styles h5 {
  float: left;
  margin: -.5vw 1vw 0 10.5vw;
  font-family: Oswald, sans-serif;
  font-size: 6vw;
  font-weight: 500;
  line-height: 6vw;
}

.faq-text-styles h6 {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.style-2m {
  color: var(--slate);
  text-align: center;
  letter-spacing: .1vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 3.5vw;
}

.style-2m.animate-in {
  text-transform: none;
  font-family: Playfair Display, sans-serif;
  font-size: 4vw;
}

.style-2m.animate-in.white {
  color: var(--light-blue);
}

.menu-close-holder {
  cursor: pointer;
  align-items: center;
  margin-top: 30px;
  margin-right: 30px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.mc-icon-holder {
  margin-left: 1vw;
}

.div-block-43 {
  display: flex;
}

.color-swatch {
  width: 33%;
  height: 100px;
}

.color-swatch.color-1 {
  background-color: var(--slate);
}

.color-swatch.color-2 {
  background-color: var(--bronze);
}

.color-swatch.color-3 {
  background-color: var(--light-blue);
}

.div-block-44 {
  flex-direction: column;
  align-items: center;
  margin-bottom: 1vw;
  display: flex;
}

.navbar-image {
  object-fit: contain;
  width: 80%;
  height: 100%;
}

.footer-button-holder {
  margin-top: .5vw;
}

.faq-question-holder {
  padding-left: 10.5vw;
  padding-right: 10.5vw;
}

.div-block-46 {
  margin-bottom: 3vw;
}

.button-style-2 {
  background-color: var(--white);
  color: var(--bronze);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  transition: color .1s, background-color .1s;
  display: flex;
}

.button-style-2:hover {
  background-color: var(--slate);
  color: var(--white);
}

.button-style-3 {
  border: 1px solid var(--bronze);
  color: var(--bronze);
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  transition: color .1s, border-color .1s;
  display: flex;
}

.button-style-3:hover {
  border-color: var(--slate);
  color: var(--slate);
}

.div-block-47 {
  width: 50%;
  margin-bottom: 2vw;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding-top: 15vw;
  padding-bottom: 15vw;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-48 {
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.gallery-text {
  color: var(--white);
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.global-ns {
  width: 100%;
  height: auto;
}

.global-ns.large {
  height: 10vw;
}

.global-ns.medium {
  height: 8vw;
}

.global-ns.small {
  height: 3vw;
}

.global-ns.xlarge {
  height: auto;
}

.global-ns.blue {
  background-color: var(--light-blue);
}

.div-block-49 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ensuite-amenities {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.lightbox-holder {
  width: 100%;
  height: 100%;
}

.div-block-50, .div-block-51 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.div-block-52 {
  width: 100%;
  height: 100vh;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 100px;
  margin-bottom: 100px;
}

.grid._3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.light-photo {
  object-fit: cover;
  width: 100%;
  min-height: 340px;
  max-height: 340px;
}

.price-list {
  background-color: var(--slate);
  padding-top: 100px;
  padding-bottom: 100px;
}

.cenik {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.name-price-list {
  color: var(--bronze);
  text-align: left;
  letter-spacing: .1vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 3.5vw;
}

.name-price-list.animate-in {
  text-transform: none;
  font-family: Playfair Display, sans-serif;
  font-size: 4vw;
}

.name-price-list.animate-in.white {
  color: var(--light-blue);
}

.polozka-cenik {
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.left-price {
  margin-right: auto;
}

.polozka-price-list {
  color: var(--light-blue);
  text-align: center;
  letter-spacing: .1vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 1.4vw;
  font-weight: 500;
  line-height: 3.5vw;
}

.polozka-price-list.animate-in {
  text-transform: none;
  font-family: Playfair Display, sans-serif;
  font-size: 4vw;
}

.polozka-price-list.animate-in.white {
  color: var(--light-blue);
}

.right-price {
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.75vw;
    line-height: 2.75vw;
  }

  h1 {
    margin-bottom: 2vw;
    font-size: 4.5vw;
    line-height: 6vw;
  }

  h2 {
    margin-bottom: 2vw;
    font-size: 4vw;
    line-height: 5vw;
  }

  h3 {
    margin-top: 3vw;
    margin-bottom: 2vw;
    font-size: 3.5vw;
    line-height: 4vw;
  }

  h4 {
    margin-top: 3vw;
    margin-bottom: 2vw;
    font-size: 2.75vw;
    line-height: 3.25vw;
  }

  h5 {
    margin-top: 2vw;
    margin-bottom: 1.5vw;
    font-size: 2.25vw;
    line-height: 3.25vw;
  }

  h6 {
    margin-top: 2vw;
    margin-bottom: 1.5vw;
    font-size: 1.75vw;
    line-height: 2.75vw;
  }

  p {
    margin-bottom: 2vw;
    font-size: 2.5vw;
    line-height: 4vw;
  }

  li {
    margin-top: 2vw;
    margin-bottom: 2vw;
    font-size: 2.25vw;
    line-height: 3.5vw;
  }

  blockquote {
    margin-top: 4vw;
    margin-bottom: 7vw;
    padding-left: 5vw;
    padding-right: 0;
    font-size: 4.5vw;
    line-height: 6vw;
  }

  figure {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }

  figcaption {
    margin-top: 2vw;
    margin-bottom: 5vw;
    font-size: 2vw;
    line-height: 3vw;
  }

  .cover {
    min-height: 500px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cover-overlay {
    min-height: 500px;
  }

  .sc-content-holder {
    width: 90%;
    left: auto;
    right: auto;
  }

  .button-style-1 {
    height: 6vw;
    padding: 2vw 3vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .button-style-1.large {
    text-align: center;
    border-radius: 60px;
    height: auto;
    padding: 3vw 2vw;
    font-size: 3vw;
    line-height: 4vw;
  }

  .style-4s {
    letter-spacing: .3vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .sc-sub-title {
    margin-top: 2vw;
    margin-bottom: 4vw;
  }

  .global-container {
    width: 100%;
    min-height: 10px;
  }

  .eyebrow {
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .about-description-holder {
    margin-top: 8vw;
    margin-bottom: 8vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .button-style-5 {
    letter-spacing: .4vw;
    padding-bottom: 1vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .book-button {
    margin-bottom: 3vw;
    margin-right: 3vw;
    padding: 3vw;
  }

  .fullbleed-image {
    height: 80vw;
  }

  .quote-holder {
    margin-bottom: 3vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .navbar-logo-holder {
    width: 18vw;
  }

  .navbar-logo-holder.w--current {
    width: 25vw;
  }

  .navbar-link-holder {
    background-color: #fff;
    flex-flow: column;
    height: auto;
  }

  .button-navbar {
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .button-navbar.link-delay {
    letter-spacing: .3vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
  }

  .button-navbar.dark {
    min-height: 50px;
    font-size: 1.6vw;
  }

  .style-1xl {
    font-size: 11vw;
    line-height: 14vw;
  }

  .cover-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .image {
    object-fit: cover;
  }

  .global-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .global-section.book-now {
    padding-left: 0;
    padding-right: 0;
  }

  .global-section.fb-section {
    height: 50vw;
  }

  .global-section.faq-header {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .style-1m {
    font-size: 5.5vw;
    line-height: 6.5vw;
  }

  ._3up-image-holder {
    height: 40vw;
  }

  ._3up-image-holder.rooms {
    height: 20vw;
  }

  ._3up-text-holder {
    margin-top: 4vw;
  }

  ._3up-description {
    margin-bottom: 1.5vw;
    font-size: 1.75vw;
    line-height: 3vw;
  }

  .ps {
    letter-spacing: .02vw;
    font-size: 2vw;
    line-height: 3.25vw;
  }

  .accordion-wrapper {
    align-items: flex-start;
  }

  .accordion-item {
    width: 20%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .accordion-item-trigger {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 60px;
    display: flex;
  }

  .menu-items {
    margin-top: 1vw;
  }

  .footer-link {
    text-align: center;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .menu-spacer {
    background-color: #ffffff4d;
    width: 1px;
    height: 19vw;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .menu-container {
    width: 90%;
    min-height: 10px;
  }

  .feature-card {
    min-height: 60vw;
    margin-top: 10vw;
    padding: 5vw;
  }

  .fc-content {
    margin-top: 10vw;
    padding-left: 3vw;
    padding-right: 0;
  }

  .style-1l {
    font-size: 8vw;
    line-height: 11vw;
  }

  .style-1s {
    letter-spacing: -.5px;
    font-size: 5vw;
    line-height: 6vw;
  }

  .fc-text {
    margin-top: 1vw;
    margin-bottom: 2.5vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .fc-column-1 {
    height: 58vw;
  }

  .fc-columns {
    height: 57vw;
    margin-top: -10vw;
    display: flex;
  }

  .footer-large {
    padding: 10vw 5vw;
  }

  .footer-logo-holder {
    width: 30vw;
  }

  .global-text-styles h2 {
    margin-top: 6vw;
  }

  .global-text-styles p {
    margin-bottom: 2vw;
  }

  .global-text-styles ul {
    margin-bottom: 4vw;
    padding-left: 16vw;
  }

  .global-text-styles ol {
    width: auto;
    margin-bottom: 3vw;
    padding-left: 16vw;
  }

  .global-text-styles figcaption {
    padding-right: 10vw;
  }

  .global-text-styles figure {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }

  .global-text-styles h4 {
    font-size: 2.75vw;
    line-height: 4.25vw;
  }

  .global-text-styles h3 {
    margin-top: 4vw;
    margin-bottom: 2vw;
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .global-text-styles blockquote {
    padding-left: 6vw;
    padding-right: 10.75vw;
  }

  .global-text-styles h5 {
    margin-top: -1vw;
    font-size: 13vw;
    line-height: 13vw;
  }

  .footer-description-holder {
    width: 80%;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }

  .sc-title {
    width: 90%;
    padding: 2vw 4vw;
  }

  .link-in-page {
    text-align: center;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .services-collection {
    justify-content: center;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    overflow: auto;
  }

  .item-description-holder {
    padding-left: 11.5vw;
    padding-right: 11.5vw;
  }

  .amenity-icon-holder {
    width: 5vw;
    height: 5vw;
  }

  .button-style-2-1 {
    padding-bottom: 1vw;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  ._4up-image {
    height: 19vw;
  }

  .ps-headline {
    font-size: 2vw;
    line-height: 3.5vw;
  }

  .line {
    width: 40%;
  }

  .line.left {
    margin-right: 5vw;
  }

  .line.right {
    margin-left: 5vw;
  }

  .view-icon {
    width: 12vw;
    height: 12vw;
  }

  ._3up-link-holder {
    margin-bottom: 2vw;
  }

  .ps-headline-bold {
    font-size: 1.5vw;
    line-height: 3vw;
  }

  .image-list-grid {
    grid-template-columns: 1fr;
  }

  .image-list-item {
    margin-top: 3vw;
    padding-bottom: 1vw;
  }

  .il-photo-holder {
    width: 14vw;
    height: 10vw;
    margin-top: 0;
    margin-bottom: .5vw;
  }

  .global-button-pill {
    height: 6vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .global-button-pill.link-delay {
    width: auto;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .button-style-4 {
    width: auto;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .sc-content {
    width: 100%;
  }

  .sc-holder.top-bottom.concierge {
    padding-left: 10vw;
  }

  .sc-holder.top-bottom.concierge.top {
    justify-content: flex-start;
    align-items: center;
    padding-top: 20vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .sc-holder.top-bottom.concierge.bottom {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .section-cover, .sc-overlay, .sc-image {
    min-height: 500px;
  }

  .section-cover-button {
    font-size: 1.2vw;
    line-height: 2vw;
  }

  .linebreak-holder {
    width: 100%;
  }

  .team-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .team-image-holder {
    width: 80%;
  }

  .team-name {
    margin-top: 3vw;
  }

  .team-item {
    margin-bottom: 5vw;
  }

  .team-title {
    margin-top: 1vw;
  }

  ._2m {
    margin-bottom: .5vw;
    font-size: 2.5vw;
    line-height: 3vw;
  }

  .style-3xs {
    font-size: 2.4vw;
    line-height: 3.5vw;
  }

  .style-1xs {
    letter-spacing: -.1px;
    font-size: 3.5vw;
    line-height: 4.5vw;
  }

  .style-1xs.margin-reset.price {
    margin-top: -3px;
  }

  .pxs {
    font-size: 1.75vw;
    line-height: 2.75vw;
  }

  .pxs.gallery-text {
    margin-bottom: 0;
  }

  .search {
    width: 70%;
  }

  .search-button {
    letter-spacing: .3vw;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .search-result-item {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
  }

  .lightbox-link {
    height: 81vw;
  }

  .lightbox-images, .big-lightbox {
    height: 80vw;
  }

  .lightbox-button {
    padding-bottom: 5vw;
  }

  .gallery-cta {
    padding: 2vw 3vw;
  }

  .pm {
    font-size: 2.5vw;
    line-height: 3.75vw;
  }

  ._3up-subtitle-holder, .page-title-holder.events {
    margin-bottom: 1vw;
  }

  .page-title-holder.food-drink-title {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .menu-link, ._3up-view-link {
    text-align: center;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .style-4s-bold {
    letter-spacing: .4vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .il-title-holder {
    margin-top: 0;
  }

  .h5 {
    font-size: 2vw;
    line-height: 3vw;
  }

  .list-price {
    letter-spacing: -.1px;
    margin-top: -1vw;
    font-size: 2.5vw;
    line-height: 4.5vw;
  }

  .bb-icon-holder {
    width: 3vw;
    height: 2vw;
  }

  .bb-content {
    align-items: center;
    width: 100%;
  }

  .faq-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-title {
    margin-bottom: 3vw;
  }

  .footer-small {
    height: 14vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .fs-content.right {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .fs-text.spacing-left {
    margin-left: 1.5vw;
  }

  .quote-source {
    margin-top: 1vw;
  }

  .fb-title-holder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .fb-content-holder {
    width: 90%;
  }

  .faq-tab {
    letter-spacing: .4vw;
    margin-right: 4vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
  }

  .faq-tab.w--current {
    letter-spacing: .4vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
  }

  .filter {
    justify-content: flex-start;
    height: 10vw;
    margin-bottom: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .filter-title {
    text-align: center;
  }

  .faq-title-holder {
    padding-left: 11%;
    padding-right: 11%;
  }

  .faq-text-styles h2 {
    margin-top: 6vw;
    font-size: 4vw;
    line-height: 5vw;
  }

  .faq-text-styles p {
    margin-bottom: 4vw;
  }

  .faq-text-styles ul {
    padding-left: 16vw;
  }

  .faq-text-styles ol {
    width: auto;
    padding-left: 16vw;
  }

  .faq-text-styles figcaption {
    padding-right: 10vw;
  }

  .faq-text-styles figure {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }

  .faq-text-styles h4 {
    font-size: 2.75vw;
    line-height: 4.25vw;
  }

  .faq-text-styles h3 {
    margin-top: 4vw;
    margin-bottom: 2vw;
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .faq-text-styles blockquote {
    padding-left: 6vw;
    padding-right: 10.75vw;
  }

  .faq-text-styles h5 {
    margin-top: -1vw;
    font-size: 13vw;
    line-height: 13vw;
  }

  .style-2m {
    font-size: 4vw;
    line-height: 6vw;
  }

  .mc-icon-holder {
    margin-left: 2vw;
  }

  .navbar-image {
    width: 100%;
  }

  .footer-button-holder {
    margin-top: 0;
  }

  .button-style-2, .button-style-3 {
    height: 6vw;
    padding: 2vw 3vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
  }

  .div-block-47 {
    width: 75%;
    margin-bottom: 4vw;
  }

  .global-ns {
    height: 8vw;
  }

  .global-ns.large {
    height: 17vw;
  }

  .global-ns.medium {
    height: 13vw;
  }

  .global-ns.small {
    height: 5vw;
  }

  .name-price-list {
    font-size: 4vw;
    line-height: 6vw;
  }

  .polozka-price-list {
    font-size: 1.7vw;
    line-height: 6vw;
  }

  .menu-button {
    border: 1px solid var(--bronze);
    background-color: #b78d4900;
    margin-right: 20px;
  }

  .menu-button.w--open {
    background-color: var(--bronze);
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    width: 100%;
  }

  li {
    font-size: 2.25vw;
    line-height: 4vw;
  }

  figcaption {
    font-size: 2.5vw;
  }

  .cover {
    min-height: 500px;
    padding: 50px 5vw;
  }

  .cover-overlay {
    min-height: 500px;
  }

  .button-style-1 {
    text-align: center;
    letter-spacing: .5vw;
    height: 6vw;
    padding: 4vw;
    font-size: 1.75vw;
    line-height: 2.5vw;
  }

  .style-4s {
    letter-spacing: .3vw;
    font-size: 3vw;
    line-height: 2.5vw;
  }

  .style-4s.menu-link, .style-4s.menu-link.w--current {
    font-size: 1.75vw;
  }

  .sc-sub-title {
    margin-top: 1vw;
    margin-bottom: 4vw;
  }

  .eyebrow {
    font-size: 2vw;
    line-height: 3vw;
  }

  .about-description-holder {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .button-style-5 {
    letter-spacing: .5vw;
    font-size: 1.75vw;
    line-height: 2.5vw;
  }

  .book-button {
    height: 9vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .navbar {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .navbar-logo-holder {
    width: 23vw;
  }

  .button-navbar {
    font-size: 1.5vw;
    line-height: 2.5vw;
  }

  .button-navbar.link-delay {
    letter-spacing: .3vw;
  }

  .style-1xl {
    font-size: 11vw;
    line-height: 12vw;
  }

  .global-section.faq-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .style-1m {
    font-size: 4vw;
    line-height: 8vw;
  }

  .style-1m.animate-in {
    line-height: 5vw;
  }

  ._3up-image-holder {
    height: 19vw;
  }

  ._3up-text-holder {
    margin-top: 3vw;
  }

  .ps {
    font-size: 2.1vw;
    line-height: 3.3vw;
  }

  .menu-spacer {
    height: 25vw;
  }

  .navbar-sticky {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .feature-card {
    min-height: 70vw;
  }

  .fc-content {
    margin-top: 20vw;
    padding-left: 3vw;
  }

  .style-1s {
    letter-spacing: 0;
    font-size: 4.75vw;
  }

  .fc-text {
    margin-bottom: 2.5vw;
  }

  .fc-column-1 {
    height: 68vw;
  }

  .fc-columns {
    margin-top: -20vw;
  }

  .footer-logo-holder {
    width: 35vw;
  }

  .global-text-styles h1 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .global-text-styles h2 {
    width: 100%;
    margin-top: 9vw;
    margin-bottom: 4vw;
    padding-left: 0;
    padding-right: 0;
  }

  .global-text-styles p {
    width: 100%;
    margin-bottom: 2vw;
    padding-left: 0;
    padding-right: 0;
  }

  .global-text-styles ul {
    width: auto;
    padding-left: 8vw;
  }

  .global-text-styles ol {
    width: auto;
    padding-left: 12vw;
    list-style-type: decimal;
  }

  .global-text-styles figcaption {
    padding-left: 0;
    padding-right: 0;
  }

  .global-text-styles h4 {
    width: 100%;
    margin-top: 4vw;
    margin-bottom: 1vw;
    padding-left: 0;
    padding-right: 0;
    font-size: 3vw;
    line-height: 4vw;
  }

  .global-text-styles h3 {
    padding-left: 0;
    padding-right: 0;
    font-size: 3.5vw;
  }

  .global-text-styles blockquote {
    margin-left: 0;
  }

  .global-text-styles h5 {
    margin-left: 0;
    margin-right: 2vw;
    font-size: 11vw;
    line-height: 12vw;
  }

  .global-text-styles h6 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-description-holder {
    width: 100%;
    margin-top: 3vw;
  }

  .item-description-holder {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .amenity-icon-holder {
    width: 6vw;
    height: 6vw;
  }

  .button-style-2-1 {
    font-size: 2vw;
    line-height: 3vw;
  }

  ._4up-image {
    width: 30%;
    height: 17vw;
  }

  .ps-headline {
    text-align: left;
    line-height: 4vw;
  }

  .book-now-holder {
    padding-left: 0;
    padding-right: 0;
  }

  ._3up-link-holder {
    margin-bottom: 2vw;
  }

  .ps-headline-bold {
    font-size: 2vw;
    line-height: 3vw;
  }

  .image-list-grid {
    grid-template-columns: 1fr;
  }

  .image-list-item {
    margin-top: 4vw;
    margin-bottom: 3vw;
  }

  .il-photo-holder {
    width: 23vw;
    height: 16vw;
    margin-right: 3vw;
  }

  .global-button-pill {
    width: auto;
    padding: 4vw;
  }

  .global-button-pill.link-delay {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .button-style-4 {
    height: 8vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .sc-holder.top-bottom.concierge.top {
    justify-content: flex-start;
    padding-top: 30vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sc-holder.top-bottom.concierge.bottom {
    justify-content: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-cover {
    min-height: 500px;
    padding: 50px 5vw;
  }

  .sc-overlay, .sc-image {
    min-height: 500px;
  }

  .section-cover-button {
    text-align: center;
    padding: 4vw 6vw;
    font-size: 2vw;
    line-height: 2vw;
  }

  .image-list-collection {
    margin-left: 0;
    margin-right: 0;
  }

  .team-name {
    margin-top: 3vw;
  }

  ._2m {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .style-1xs {
    letter-spacing: 0;
    font-size: 3.5vw;
    line-height: 4.5vw;
  }

  .style-1xs.margin-reset.price {
    margin-top: -.5vw;
  }

  .search.search-page {
    margin-top: 2vw;
    margin-bottom: 6vw;
  }

  .search-button {
    width: 30%;
    font-size: 1.75vw;
    line-height: 3vw;
  }

  .search-input {
    width: 70%;
  }

  .search-result-item {
    padding-bottom: 5vw;
  }

  .lightbox-link {
    height: 51vh;
  }

  .lightbox-images, .big-lightbox {
    height: 50vh;
  }

  .gallery-cta {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .page-title-holder.events {
    margin-bottom: 1.5vw;
  }

  .page-title-holder.food-drink-title {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .style-4s-bold {
    font-size: 1.5vw;
  }

  .h5 {
    font-size: 2.25vw;
    line-height: 3.5vw;
  }

  .h5.map-directions {
    margin-top: 2vw;
  }

  .list-price {
    letter-spacing: 0;
    font-size: 3.5vw;
    line-height: 4.5vw;
  }

  .bb-icon-holder {
    width: 4vw;
    height: 2.5vw;
  }

  .faq-wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .faq-spacer, .faq-trigger, .faq-title, .contact-holder, .faq-spacer-end, .article-category-title-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-tab {
    letter-spacing: .4vw;
    margin-right: 6vw;
    font-size: 2vw;
    line-height: 3vw;
    position: static;
  }

  .faq-tab.w--current {
    letter-spacing: .4vw;
    font-size: 2vw;
    line-height: 3vw;
  }

  .filter {
    justify-content: flex-start;
    height: 80px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .faq-text-styles h1 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-text-styles h2 {
    width: 100%;
    margin-top: 9vw;
    margin-bottom: 4vw;
    padding-left: 0;
    padding-right: 0;
    font-size: 4.5vw;
    line-height: 5vw;
  }

  .faq-text-styles p {
    width: 100%;
    margin-bottom: 2vw;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-text-styles ul {
    width: auto;
    padding-left: 12vw;
  }

  .faq-text-styles ol {
    width: auto;
    padding-left: 12vw;
    list-style-type: decimal;
  }

  .faq-text-styles figcaption {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-text-styles h4 {
    width: 100%;
    margin-top: 4vw;
    margin-bottom: 1vw;
    padding-left: 0;
    padding-right: 0;
    font-size: 3vw;
    line-height: 4vw;
  }

  .faq-text-styles h3 {
    padding-left: 0;
    padding-right: 0;
    font-size: 3.5vw;
  }

  .faq-text-styles blockquote {
    margin-left: 0;
  }

  .faq-text-styles h5 {
    margin-left: 0;
    margin-right: 2vw;
    font-size: 12vw;
    line-height: 12vw;
  }

  .style-2m {
    font-size: 5vw;
    line-height: 7vw;
  }

  .faq-question-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-45 {
    margin-bottom: 2vw;
  }

  .div-block-46 {
    margin-bottom: 4vw;
  }

  .button-style-2, .button-style-3 {
    text-align: center;
    letter-spacing: .5vw;
    height: 6vw;
    padding: 4vw;
    font-size: 1.75vw;
    line-height: 2.5vw;
  }

  .div-block-48 {
    margin-bottom: 3vw;
  }

  .global-ns {
    height: auto;
  }

  .light-photo {
    min-height: 170px;
  }

  .cenik {
    margin-left: 20px;
    margin-right: 20px;
  }

  .name-price-list {
    font-size: 5vw;
    line-height: 7vw;
  }

  .polozka-price-list {
    font-size: 2.5vw;
    line-height: 7vw;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  h1 {
    margin-bottom: 4vw;
    font-size: 8vw;
    line-height: 11vw;
  }

  h2 {
    margin-bottom: 4vw;
    font-size: 6vw;
    line-height: 10vw;
  }

  h3 {
    margin-top: 5vw;
    margin-bottom: 4vw;
    font-size: 6.5vw;
    line-height: 10vw;
  }

  h4 {
    margin-top: 5vw;
    margin-bottom: 4vw;
    font-size: 5vw;
    line-height: 7vw;
  }

  h5 {
    margin-bottom: 3vw;
    font-size: 5vw;
    line-height: 7vw;
  }

  h6 {
    margin-top: 2vw;
    margin-bottom: 3vw;
    font-size: 4vw;
    line-height: 6vw;
  }

  p {
    margin-bottom: 4vw;
    font-size: 5vw;
    line-height: 7.5vw;
  }

  ul, ol {
    margin-bottom: 10vw;
  }

  li {
    font-size: 4.75vw;
    line-height: 7.25vw;
  }

  blockquote {
    margin-top: 7vw;
    margin-bottom: 10vw;
    padding-left: 0;
    font-size: 9vw;
    line-height: 12vw;
  }

  figure {
    margin-top: 9vw;
    margin-bottom: 9vw;
  }

  figcaption {
    margin-top: 4vw;
    margin-bottom: 8vw;
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .cover, .cover-overlay {
    height: 90vh;
  }

  .sc-content-holder {
    width: 80%;
  }

  .button-style-1 {
    letter-spacing: .75vw;
    padding: 6vw 7vw;
    font-size: 3vw;
    line-height: 5.5vw;
  }

  .button-style-1.large {
    padding-top: 5vw;
    padding-bottom: 5vw;
    font-size: 5.5vw;
    line-height: 6vw;
  }

  .style-4s {
    letter-spacing: .75vw;
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .style-4s.white-faded {
    letter-spacing: .5vw;
  }

  .style-4s.menu-link, .style-4s.menu-link.w--current {
    font-size: 3vw;
  }

  .sc-sub-title {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }

  .global-container {
    min-height: 10px;
  }

  .global-container.amenities {
    padding-left: 0;
    padding-right: 0;
  }

  .global-container.fb-container {
    width: 90vw;
  }

  .eyebrow {
    font-size: 3vw;
  }

  .about-description-holder {
    margin-top: 15vw;
    margin-bottom: 15vw;
    padding-left: 0;
    padding-right: 0;
  }

  .button-style-5 {
    letter-spacing: .75vw;
    padding-bottom: 2vw;
    font-size: 4vw;
    line-height: 6vw;
  }

  .book-button {
    margin-bottom: 10vw;
    margin-right: 5vw;
    padding: 6vw 7vw;
  }

  .fullbleed-image {
    height: 120vw;
  }

  .quote-holder {
    margin-bottom: 4vw;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
    inset: 0% auto auto 0%;
  }

  .navbar-logo-holder {
    width: 40vw;
  }

  .navbar-logo-holder.w--current {
    width: 50vw;
    margin-left: 20px;
  }

  .navbar-link-holder {
    display: none;
  }

  .button-navbar {
    padding-bottom: 2vw;
    font-size: 3vw;
  }

  .button-navbar.dark {
    min-height: 60px;
    font-size: 14px;
  }

  .navbar-icon-holder {
    z-index: 100;
    background-color: var(--bronze);
    color: var(--slate);
    padding: 10px;
    position: relative;
  }

  .menu {
    justify-content: center;
    height: 100vh;
    padding: 15vw 8vw;
    position: fixed;
    inset: 0%;
    overflow: visible;
  }

  .menu-link-holder {
    justify-content: flex-start;
    margin-top: 1vw;
    margin-bottom: 1vw;
  }

  .style-1xl {
    font-size: 13vw;
    line-height: 15vw;
  }

  .style-1xl.animated-text-group {
    line-height: 17vw;
  }

  .cover-image.concierge {
    object-fit: cover;
  }

  .global-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-section.global-rich-text, .global-section.food-image {
    padding-left: 0;
    padding-right: 0;
  }

  .global-section.line-break {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .global-section.fc-card-holder {
    padding-top: 30vw;
  }

  .global-section.fb-section {
    height: 70vw;
  }

  .global-section.faq-header {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-section.services {
    padding-left: 0;
    padding-right: 0;
  }

  .style-1m {
    font-size: 6vw;
    line-height: 11.5vw;
  }

  .style-1m.white.accordion-title {
    font-size: 11vw;
    line-height: 11vw;
  }

  ._3up-image-holder {
    background-color: var(--light-blue);
    width: 100%;
    height: 70vw;
  }

  ._3up-image-holder.rooms {
    height: 60vw;
  }

  ._3up-text-holder {
    margin-top: 5vw;
  }

  ._3up-description {
    margin-top: 1vw;
    margin-bottom: 0;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 3vw;
    line-height: 5vw;
  }

  .ps {
    margin-bottom: 3vw;
    font-size: 4.5vw;
    line-height: 7.5vw;
  }

  .ps.left {
    width: 100%;
    margin-bottom: 3vw;
  }

  .ps._3up-text {
    line-height: 7vw;
  }

  .ps._3up-text.animate-in {
    font-size: 4.5vw;
    line-height: 7vw;
  }

  .accordion-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 10px;
  }

  .accordion-item {
    width: 100%;
  }

  .accordion-item-trigger {
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
    display: flex;
  }

  .accordion-item-content {
    overflow: hidden;
  }

  .menu-items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 2vw;
    display: flex;
  }

  .footer-link {
    font-size: 3vw;
    line-height: 5vw;
  }

  .menu-spacer {
    display: none;
  }

  .menu-container {
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20vw;
    position: fixed;
  }

  .menu-footer {
    flex-direction: column;
    justify-content: space-between;
    margin-top: 5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    display: flex;
  }

  .navbar-sticky {
    border-bottom-style: none;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .fc-content {
    margin-top: 8vw;
    margin-bottom: 8vw;
    padding-left: 0;
  }

  .fc-image-holder {
    height: 50vw;
  }

  .fc-image-holder.vertical {
    height: 90vw;
  }

  .style-1l {
    font-size: 12vw;
    line-height: 15vw;
  }

  .style-1s {
    font-size: 8vw;
    line-height: 10vw;
  }

  .style-1s.contact-info.address {
    margin-top: 8vw;
  }

  .style-1s.concierge {
    font-size: 7vw;
    line-height: 9vw;
  }

  .fc-text {
    margin-top: 2vw;
    margin-bottom: 2.5vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .fc-column-1 {
    height: auto;
  }

  .fc-column-1.right {
    order: -1;
  }

  .fc-column-2 {
    height: auto;
  }

  .fc-columns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: -20vw;
  }

  .footer-large {
    padding: 20vw 5vw 8vw;
  }

  .footer-columns {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-logo-holder {
    width: 48vw;
  }

  .footer-section {
    margin-bottom: 5vw;
  }

  .global-text-styles {
    display: block;
  }

  .global-text-styles h1 {
    margin-top: 8vw;
    margin-bottom: 3vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-text-styles h2 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-text-styles p {
    margin-bottom: 7vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-text-styles li {
    padding-left: 0;
  }

  .global-text-styles ul {
    margin-top: -10px;
    padding-left: 13vw;
    padding-right: 8vw;
  }

  .global-text-styles ol {
    padding-left: 12vw;
    padding-right: 8vw;
  }

  .global-text-styles figcaption {
    margin-bottom: 8vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-text-styles h4 {
    padding-left: 8vw;
    padding-right: 8vw;
    font-size: 5vw;
    line-height: 6.5vw;
  }

  .global-text-styles h3 {
    padding-left: 8vw;
    padding-right: 8vw;
    font-size: 5.75vw;
    line-height: 7vw;
  }

  .global-text-styles blockquote {
    margin-left: 8vw;
    margin-right: 8vw;
    padding-left: 0;
    padding-right: 0;
  }

  .global-text-styles a {
    border-bottom: 1px solid #96772c80;
  }

  .global-text-styles h5 {
    margin-top: -1vw;
    margin-left: 8vw;
    font-size: 22vw;
    line-height: 23vw;
  }

  .global-text-styles h6 {
    padding-left: 8vw;
    padding-right: 9vw;
  }

  .footer-description-holder {
    margin-top: 5vw;
    margin-bottom: 3vw;
  }

  .sc-title {
    width: 100%;
    margin-top: 7vw;
    margin-bottom: 7vw;
    padding-left: 0;
    padding-right: 0;
  }

  .sc-title.home {
    margin-top: 6vw;
    margin-bottom: 10vw;
  }

  .link-in-page {
    font-size: 3vw;
    line-height: 5vw;
  }

  .services-collection {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: flex-start;
    overflow: hidden;
  }

  .item-description-holder.article-subhead {
    padding-left: 0;
    padding-right: 0;
  }

  .amenity-icon {
    width: 11vw;
  }

  .amenity-icon-holder {
    width: 11vw;
    height: 11vw;
  }

  ._3up-item {
    margin-bottom: 15vw;
  }

  .button-style-2-1 {
    padding-bottom: 2vw;
    font-size: 3vw;
  }

  ._3up {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  ._4up-image {
    height: 20vw;
  }

  .ps-headline {
    font-size: 3vw;
    line-height: 5vw;
  }

  .ps-headline.space-above {
    display: inline;
  }

  .ps-headline.event-details {
    text-align: center;
  }

  .navbar-icon {
    width: 7vw;
  }

  .line {
    width: 5%;
  }

  .view-icon {
    width: 25vw;
    height: 25vw;
  }

  .button-holder {
    width: 90%;
  }

  .ps-headline-bold {
    font-size: 3vw;
    line-height: 4vw;
  }

  .image-list-grid {
    grid-template-columns: 1fr;
  }

  .image-list {
    margin-bottom: 6vw;
    padding-bottom: 3vw;
  }

  .image-list-item {
    margin-top: 2vw;
    margin-bottom: 1vw;
  }

  .il-photo-holder {
    width: 24vw;
    height: 16vw;
    margin-bottom: 0;
    margin-right: 4vw;
  }

  .il-photo-holder.link-delay {
    width: 24vw;
    height: 16.5vw;
  }

  .global-button-pill {
    height: 14vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .global-button-pill.link-delay {
    height: 12vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .button-style-4 {
    height: 12vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sc-content.concierge {
    height: 90vh;
    margin-top: 80px;
  }

  .sc-holder.middle {
    justify-content: center;
    height: 60%;
  }

  .sc-holder.top-bottom {
    height: 20%;
  }

  .sc-holder.top-bottom.concierge {
    padding-left: 10vw;
  }

  .sc-holder.top-bottom.concierge.top {
    justify-content: center;
    height: 40%;
    padding-top: 0;
    padding-bottom: 15vw;
    padding-left: 8vw;
  }

  .sc-holder.top-bottom.concierge.bottom {
    justify-content: center;
    height: 60%;
    padding-top: 0;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .section-cover {
    height: 90vh;
  }

  .section-cover.concierge {
    justify-content: flex-start;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sc-overlay, .sc-image {
    height: 100vh;
  }

  .section-cover-button {
    padding: 5vw 8vw;
    font-size: 3vw;
    line-height: 3vw;
  }

  .team-list {
    grid-template-columns: 1fr 1fr;
  }

  .team-image-holder {
    width: 80%;
  }

  .team-name {
    margin-top: 4vw;
  }

  ._2m {
    margin-top: -4px;
    margin-bottom: 1vw;
    font-size: 4.5vw;
    line-height: 5.5vw;
  }

  .style-3xs {
    letter-spacing: -.1vw;
    font-size: 5vw;
    line-height: 7vw;
  }

  .style-1xs {
    font-size: 7.5vw;
    line-height: 10vw;
  }

  .style-1xs.margin-reset.price {
    margin-top: -1.5vw;
    margin-bottom: 2vw;
    margin-left: 3vw;
    font-size: 6vw;
  }

  .pxs {
    font-size: 3.5vw;
    line-height: 6vw;
  }

  ._3up-title-holder {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .search-holder {
    width: 90%;
    margin-top: 10vw;
  }

  .search {
    width: 100%;
    height: 12vw;
  }

  .search.search-page {
    margin-bottom: 12vw;
  }

  .search-button {
    letter-spacing: .75vw;
    width: 35%;
    font-size: 3vw;
    line-height: 5vw;
  }

  .search-input {
    border-radius: 0;
    width: 65%;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 3vw;
  }

  .search-result-item {
    margin-bottom: 8vw;
    padding-bottom: 8vw;
  }

  .div-block-40 {
    margin-bottom: 3vw;
  }

  .lightbox-link {
    height: 60vh;
  }

  .lightbox-images, .big-lightbox {
    height: 58vh;
  }

  .lightbox-button {
    padding-bottom: 10vw;
  }

  .gallery-cta {
    padding: 2vw 4vw;
  }

  .pm {
    font-size: 4.5vw;
    line-height: 6.5vw;
  }

  .page-title-holder.events {
    margin-bottom: 6vw;
  }

  .page-title-holder.article-headline {
    padding-left: 0;
    padding-right: 0;
  }

  .page-title-holder.food-drink-title {
    margin-bottom: 5vw;
  }

  .page-title-holder.experiences {
    margin-bottom: 6vw;
  }

  .menu-link {
    font-size: 3vw;
    line-height: 5vw;
  }

  ._3up-view-link {
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .style-4s-bold {
    letter-spacing: 1vw;
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .sc-text-holder {
    margin-bottom: 2vw;
  }

  .h5 {
    font-size: 4vw;
    line-height: 5vw;
  }

  .h5.map-directions {
    margin-top: 4vw;
  }

  .list-price {
    margin-top: 0;
    margin-bottom: 3vw;
    margin-left: 3vw;
    font-size: 5vw;
    line-height: 7vw;
  }

  .bb-icon-holder {
    width: 4vw;
    height: 5vw;
  }

  .bb-text {
    margin-right: 4vw;
  }

  .faq-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-spacer {
    padding: 4vw 8vw;
  }

  .faq-trigger {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-title {
    margin-bottom: 8vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .contact-holder {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-spacer-end {
    padding: 4vw 8vw;
  }

  .footer-small {
    height: auto;
    padding: 15vw 8vw 30vw;
  }

  .fs-content-holder {
    flex-direction: column;
    align-items: center;
  }

  .fs-content.left {
    width: 100%;
    margin-bottom: 5vw;
  }

  .fs-content.right {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .fs-text {
    text-align: center;
  }

  .fs-text.spacing-left {
    margin-left: 2vw;
  }

  .fb-image-holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .fb-image {
    object-fit: cover;
    object-position: 50% 50%;
    min-height: 170%;
  }

  .fb-image-overlay {
    background-image: linear-gradient(to right, #000c, #00000080 41%, #0000 77%);
  }

  .fb-content-holder {
    width: 60%;
  }

  .faq-tab {
    letter-spacing: 1vw;
    font-size: 3vw;
  }

  .faq-tab.w--current {
    letter-spacing: 1vw;
    font-size: 3vw;
    line-height: 5vw;
  }

  .filter {
    justify-content: flex-start;
    margin-bottom: 15vw;
    padding-top: 1vw;
    padding-left: 8vw;
    padding-right: 8vw;
    position: static;
  }

  .filter-title {
    line-height: 4vw;
  }

  .faq-title-holder {
    padding-left: 9%;
    padding-right: 9%;
  }

  .faq-text-styles {
    display: block;
  }

  .faq-text-styles h1 {
    margin-top: 8vw;
    margin-bottom: 3vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-text-styles h2 {
    padding-left: 8vw;
    padding-right: 8vw;
    font-size: 6.5vw;
    line-height: 8vw;
  }

  .faq-text-styles p {
    margin-bottom: 7vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-text-styles li {
    padding-left: 2px;
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .faq-text-styles ul {
    margin-top: -10px;
    padding-left: 12vw;
    padding-right: 8vw;
  }

  .faq-text-styles ol {
    padding-left: 12vw;
    padding-right: 8vw;
  }

  .faq-text-styles figcaption {
    margin-bottom: 8vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-text-styles h4 {
    padding-left: 8vw;
    padding-right: 8vw;
    font-size: 5vw;
    line-height: 6.5vw;
  }

  .faq-text-styles h3 {
    padding-left: 8vw;
    padding-right: 8vw;
    font-size: 5.75vw;
    line-height: 7vw;
  }

  .faq-text-styles blockquote {
    margin-left: 8vw;
    margin-right: 8vw;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-text-styles a {
    border-bottom: 1px solid #96772c80;
  }

  .faq-text-styles h5 {
    margin-top: -1vw;
    margin-left: 8vw;
    font-size: 21vw;
    line-height: 20vw;
  }

  .faq-text-styles h6 {
    padding-left: 8vw;
    padding-right: 9vw;
  }

  .style-2m {
    letter-spacing: .3vw;
    font-size: 6.5vw;
    line-height: 8vw;
  }

  .style-2m.animate-in {
    font-size: 6vw;
  }

  .menu-close-holder {
    margin-top: 8vw;
    margin-right: 8vw;
  }

  .navbar-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .faq-question-holder {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .div-block-45 {
    margin-bottom: 4vw;
  }

  .div-block-46 {
    margin-bottom: 6vw;
  }

  .button-style-2, .button-style-3 {
    letter-spacing: .75vw;
    padding: 6vw 7vw;
    font-size: 3vw;
    line-height: 3vw;
  }

  .div-block-47 {
    width: 100%;
  }

  .utility-page-content {
    width: 80%;
  }

  .global-ns {
    height: auto;
    margin-top: 60px;
  }

  .global-ns.large {
    height: 30vw;
  }

  .global-ns.medium {
    height: 20vw;
  }

  .global-ns.small {
    height: 10vw;
  }

  .global-ns.xlarge {
    height: auto;
  }

  .global-ns.blue.large {
    margin-top: 0;
  }

  .ensuite-amenities {
    margin-bottom: 5vw;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    margin: 0;
  }

  .light-photo {
    min-height: 200px;
    max-height: 200px;
  }

  .cenik {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-price-list {
    margin-bottom: 20px;
  }

  .name-price-list {
    letter-spacing: .3vw;
    font-size: 6.5vw;
    line-height: 8vw;
  }

  .name-price-list.animate-in {
    font-size: 6vw;
  }

  .polozka-cenik {
    margin-bottom: 20px;
  }

  .left-price {
    padding-right: 40px;
  }

  .polozka-price-list {
    text-align: left;
    letter-spacing: .3vw;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.3rem;
  }

  .polozka-price-list.animate-in {
    font-size: 6vw;
  }
}

#w-node-_36a38924-1b3f-d162-70aa-19f6718e8657-63b59842, #w-node-cd08413f-2d89-b99f-6c5c-25aab564242b-63b59842, #w-node-_4fab71dd-c833-f2c3-4e41-f9a1bb1bea00-63b59842, #w-node-_02676525-84ac-a4c9-fed4-caa611f4b330-63b59842, #w-node-_096cc93f-3812-bf21-8a96-3fa962b4e4cc-63b59842, #w-node-_377f06a5-6bf0-78a7-b5e6-24f4518e91fd-63b59842, #w-node-_75be0f83-82e2-2aa7-b34a-2adeddc7b9e6-63b59842, #w-node-_75be0f83-82e2-2aa7-b34a-2adeddc7b9e8-63b59842, #w-node-_75be0f83-82e2-2aa7-b34a-2adeddc7b9ea-63b59842, #w-node-_23595be4-f63c-4ae2-3aa3-418eb502df36-63b59842, #w-node-_23595be4-f63c-4ae2-3aa3-418eb502df3a-63b59842, #w-node-_23595be4-f63c-4ae2-3aa3-418eb502df3c-63b59842, #w-node-_23595be4-f63c-4ae2-3aa3-418eb502df3e-63b59842, #w-node-_23595be4-f63c-4ae2-3aa3-418eb502df40-63b59842, #w-node-b25f590f-793a-21ee-0633-7e2670bc25f5-63b59842, #w-node-_43f254f8-997f-d35f-90c3-9544507599b1-63b59842, #w-node-_54ad6b9f-cd07-7467-8757-40999b75f9be-63b59842 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Oswald';
  src: url('../images/') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}