@charset "UTF-8";
/*=======================================
              Import Fonts
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
.fancy {
  font-family: "Playfair Display", serif;
}

/*=======================================
              Colours
========================================*/
.text-black {
  color: #251E18;
}

/*=======================================
      Reset Styles for Main Elements
========================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*=======================================
              Box Sizing
========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=======================================
          Default Body Styles
========================================*/
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  color: #251E18;
}

/*=======================================
   Set Display Role for Older Browsers
========================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*=======================================
                Quotes
========================================*/
blockquote,
q {
  quotes: none;
}

blockquote {
  padding: 10px 30px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*=======================================
            Container Layout
========================================*/
.container {
  width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1500px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 15px;
  }
}
/*=======================================
              Helper Classes
========================================*/
.clearfix {
  clear: both;
}

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

/*=======================================
              Flex Classes
========================================*/
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*=======================================
          Link Default Styles
========================================*/
a {
  text-decoration: none;
}

a.cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0px;
}

a:hover {
  text-decoration: underline;
}

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

/*=======================================
              Buttons
========================================*/
a.button {
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 18px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  a.button {
    font-size: 14px;
    padding: 12px 15px;
  }
}
a.button.gold {
  background-color: #8E792E;
  color: #fff;
}
a.button.gold:hover {
  background-color: #251E18;
  color: #fff;
}
a.button.beige {
  background-color: #F4F2E5;
  color: #251E18;
}
a.button.beige:hover {
  background-color: #251E18;
  color: #fff;
}

/*=======================================
            List Default Styles
========================================*/
ul[class],
ol[class] {
  list-style: none;
}

/*=======================================
              Nice Selects
========================================*/
.starter-theme .nice-select {
  width: 250px;
  border: none;
  border-bottom: 2px solid #1D284A;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 0px;
  height: auto;
  float: none;
  font-size: 20px;
  line-height: 20px;
  font-family: "Quiet Sans Bold";
  color: #1D284A;
}
.starter-theme .nice-select:after {
  width: 10px;
  height: 10px;
  border-color: #1D284A;
  top: 17px;
  border-width: 3px;
}
.starter-theme .nice-select .list {
  width: 100%;
  background-color: #E8DACC;
}
.starter-theme .nice-select .option:hover,
.starter-theme .nice-select .option.focus,
.starter-theme .nice-select .option.selected.focus {
  background-color: #f1e5d9;
}
.starter-theme .nice-select:active, .starter-theme .nice-select.open, .starter-theme .nice-select:focus {
  border-color: #1D284A;
}

