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



:root {
  --white: white;
  --black: black;
  --644342: #644342;
  --dim-grey: #636363;
  --b99590: #b99590;
  --ab685f: #ab685f;
  --light-blue: #eaedf2;
  --e6e0e0: #e6e0e0;
  --816665: #816665;
}

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

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

h1 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 1vw;
  font-family: Playfair Display, sans-serif;
  font-size: 7em;
  font-weight: 400;
  line-height: 105%;
}

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: 115%;
}

h3 {
  color: var(--644342);
  margin-top: 0;
  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(--644342);
  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-size: 21px;
  font-weight: 400;
  line-height: 130%;
}

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

a:hover {
  color: var(--ab685f);
}

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(--644342);
  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;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
  display: flex;
  position: absolute;
  left: 0%;
  right: 0%;
}

.button-style-1 {
  background-color: var(--b99590);
  height: 50px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transition: background-color .2s;
  display: flex;
}

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

.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(--b99590);
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  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;
  align-items: stretch;
  width: 70vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

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

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

.eyebrow {
  color: var(--b99590);
  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 {
  text-align: center;
  margin-top: 5vw;
  margin-bottom: 5vw;
}

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

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

.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: 3vw;
  padding-right: 3vw;
}

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

.navbar-logo-holder {
  border-bottom: 30px #dd2f2f;
  height: 60%;
}

.navbar-logo-holder.w--current {
  justify-content: flex-start;
  height: 60%;
  display: flex;
}

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

.button-navbar {
  color: #fffc;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0000;
  align-items: center;
  height: 100%;
  margin-left: 23px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
  display: flex;
}

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

.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(--b99590);
}

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

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

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

.menu {
  z-index: 200;
  background-color: var(--b99590);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  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;
}

.cover-image {
  background-color: var(--644342);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image {
  object-fit: cover;
  border-radius: 2px;
  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.blue {
  background-color: var(--e6e0e0);
}

.global-section.faq-header {
  background-color: #eaedf2;
}

.style-1m {
  max-width: 1000px;
  color: var(--644342);
  text-align: center;
  letter-spacing: -.05vw;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Playfair Display, sans-serif;
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 115%;
}

.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 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  display: flex;
  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: 1vw;
  margin-bottom: 2vw;
  display: flex;
}

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

.ps {
  letter-spacing: .01vw;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
}

.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: 13vw;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
}

.accordion-item-trigger {
  justify-content: center;
  align-items: center;
  height: 5.5vw;
  display: flex;
}

.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%;
  height: 80px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: fixed;
}

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

.feature-card {
  background-color: var(--e6e0e0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 700px;
  margin-top: 100px;
  padding: 50px;
  display: flex;
}

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

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

.style-1l {
  max-width: 1200px;
  color: var(--black);
  text-align: center;
  letter-spacing: -.1vw;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 4.5vw;
  font-weight: 400;
  line-height: 100%;
}

.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(--644342);
  transition: color .15s;
}

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

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

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

.dine.hiden {
  display: block;
}

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

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

.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;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  text-align: justify;
  width: 100%;
}

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

.global-text-styles ul {
  padding-left: 2vw;
}

.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 {
  width: 100%;
  color: var(--ab685f);
}

.global-text-styles h3 {
  width: 100%;
  margin-left: -5px;
  padding-right: 2vw;
  font-size: 2.7vw;
  line-height: 4vw;
}

.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(--644342);
  font-weight: 700;
}

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

.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: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  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 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  display: block;
}

.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(--644342);
  color: var(--644342);
  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(--644342);
  width: 80%;
  height: 1px;
}

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

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

.view-icon {
  background-color: var(--644342);
  border-radius: 25px;
  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 {
  width: 100%;
  height: 80vh;
  color: var(--644342);
  background-color: #f1f1f1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.sc-overlay {
  z-index: 1;
  background-image: linear-gradient(to bottom, var(--644342), #6443424d 0%, #644342cc);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: flex;
  position: absolute;
}

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

.section-cover-button {
  background-color: var(--644342);
  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;
}

.intro.hiden {
  display: none;
}

.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(--644342);
}

.style-3xs {
  color: var(--644342);
  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: 145%;
  transition: color .1s;
}

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

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

.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(--644342);
  transition: color .1s;
}

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

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

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

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

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

.fc-button {
  overflow: hidden;
}