/*=======================================
            Table Default Styles
========================================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*=======================================
              Form Elements
========================================*/
input,
button,
textarea,
select {
  font: inherit;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select {
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  display: inline-block;
  padding: 6px 10px;
  margin: 5px 0;
  outline: none;
}

label {
  cursor: pointer;
}

/*=======================================
          Image Default Styles
========================================*/
img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
            Text Container
========================================*/
.text-container em {
  font-style: italic;
}
.text-container strong {
  font-weight: bold;
}
.text-container p,
.text-container ul,
.text-container ol {
  margin-bottom: 20px;
}
.text-container ul,
.text-container ol {
  margin-left: 30px;
}
.text-container img {
  width: auto;
  max-width: 100%;
  display: inline-block;
}
.text-container .wp-video {
  width: 100% !important;
}
.text-container iframe {
  width: 100% !important;
}
.text-container .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.text-container .video-container:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.text-container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=======================================
            Hide Admin Bar
========================================*/
@media only screen and (max-width: 1000px) {
  #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
}
/*=======================================
            Header & Spacing
========================================*/
header {
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 99;
  background-color: #fff;
}
@media (max-width: 1200px) {
  header {
    padding: 15px 0;
  }
}

html {
  margin-top: 0 !important;
}

html.no-scroll {
  overflow-y: hidden;
}

/*=======================================
        Hide Header On Scroll
========================================*/
header.nav-up,
.admin-bar header.nav-up {
  top: -200px;
}

/*=======================================
            Header Contents
========================================*/
header .contents {
  align-items: center;
  position: relative;
}
header .logo {
  position: relative;
  width: 320px;
  top: -4px;
}
@media screen and (max-width: 600px) {
  header .logo {
    width: 250px;
    top: -2px;
  }
}
header .right {
  position: relative;
  top: 2px;
  align-items: center;
}
header .right .menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  header .right .menu {
    display: none;
  }
}
header .right .menu .menu-item {
  margin-right: 24px;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  padding: 35px 0;
  position: relative;
  letter-spacing: -0.51px;
}
header .right .menu .menu-item a {
  text-decoration: none;
  color: #251E18;
}
header .right .menu .menu-item:hover > a, header .right .menu .menu-item.active > a {
  color: #8E792E;
}
header .right .menu .menu-item .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: -20px;
  background-color: #fff;
  width: max-content;
  min-width: 200px;
  padding: 30px 25px;
  border-radius: 5px;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.3);
}
header .right .menu .menu-item .sub-menu:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -7px;
  left: 45px;
  transform: rotate(45deg);
  background-color: #fff;
  border-radius: 3px;
}
header .right .menu .menu-item .sub-menu .menu-item {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
header .right .menu .menu-item .sub-menu .menu-item:last-of-type {
  margin-bottom: 0;
}
header .right .menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
header .right .buttons {
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 500px) {
  header .right .buttons {
    display: none;
  }
}
header .right .buttons .button {
  margin-right: 9px;
}
header .right .buttons .button:last-of-type {
  margin-right: 0;
}
@media (max-width: 1350px) {
  header .right .buttons .button {
    margin-right: 0;
  }
  header .right .buttons .button:last-of-type {
    display: none;
  }
}
@media (max-width: 1200px) {
  header .right .buttons .button {
    margin-right: 9px;
  }
  header .right .buttons .button:last-of-type {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  header .right .buttons .button:last-of-type {
    display: none;
  }
}
header .right .menu-toggle {
  margin-left: 15px;
}
@media screen and (min-width: 1200px) {
  header .right .menu-toggle {
    display: none;
  }
}
header .right .menu-toggle .btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
header .right .menu-toggle .btn-menu:focus {
  outline: none;
}
header .right .menu-toggle .btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
header .right .menu-toggle .btn-menu__bars {
  display: block;
  position: relative;
  width: 25px;
  height: 3px;
  background-color: #8E792E;
  transition: 0.3s;
  border-radius: 3px;
}
header .right .menu-toggle .btn-menu__bars:before, header .right .menu-toggle .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8E792E;
  transition: 0.3s;
}
header .right .menu-toggle .btn-menu__bars:before {
  transform: translate(0, -9px);
}
header .right .menu-toggle .btn-menu__bars:after {
  transform: translate(0, 9px);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}
header .mobile-menu {
  display: none;
  position: absolute;
  width: 100vw;
  margin: 0 -30px;
  height: calc(100vh - 97px);
  top: 81px;
  background-color: white;
  padding: 30px;
}
@media screen and (max-width: 600px) {
  header .mobile-menu {
    height: calc(100vh - 82px);
    top: 67px;
  }
}
@media screen and (max-width: 450px) {
  header .mobile-menu {
    margin: 0 -15px;
    padding: 15px;
  }
}
header .mobile-menu .menu-item {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #8E792E;
  padding: 12px;
}
header .mobile-menu .menu-item a {
  color: #000;
  text-decoration: none;
}
header .mobile-menu .menu-item.menu-item-has-children {
  position: relative;
}
header .mobile-menu .menu-item.menu-item-has-children:after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 11px;
  font-size: 35px;
  font-weight: 400;
  color: #8E792E;
}
header .mobile-menu .menu-item.menu-item-has-children.open:after {
  content: "-";
}
header .mobile-menu .menu-item .sub-menu {
  padding-top: 15px;
  display: none;
}
header .mobile-menu .menu-item .sub-menu .menu-item {
  border-bottom: none;
  padding: 0 0 12px 12px;
}