.article-subhead {
  color: var(--644342);
  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(--644342);
  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;
  height: 100%;
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #0000;
  margin-bottom: 0;
  padding-left: 2vw;
  padding-right: 2vw;
}

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

.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-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: .5vw;
  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: 1px;
  text-transform: uppercase;
  font-family: PT Sans, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

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

.style-4s-bold {
  max-width: 800px;
  color: var(--b99590);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: PT Sans, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 22px;
}

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

.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(--644342);
  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: var(--644342);
  border-top: 1px solid #fff3;
  align-items: center;
  width: 100%;
  padding: 2vw;
  display: flex;
}

.fs-content-holder {
  justify-content: center;
  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: center;
  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: 1vw;
}

.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);
  height: 100%;
  color: var(--644342);
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  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;
  width: 100%;
  color: var(--dim-grey);
  text-align: left;
  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(--b99590);
  text-align: center;
  letter-spacing: .1vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 2vw;
  font-weight: 500;
  line-height: 3.5vw;
}

.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 {
  justify-content: center;
  display: flex;
}

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

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

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

.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;
  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);
  height: 50px;
  color: var(--644342);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition: color .1s, background-color .1s;
  display: flex;
}

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

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

.button-style-3:hover {
  border-color: var(--b99590);
  background-color: var(--644342);
  color: var(--white);
}

.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: 3vw;
}

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

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

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

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

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

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

.ensuite-amenities {
  flex-direction: column;
  align-items: center;
  margin-left: 25px;
  margin-right: 25px;
  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;
}

.logo-uvod {
  height: 100px;
}

.medzera-25 {
  clear: left;
  width: 100%;
  height: 25px;
}

.biela {
  color: #fffc;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
}

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

.link {
  color: var(--b99590);
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
}

.link:hover {
  color: var(--ab685f);
}

.medzera-50 {
  clear: left;
  width: 100%;
  height: 50px;
}

.medzera-10 {
  clear: left;
  width: 100%;
  height: 10px;
}

.heading {
  margin-bottom: 10px;
}

.lightbox-link-2 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slider {
  width: 100%;
  height: 100%;
  color: var(--644342);
  position: absolute;
}

.slide {
  color: var(--644342);
}

.style-4s-bold-2 {
  color: #b99590;
  text-align: center;
  max-width: 800px;
  font-family: PT Sans, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 22px;
}

.style-4s-bold-2:hover {
  color: #644342;
}

.style-1xl-2 {
  color: #000;
  text-align: center;
  letter-spacing: -.1vw;
  margin-bottom: 0;
  font-size: 6vw;
  font-weight: 400;
}

.menu-5 {
  z-index: 200;
  background-color: #b99590;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.style-4s-2 {
  color: #b99590;
  text-align: center;
  letter-spacing: .15vw;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
}

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

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

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

.bb-background-2 {
  z-index: 0;
  background-color: #644342;
  width: 100%;
  height: 100%;
  position: absolute;
}

.gallery-text-2 {
  color: #fff;
}

.style-2m-2 {
  color: #b99590;
  text-align: center;
  letter-spacing: .1vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2vw;
  font-weight: 500;
  line-height: 3.5vw;
}

.line-2 {
  background-color: #644342;
  width: 80%;
  height: 1px;
}

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

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

.button-style-6 {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #b99590;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transition: background-color .2s;
  display: flex;
}

.button-style-6:hover {
  background-color: #fff;
}

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

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

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

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

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