footer {
  padding: 65px 0;
  background: linear-gradient(180deg, #FFF 0%, #EEE 100%);
}
@media (max-width: 1000px) {
  footer {
    padding: 50px 0;
  }
}
footer h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.66px;
  margin-bottom: 75px;
}
@media (max-width: 1000px) {
  footer h2 {
    font-size: 38px;
    margin-bottom: 50px;
  }
}
footer .columns {
  justify-content: space-between;
  align-items: flex-start;
}
footer .columns .column {
  width: calc(33.3333333333% - 50px);
}
@media (max-width: 1000px) {
  footer .columns .column {
    width: calc(50% - 50px);
  }
}
@media (max-width: 650px) {
  footer .columns .column {
    width: 100%;
  }
}
footer .columns .column .col-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.42px;
  margin-bottom: 15px;
}
@media (max-width: 650px) {
  footer .columns .column#info {
    margin-bottom: 40px;
  }
}
footer .columns .column#info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3px;
}
footer .columns .column#info p a {
  color: #251E18;
  text-decoration: underline;
  word-break: break-all;
}
footer .columns .column#info address {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 45px;
}
footer .columns .column#info .social-link {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}
footer .columns .column#info .social-link .icon {
  width: 45px;
  text-align: center;
}
footer .columns .column#info .social-link .icon img {
  display: inline-block;
  height: 40px;
  width: auto;
}
footer .columns .column#info .social-link a {
  display: inline-block;
  margin-left: 8px;
  color: #251E18;
}
footer .columns .column#links .link {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
footer .columns .column#links .link svg {
  width: 6px;
  height: auto;
}
footer .columns .column#links .link a {
  display: inline-block;
  margin-left: 13px;
  color: #251E18;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  footer .columns .column#images {
    width: 100%;
  }
}
footer .columns .column#images .inner {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 280px;
  margin: 0 0 0 auto;
}
@media (max-width: 1000px) {
  footer .columns .column#images .inner {
    max-width: 100%;
    margin: 40px 0 0 0;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
footer .columns .column#images .inner .image {
  width: calc(50% - 10px);
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  footer .columns .column#images .inner .image {
    width: 100px;
    margin: 0 20px;
  }
}
footer .footer-bottom {
  padding-top: 70px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 650px) {
  footer .footer-bottom {
    font-size: 16px;
    padding-top: 50px;
  }
}

/*=======================================
            Page Banners
========================================*/
.page-banner {
  width: 100%;
}
.page-banner .slide {
  height: 525px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .page-banner .slide {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .page-banner .slide {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.page-banner #booking-form {
  background-color: white;
  width: 1340px;
  margin: 0 auto;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.3);
  padding: 40px;
  position: relative;
  top: -62px;
  z-index: 10;
}
@media (max-width: 1400px) {
  .page-banner #booking-form {
    width: calc(100% - 60px);
  }
}
@media (max-width: 450px) {
  .page-banner #booking-form {
    width: calc(100% - 30px);
  }
}
.page-banner #booking-form .inner {
  justify-content: center;
  align-items: center;
}
.page-banner #booking-form .form-title {
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
@media (max-width: 1000px) {
  .page-banner #booking-form .form-title {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
.page-banner #booking-form .form-title svg {
  width: 42px;
}
@media (max-width: 600px) {
  .page-banner #booking-form .form-title svg {
    width: 35px;
  }
}
.page-banner #booking-form .form-title .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.42px;
  margin-left: 8px;
}
@media (max-width: 600px) {
  .page-banner #booking-form .form-title .title {
    font-size: 24px;
  }
}
.page-banner #booking-form form {
  align-items: center;
}
@media (max-width: 800px) {
  .page-banner #booking-form form {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .page-banner #booking-form form .control-group {
    width: calc(50% - 10px);
  }
  .page-banner #booking-form form .control-group.submit-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .page-banner #booking-form form .control-group {
    width: 100%;
  }
}
.page-banner #booking-form form input[type=text] {
  border: none;
  border-bottom: 2px solid #251E18;
  width: 275px;
  margin-right: 25px;
  padding: 8px 8px 8px 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .page-banner #booking-form form input[type=text] {
    width: 200px;
  }
}
@media (max-width: 800px) {
  .page-banner #booking-form form input[type=text] {
    width: 100%;
  }
}
.page-banner #booking-form form input[type=text]::placeholder {
  color: #251E18;
}
@media (max-width: 800px) {
  .page-banner #booking-form form #submit {
    display: inline-block;
    margin: 20px auto 0;
  }
}
@media (max-width: 600px) {
  .page-banner #booking-form form #submit {
    display: block;
    width: 100%;
  }
}

/*=======================================
            Date Picker
========================================*/
.ui-datepicker {
  background-color: #EEE;
}
.ui-datepicker .ui-widget-header {
  background-color: #8E792E;
  border-color: #8E792E;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next.ui-datepicker-next-hover {
  background-color: inherit !important;
  border: none !important;
  color: #fff !important;
}
.ui-datepicker .ui-datepicker-calendar .ui-state-default {
  color: #251E18;
}
.ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-hover {
  background-color: #fff;
  border-color: #251E18;
}
.ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-highlight {
  background-color: #8E792E;
  color: #fff;
}

/*=======================================
            Card Grid
========================================*/
.card-grid {
  padding: 0 0 75px;
}
.card-grid h1 {
  text-align: center;
  max-width: 980px;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.66px;
  margin: 0 auto 50px;
}
@media (max-width: 1200px) {
  .card-grid h1 {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .card-grid h1 {
    font-size: 30px;
  }
}
.card-grid .cards {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -20px;
}
.card-grid .cards .card {
  width: calc(33.3333333333% - 40px);
  margin: 0 20px 40px;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.3);
  background-color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.card-grid .cards .card:hover {
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.6);
}
.card-grid .cards .card:hover .main .link .button.gold {
  background-color: #251E18;
  color: #fff;
}
@media (max-width: 1200px) {
  .card-grid .cards .card {
    width: calc(50% - 40px);
  }
}
@media (max-width: 800px) {
  .card-grid .cards .card {
    width: calc(100% - 40px);
  }
}
.card-grid .cards .card .main {
  padding: 30px 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 500px) {
  .card-grid .cards .card .main {
    padding: 30px;
  }
}
.card-grid .cards .card .main h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.42px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .card-grid .cards .card .main h2 {
    font-size: 24px;
  }
}
.card-grid .cards .card .main .subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .card-grid .cards .card .main .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/*=======================================
            Cronies
========================================*/
.cronies {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1000px) {
  .cronies {
    background-image: none !important;
    background-color: #251E18;
  }
}
.cronies .overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 33.81%, rgba(0, 0, 0, 0) 57.64%);
  position: absolute;
  inset: 0;
  z-index: 5;
}
@media (max-width: 1000px) {
  .cronies .overlay {
    display: none;
  }
}
.cronies .mobile-image {
  display: none;
}
@media (max-width: 1000px) {
  .cronies .mobile-image {
    display: block;
  }
}
.cronies .contents {
  position: relative;
  z-index: 6;
  max-width: 630px;
  padding: 75px 0;
}
@media (max-width: 1000px) {
  .cronies .contents {
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  .cronies .contents {
    padding: 30px 0;
  }
}
.cronies .contents .logo {
  width: 250px;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .cronies .contents .logo {
    width: 180px;
  }
}
.cronies .contents h2 {
  font-size: 44px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.66px;
  margin-bottom: 20px;
  color: #F4F2E5;
}
@media (max-width: 600px) {
  .cronies .contents h2 {
    font-size: 34px;
  }
}
.cronies .contents .subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.37;
  color: #F4F2E5;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .cronies .contents .subtitle {
    font-size: 20px;
  }
}