.view-icon-2 {
  background-color: #644342;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

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

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

.style-4s-bold-3 {
  color: #b99590;
  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-3:hover {
  color: #644342;
}

.style-1xs-2 {
  color: #000;
  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-2.highlight-1 {
  color: #644342;
  transition: color .1s;
}

.style-1xs-2.highlight-1:hover {
  color: #b99590;
}

.style-2m-3 {
  color: #b99590;
  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;
}

.global-ns-2 {
  width: 100%;
  height: 5vw;
}

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

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

.global-container-2 {
  flex-direction: column;
  justify-content: center;
  width: 70vw;
  padding-bottom: 100px;
  display: flex;
}

.style-1s-2 {
  color: #000;
  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-2.concierge {
  color: #644342;
  transition: color .15s;
}

.style-1s-2.concierge:hover {
  color: #b99590;
}

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

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

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

.global-container-3 {
  flex-direction: column;
  justify-content: center;
  width: 70vw;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

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

.form-input {
  height: 60px;
  color: var(--black);
  background-color: #f0ebeb;
  border: 2px solid #f0ebeb;
  border-radius: 24px;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1.1em;
  font-weight: 700;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
}

.form-input:hover {
  border-color: var(--b99590);
}

.form-input:active {
  border-color: var(--ab685f);
}

.form-input.textovepole {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  margin-bottom: 30px;
}

.form-popis {
  color: var(--644342);
  margin-bottom: 10px;
  padding-left: 10px;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.form {
  flex-flow: column wrap;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.success {
  max-width: 600px;
  color: var(--b99590);
  text-align: center;
  background-color: #0000;
  margin-left: auto;
  margin-right: auto;
  font-family: PT Sans, sans-serif;
  font-weight: 700;
}

.text-block-3 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.center-right {
  clear: left;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.button-style-7 {
  background-color: var(--644342);
  height: 50px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
  display: flex;
}

.button-style-7:hover {
  border-color: var(--b99590);
  background-color: var(--816665);
  color: var(--white);
}

.gdpr-text {
  clear: left;
  color: var(--644342);
  flex: 1;
  padding-bottom: 30px;
  padding-left: 10px;
  font-family: Lato, sans-serif;
  font-size: 13px;
}

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

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

.menu-container-xxl {
  z-index: 1;
  background-color: var(--644342);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.footer-mal {
  background-color: var(--644342);
  border-top: 1px solid #fff3;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2vw;
  padding-bottom: 2vw;
  padding-right: 2vw;
  display: flex;
}

.fs-link-2 {
  color: #fff;
}

.footer-mal-2 {
  background-color: #644342;
  border-top: 1px solid #fff3;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2vw;
  padding-bottom: 2vw;
  padding-right: 2vw;
  display: flex;
}

.html-embed {
  width: 100%;
  height: 100%;
}

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

.image-partner {
  object-fit: scale-down;
  border-radius: 2px;
  width: 100%;
  max-width: 350px;
  height: 100%;
}

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

  h1 {
    margin-bottom: 2vw;
    font-size: 6em;
  }

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

  h3 {
    margin-bottom: 1vw;
    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;
  }

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

  .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 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .accordion-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .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: 5vw;
    line-height: 6vw;
  }

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

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

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

  .global-ns.xlarge {
    height: 15vw;
  }

  .heading-2 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

  .line-2 {
    width: 40%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .menu-container-xxl {
    min-height: 10px;
  }

  .footer-mal, .footer-mal-2 {
    height: 14vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

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

@media screen and (max-width: 767px) {
  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: 1.5vw;
    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;
    display: none;
  }

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

  .button-navbar.dark {
    display: none;
  }

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

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

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

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

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

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

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

  .accordion-item {
    width: 100%;
    overflow: visible;
  }

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

  .menu-spacer {
    height: 25vw;
    display: block;
  }

  .menu-container {
    padding-bottom: 20vw;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .menu-container-xxl {
    padding-bottom: 20vw;
  }
}

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

  h1 {
    margin-bottom: 4vw;
    font-size: 3.5em;
  }

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

  h3 {
    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: 3.5vw;
    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.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: 8vw;
    padding-right: 8vw;
  }

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

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

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

  .button-navbar.w--current, .button-navbar.dark {
    display: none;
  }

  .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.services {
    padding-left: 0;
    padding-right: 0;
  }

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

  .style-1m {
    font-size: 9.5vw;
    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 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20vw;
  }

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

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

  .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: 15vw;
  }

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

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

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

  .global-ns.xlarge {
    height: 40vw;
  }

  .ensuite-amenities {
    margin-bottom: 5vw;
  }

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

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

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

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

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

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

  .line-2 {
    width: 5%;
  }

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

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

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

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

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

  ._3up-image-holder-2 {
    background-color: #eaedf2;
    width: 100%;
    height: 70vw;
  }

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

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

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

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

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

  .global-ns-2 {
    height: 15vw;
  }

  .global-ns-2.medium {
    height: 20vw;
  }

  .global-ns-2.large {
    height: 30vw;
  }

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

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

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

  .ensuite-amenities-2 {
    margin-bottom: 5vw;
  }

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

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

  .navbar-icon-holder-2 {
    display: flex;
  }

  .menu-container-xxl {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20vw;
  }

  .footer-mal, .footer-mal-2 {
    height: auto;
    padding: 15vw 8vw 30vw;
  }
}


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