/*=======================================
            Location
========================================*/
.location {
  background: linear-gradient(180deg, #FFF 0%, #EEE 100%);
  padding-top: 60px;
}
@media (max-width: 600px) {
  .location {
    padding-top: 30px;
  }
}
.location .contents {
  justify-content: space-between;
  align-items: center;
}
.location .contents .left {
  width: calc(100% - 420px);
  padding-right: 130px;
}
@media (max-width: 1000px) {
  .location .contents .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.location .contents .left h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.63px;
  margin-bottom: 20px;
  max-width: 675px;
}
@media (max-width: 1200px) {
  .location .contents .left h2 {
    font-size: 34px;
  }
}
@media (max-width: 1000px) {
  .location .contents .left h2 {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .location .contents .left h2 {
    font-size: 30px;
  }
}
.location .contents .left .subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
  max-width: 600px;
}
@media (max-width: 1000px) {
  .location .contents .left .subtitle {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .location .contents .left .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.location .contents .right {
  width: 420px;
}
@media (max-width: 1000px) {
  .location .contents .right {
    margin: 0 auto;
  }
}

/*=======================================
            Landing Grid
========================================*/
.landing-grid {
  padding: 0 0 75px;
}
.landing-grid .intro-text .above {
  text-align: center;
  color: #8E792E;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .landing-grid .intro-text .above {
    font-size: 20px;
  }
}
.landing-grid .intro-text h1 {
  font-family: "Playfair Display", serif;
  text-align: center;
  max-width: 1020px;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.66px;
  margin: 0 auto 40px;
}
@media (max-width: 1200px) {
  .landing-grid .intro-text h1 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .landing-grid .intro-text h1 {
    font-size: 30px;
    margin: 0 auto 30px;
  }
}
.landing-grid .intro-text .text-container {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 960px;
  margin: 0 auto 70px;
  text-align: center;
}
.landing-grid .intro-text .text-container hr {
  color: #251E18;
}
.landing-grid .intro-text .text-container a {
  color: #8E792E;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .landing-grid .intro-text .text-container {
    font-size: 16px;
  }
}
.landing-grid .cards {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -20px;
}
.landing-grid .cards .card {
  width: calc(33.3333333333% - 40px);
  margin: 0 20px 40px;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.3);
  background-color: white;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.landing-grid .cards .card:hover {
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.6);
}
.landing-grid .cards .card:hover .main .link .button.gold {
  background-color: #251E18;
  color: #fff;
}
@media (max-width: 1200px) {
  .landing-grid .cards .card {
    width: calc(50% - 40px);
  }
}
@media (max-width: 800px) {
  .landing-grid .cards .card {
    width: calc(100% - 40px);
  }
}
.landing-grid .cards .card .main {
  padding: 30px 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 500px) {
  .landing-grid .cards .card .main {
    padding: 30px;
  }
}
.landing-grid .cards .card .main h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.42px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .landing-grid .cards .card .main h2 {
    font-size: 24px;
  }
}
.landing-grid .cards .card .main .subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .landing-grid .cards .card .main .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/*=======================================
            Landing Grid
========================================*/
.page-content {
  padding: 0 0 75px;
}
.page-content .above {
  text-align: center;
  color: #8E792E;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .page-content .above {
    font-size: 20px;
  }
}
.page-content h1 {
  font-family: "Playfair Display", serif;
  text-align: center;
  max-width: 1020px;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.66px;
  margin: 0 auto 40px;
}
@media (max-width: 1200px) {
  .page-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .page-content h1 {
    font-size: 30px;
    margin: 0 auto 30px;
  }
}
.page-content .text-container {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}
@media (max-width: 600px) {
  .page-content .text-container {
    font-size: 16px;
  }
}
.page-content .text-container h2 {
  color: #8E792E;
  font-size: 35px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .page-content .text-container h2 {
    font-size: 30px;
  }
}
.page-content .text-container h4,
.page-content .text-container h5 {
  margin-bottom: 20px;
}
.page-content .text-container hr {
  color: #251E18;
}
.page-content .text-container a {
  color: #8E792E;
  text-decoration: underline;
}
.page-content .text-container .booking-button,
.page-content .text-container .modal-button {
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 18px;
  border-radius: 10px;
  display: inline-block;
  background-color: #8E792E;
  color: #fff;
}
.page-content .text-container div.wp-caption {
  display: inline-block;
}
.page-content .text-container .gallery {
  text-align: center;
  margin: 50px 0 30px !important;
}
@media (max-width: 600px) {
  .page-content .text-container .gallery {
    margin: 30px 0 20px !important;
  }
}
.page-content .text-container .gallery .gallery-item {
  display: inline-block;
  float: none !important;
}
.page-content .text-container .gallery img {
  width: 100%;
  height: auto;
  border: none !important;
}
.page-content .text-container .gallery.gallery-columns-2 .gallery-item {
  width: calc(50% - 20px) !important;
  margin: 0 10px 20px;
}
@media (max-width: 600px) {
  .page-content .text-container .gallery.gallery-columns-2 .gallery-item {
    width: 100% !important;
    margin: 0 0 10px;
  }
}
.page-content .text-container .gallery.gallery-columns-3 .gallery-item {
  width: calc(33.3333333333% - 20px) !important;
  margin: 0 10px 20px;
}
@media (max-width: 800px) {
  .page-content .text-container .gallery.gallery-columns-3 .gallery-item {
    width: calc(50% - 20px) !important;
  }
}
@media (max-width: 600px) {
  .page-content .text-container .gallery.gallery-columns-3 .gallery-item {
    width: 100% !important;
    margin: 0 0 10px;
  }
}
.page-content .text-container .metaslider {
  margin: 0 auto 30px;
}
.page-content .text-container ul {
  list-style-position: inside;
}
.page-content .text-container blockquote {
  background-color: #fff;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.3);
  padding: 85px 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 1360px;
  margin: 50px 0 50px -180px;
}
@media (max-width: 1460px) {
  .page-content .text-container blockquote {
    width: 1200px;
    margin: 50px 0 50px -100px;
  }
}
@media (max-width: 1260px) {
  .page-content .text-container blockquote {
    width: 100%;
    margin: 50px 0;
    padding: 60px 50px;
  }
}
@media (max-width: 600px) {
  .page-content .text-container blockquote {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  .page-content .text-container blockquote {
    padding: 30px;
  }
}
.page-content .text-container blockquote:before, .page-content .text-container blockquote:after {
  font-family: "Playfair Display", serif;
  color: #8E792E;
  font-size: 200px;
  font-weight: 600;
  line-height: 125px;
}
@media (max-width: 1260px) {
  .page-content .text-container blockquote:before, .page-content .text-container blockquote:after {
    font-size: 140px;
    line-height: 100px;
  }
}
@media (max-width: 800px) {
  .page-content .text-container blockquote:before, .page-content .text-container blockquote:after {
    display: none;
  }
}
.page-content .text-container blockquote:before {
  content: "“";
}
.page-content .text-container blockquote:after {
  content: "”";
}
.page-content .text-container blockquote p {
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  padding: 0 50px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.42px;
  color: #251E18 !important;
  display: block;
}
@media (max-width: 1260px) {
  .page-content .text-container blockquote p {
    font-size: 24px;
  }
}
@media (max-width: 800px) {
  .page-content .text-container blockquote p {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .page-content .text-container blockquote p {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 450px) {
  .page-content .text-container blockquote p {
    font-size: 18px;
  }
}
.page-content .text-container blockquote p strong {
  font-family: "Noto Sans", sans-serif;
  color: #8E792E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-top: 15px;
}
@media (max-width: 450px) {
  .page-content .text-container blockquote p strong {
    font-size: 16px;
  }
}

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