@import url("animate.css");

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --fz-html: 62.5%;
  --fz-base: 1.7rem;
  --fw-base: 400;
  --lh-base: 2.11;
  --ff-base: "Open Sans", sans-serif;
  --ff-cormorant: "Cormorant Infant", serif;
  --c-base: #666;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=button],
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

input::placeholder {
  color: inherit;
  opacity: 1;
  font-style: normal;
}

textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

html {
  font-size: var(--fz-html);
}

body {
  min-width: 320px;
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
  font-size: var(--fz-base);
  line-height: var(--lh-base);
  color: var(--c-base);
  background-color: #fbf8f4;
}

@media (max-width: 1023px) {
  body {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}

body.overflow-hidden {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
}

@media (hover: hover) {
  a:where(:hover, :focus-visible) {
    text-decoration: none;
  }
}

a[href^=tel] {
  text-decoration: none;
}

.level-1,
h1,
.level-2,
h2,
.level-3,
h3,
.level-4,
h4,
.level-5,
h5,
.level-6,
h6 {
  margin-bottom: calc(var(--lh-base) * 0.5em);
  font-weight: 600;
  font-family: var(--ff-cormorant);
}

.level-1,
h1 {
  font-size: 11rem;
  line-height: 1.2;
}

@media (max-width: 1023px) {

  .level-1,
  h1 {
    font-size: 8rem;
  }
}

@media (max-width: 767px) {

  .level-1,
  h1 {
    font-size: 3.6rem;
  }
}

.level-2,
h2 {
  font-size: 10rem;
  line-height: 1.1;
}

@media (max-width: 1023px) {

  .level-2,
  h2 {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {

  .level-2,
  h2 {
    font-size: 4rem;
  }
}

.level-3,
h3 {
  font-size: 6rem;
  line-height: 1.16;
}

@media (max-width: 767px) {

  .level-3,
  h3 {
    font-size: 3rem;
  }
}

.level-4,
h4 {
  font-size: 5rem;
}

@media (max-width: 1023px) {

  .level-4,
  h4 {
    font-size: 4rem;
  }
}

.level-5,
h5 {
  font-size: 4rem;
}

.level-6,
h6 {
  font-size: 3.8rem;
  line-height: 1.3;
}

@media (max-width: 767px) {

  .level-6,
  h6 {
    font-size: 2rem;
  }
}

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden],
.hidden {
  display: none !important;
}

[disabled],
.disabled {
  cursor: default;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

.btn {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 0.1rem solid #fff;
  border-radius: 0.3rem;
  text-transform: uppercase;
  padding: 2.1rem 4.8rem 2.4rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

@media (max-width: 767px) {
  .btn {
    font-size: 1.2rem;
    line-height: 1;
  }
}

.btn svg {
  margin-right: 1.6rem;
}

@media (max-width: 1023px) {
  .btn svg {
    margin-right: 1rem;
  }
}

.btn svg path {
  transition: fill 0.3s;
}

.btn--block {
  display: block;
  padding-inline: 0;
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .btn--outline-white:hover {
    background-color: #fff;
    color: var(--color-book-now);
  }

  .btn--outline-white:hover svg path {
    fill: var(--color-book-now);
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn--outline-white-hover-alt:hover {
    background-color: #fff;
    color: var(--color-primary);
  }
}

.btn--outline-dark-blue {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .btn--outline-dark-blue:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
}

.btn--turquoise {
  background-color: var(--color-book-now);
  border-color: var(--color-book-now);
  color: #fff;
}

.btn--turquoise svg path {
  fill: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .btn--turquoise:hover {
    background-color: var(--color-book-now-hover);
    border-color: var(--color-book-now-hover);
  }
}

.btn--white {
  background-color: #fff;
  border-color: #fff;
  color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
}

.btn--size-1 {
  padding: 2.1rem 5.8rem 2.4rem;
}

.btn--size-2 {
  padding: 2.1rem 4rem 2.4rem;
}

@media (max-width: 767px) {
  .btn--size-2 {
    padding: 1.8rem 1rem 1.8rem;
    min-width: 13.9rem;
  }
}

.btn--size-3 {
  padding: 2.1rem 3.3rem 2.4rem;
}

@media (max-width: 767px) {
  .btn--size-3 {
    min-width: 13.8rem;
    padding: 1.8rem 1rem 1.8rem;
  }
}

.btn--size-4 {
  padding: 2.1rem 7.3rem 2.4rem;
  min-width: 29.2rem;
}

@media (max-width: 767px) {
  .btn--size-4 {
    min-width: 22.5rem;
    padding: 1.7rem 1rem 1.8rem;
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------ *\
    Checkbox
\* ------------------------------------------------------------ */
.checkbox {
  position: relative;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.checkbox label {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-left: 4rem;
  display: inline-block;
}

@media (max-width: 767px) {
  .checkbox label {
    font-size: 1.2rem;
  }
}

.checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #fff;
}

@media (max-width: 767px) {
  .checkbox label:before {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.checkbox input:checked+label:before {
  background-color: #fff;
}

/* ------------------------------------------------------------ *\
    Field
\* ------------------------------------------------------------ */
.field {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 0.1rem solid #fff;
  font: 400 1.8rem/1.3 var(--ff-cormorant);
  font-style: italic;
  color: #fff;
  padding: 1.2rem 0;
  border-radius: 0;
}

@media (max-width: 767px) {
  .field {
    padding: 0 0 0.9rem;
  }
}

/* ------------------------------------------------------------ *\
    Footer
\* ------------------------------------------------------------ */
.footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.55);
  padding: 6.3rem 0;
}

@media (max-width: 767px) {
  .footer {
    padding: 2.8rem 0 8.6rem;
    overflow: hidden;
  }
}

.footer .footer__logo {
  margin-top: 3.4rem;
  display: inline-block;
}

@media (max-width: 1023px) {
  .footer .footer__logo {
    margin: 0 auto;
    max-width: 11.4rem;
  }
}

@media (max-width: 1023px) {
  .footer .footer__logo svg {
    width: 100%;
    height: auto;
  }
}

.footer .footer__cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .footer__col--size-1 {
  max-width: 12.4%;
  flex: 0 0 12.4%;
}

@media (max-width: 1023px) {
  .footer .footer__col--size-1 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 4.2rem;
  }
}

.footer .footer__col--size-2 {
  max-width: 69.89%;
  flex: 0 0 69.89%;
}

@media (max-width: 1023px) {
  .footer .footer__col--size-2 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.footer .footer__col--size-3 {
  max-width: 48.1%;
  flex: 0 0 48.1%;
}

@media (max-width: 1023px) {
  .footer .footer__col--size-3 {
    max-width: 45%;
    flex: 0 0 45%;
  }
}

@media (max-width: 767px) {
  .footer .footer__col--size-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.footer .footer__col--size-4 {
  max-width: 14.89%;
  flex: 0 0 14.89%;
}

@media (max-width: 1023px) {
  .footer .footer__col--size-4 {
    max-width: 25%;
    flex: 0 0 25%;
  }
}

@media (max-width: 767px) {
  .footer .footer__col--size-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.footer .footer__title {
  color: rgb(255, 255, 255);
  position: relative;
}

@media (max-width: 767px) {
  .footer .footer__title {
    text-align: center;
    margin-bottom: 1.4rem;
  }
}

.footer .footer__title:after {
  content: "";
  position: absolute;
  right: calc(100% + 2rem);
  top: 50%;
  width: 6.6rem;
  height: 0.2rem;
  transform: translateY(-50%);
  background-color: #fff;
}

@media (max-width: 767px) {
  .footer .footer__title:after {
    width: 5.3rem;
    right: calc(100% - 2rem);
  }
}

.footer .footer__title:before {
  content: "";
  position: absolute;
  left: calc(100% - 2rem);
  top: 50%;
  width: 6.6rem;
  height: 0.2rem;
  transform: translateY(-50%);
  background-color: #fff;
  display: none;
}

@media (max-width: 767px) {
  .footer .footer__title:before {
    display: block;
  }
}

.footer .footer__content {
  font-size: 1.4rem;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .footer__content {
    text-align: center;
  }
}

.footer .footer__content address {
  margin-bottom: 3.7rem;
}

@media (max-width: 767px) {
  .footer .footer__content address {
    line-height: 2.14;
    margin-bottom: 4.3rem;
  }
}

.footer .footer__content>a {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer .footer__content>a {
    margin-bottom: 1.3rem;
  }
}

.footer .footer__content>a svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}

.footer .footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 0 0;
  border-top: 0.1rem solid #fff;
  font-size: 1.6rem;
  margin-top: 7.7rem;
}

@media (max-width: 1023px) {
  .footer .footer__bar {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .footer .footer__bar {
    flex-direction: column;
    padding: 2.1rem 0 0;
  }
}

.footer .footer__bar p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footer .footer__bar p {
    margin-bottom: 2.3rem;
  }
}

.footer .footer__nav {
  text-align: right;
  margin-top: 3rem;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .footer__nav {
    text-align: left;
    border-top: 0.1rem solid #fff;
    border-bottom: 0.1rem solid #fff;
    padding: 2.9rem 0 2.4rem;
  }
}

@media (max-width: 767px) {
  .footer .footer__nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
    padding-left: 3.7rem;
  }
}

.footer .footer__nav li {
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .footer .footer__nav li {
    min-width: 12.8rem;
    margin-right: 2rem;
    margin-bottom: 0;
    text-align: center;
  }
}

.footer .footer__nav a {
  text-decoration: none;
  font-size: 1.5rem;
}

.footer .footer__nav a:hover {
  color: rgb(255, 255, 255);
}

.footer .socials {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .footer .socials {
    margin-top: 5rem;
  }
}

.footer .list-logos {
  margin-top: 4.6rem;
}

.footer .list-logos img {
  max-width: 180px;
  max-height: 100px;
}
@media (max-width: 1440px) {
.footer .list-logos img {
  max-width: 100%;
}
}
@media (max-width: 767px) {
  .footer .list-logos {
    margin-top: 4rem;
  }

  .footer .list-logos img {
    max-width: 100px;
  }
}

.footer .copyright {
  color: rgb(255, 255, 255);
}

@media (max-width: 767px) {
  .footer .copyright {
    border-bottom: 0.1rem solid #fff;
    width: 100%;
    text-align: center;
    padding-bottom: 2.3rem;
  }
}

/* ------------------------------------------------------------ *\
    Form
\* ------------------------------------------------------------ */
.form .form__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.form .form__col--1of2 {
  flex: 0 0 calc(50% - 0.6rem);
  max-width: calc(50% - 0.6rem);
}

@media (max-width: 767px) {
  .form .form__col--1of2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.form .form__label {
  display: none;
}

.form .form__row {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .form .form__row {
    margin-bottom: 1rem;
  }
}

.form .form__actions {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .form .form__actions {
    flex-direction: column;
    margin-top: 1.5rem;
  }
}

.form .form__btn {
  min-width: 18rem;
  padding: 2.1rem 3.8rem 2.4rem;
}

@media (max-width: 767px) {
  .form .form__btn {
    margin-top: 2.4rem;
    padding: 1.8rem 3.8rem 1.8rem;
    min-width: 22.5rem;
  }
}

.form .form__btn:hover {
  color: var(--color-primary);
}

/* ------------------------------------------------------------ *\
    Gallery
\* ------------------------------------------------------------ */
.grid-flex {
  --grid-gutter: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  margin-inline: calc(var(--grid-gutter) / 2 * -1);
}

.grid-flex .grid__col {
  --grid-cols: 1;
  padding-inline: calc(var(--grid-gutter) / 2);
  max-width: calc(100% / var(--grid-cols));
  flex: 0 0 calc(100% / var(--grid-cols));
}

.grid-flex .grid__col--1of2 {
  --grid-cols: 2;
}

@media (max-width: 1023px) {
  .grid-flex .grid__col--1of2 {
    --grid-cols: 1;
  }
}

.grid-flex .grid__col--1of3 {
  --grid-cols: 3;
}

.grid-flex .grid__col--1of4 {
  --grid-cols: 4;
}

.grid-flex .grid__col--1of5 {
  --grid-cols: 5;
}

.grid-flex .grid__col--1of6 {
  --grid-cols: 6;
}

.grid {
  --grid-cols: 1;
  --grid-gutter: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gutter);
}

.grid--size-1of2 {
  --grid-cols: 2;
}

.grid--size-1of3 {
  --grid-cols: 3;
}

.grid--size-1of4 {
  --grid-cols: 4;
}

.grid--size-1of5 {
  --grid-cols: 5;
}

.grid--size-1of6 {
  --grid-cols: 6;
}

/* ------------------------------------------------------------ *\
    Header
\* ------------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s;
}

.header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 13.6rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 100%);
  z-index: -1;
}

@media (max-width: 1023px) {
  .header:after {
    height: 8.6rem;
  }
}

.header .header__inner {
  padding: 4.7rem 5rem 4.7rem 6rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: padding 0.3s;
}

@media (max-width: 1399px) {
  .header .header__inner {
    padding: 4.7rem 4rem 4.7rem 4rem;
  }
}

@media (max-width: 1023px) {
  .header .header__inner {
    padding: 1.4rem 2.7rem;
  }
}

@media (max-width: 767px) {
  .header .header__inner {
    padding: 1.4rem 2.7rem;
  }
}

.header .header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
  padding: 200px 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.header .header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .header .header__overlay {
    padding-top: 10.7rem;
  }
}

.header .header__overlay-image {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.header .header__overlay-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3294117647) 18%,
      rgba(0, 0, 0, 0.6705882353) 100%) 0% 0% no-repeat padding-box;
}

@media (max-width: 1023px) {
  .header .header__overlay-image:after {
    background: linear-gradient(-90deg,
        rgba(0, 0, 0, 0) 0%,
        rgb(0, 0, 0) 100%);
  }
}

.header .header__overlay-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 45, 62, 0.9);
}

.header .header__overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.99;
}

.header .header__logo {
  position: absolute;
  top: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  text-decoration: none;
}

.header .header__logo img {
  max-width: 22rem;
}

@media (max-width: 1023px) {
  .header .header__logo {
    top: 2.1rem;
    right: 2.7rem;
    left: auto;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .header .header__logo {
    top: 1.1rem;
    right: 2rem;
  }

  .header .header__logo img {
    max-width: 15rem;
  }
}

@media (max-width: 1023px) {
  .header .header__logo svg:nth-child(1) {
    display: none;
  }
}

.header .header__logo svg:nth-child(2) {
  display: none;
}

@media (max-width: 1023px) {
  .header .header__logo svg:nth-child(2) {
    display: inline-block;
  }
}

.header .header__logo-secondary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  max-width: 22rem;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (max-width: 1023px) {
  .header .header__logo-secondary {
    max-width: 15rem;
    right: 1.5rem;
    top: 50%;
    left: auto;
    transform: translate(0, -50%);
  }
}

.header .header__logo-secondary svg {
  width: 100%;
  height: 100%;
}

.header .header__content {
  display: flex;
  position: relative;
  z-index: 11;
}

.header .header__aside {
  position: relative;
  z-index: 11;
}
.secondary-cta img {
      max-width: 19px;
    max-height: 19px;
    filter: invert(1);
    margin-right: 10px;
}
.btn--outline-white.secondary-cta {
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .header .header__aside {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
  }
}

.header .header__aside .btn+.btn {
  margin-left: 0.9rem;
}

@media (max-width: 1023px) {
  .header .header__aside .btn+.btn {
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .header .header__aside .btn {
    flex: 1;
    padding: 2rem 0.9rem;
    font-size: 1.2rem;
    border-radius: 0;
  }
}

@media (max-width: 1023px) {
  .header .header__aside .btn--outline-white {
    color: #666;
  }
}

@media (max-width: 1023px) {
  .header .header__aside .btn--outline-white img {
    filter: none;
  }
}

.header .header__nav {
  position: relative;
  z-index: 11;
}

@media (max-width: 1023px) {
  .header .header__nav {
    padding-bottom: 100px;
  }
}

.header .nav-trigger {
  margin-top: 1.1rem;
  margin-right: 4.5rem;
  background-color: transparent;
  border: none;
}

@media (max-width: 767px) {
  .header .nav-trigger {
    margin-top: 0;
  }
}

@media (max-width: 1399px) {
  .header .btn {
    padding: 2.1rem 2rem 2.4rem;
  }
}

@media (max-width: 1280px) {
  .header .nav-secondary {
    display: none;
  }
}

.header .nav-back {
  position: absolute;
  top: 0;
  left: 0.8rem;
  display: none;
}

.header .nav-back.is-active {
  display: block;
}

.header.is-fixed {
  position: fixed;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.7);
}

.header.is-fixed .header__inner {
  background-color: #fff;
  color: var(--color-primary);
  padding: 2.2rem 5rem 1.4rem 6rem;
}

@media (max-width: 1600px) {
  .header.is-fixed .header__inner {
    padding: 2.2rem 2rem 1.4rem 2rem;
  }
}

@media (max-width: 1023px) {
  .header.is-fixed .header__inner {
    padding: 2.4rem 2.7rem 2.4rem;
  }
}

@media (max-width: 1399px) {
  .header.is-fixed .header__inner .nav-secondary li {
    margin-right: 2rem;
  }
}

.header.is-fixed .header__content {
  padding-top: 0.6rem;
}

@media (max-width: 1023px) {
  .header.is-fixed .header__content {
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .header.is-fixed .header__inner .nav-trigger {
    margin-right: 2rem;
  }
}

header.header.js-header.is-fixed .header__logo-secondary img {
  max-height: 85px;
}

@media (max-width: 1023px) {
  header.header.js-header.is-fixed .header__logo-secondary img {
    max-height: 70px;
  }
}

.header.is-fixed .header__inner .nav-trigger .nav__icon span {
  background-color: var(--color-primary);
}

.header.is-fixed .header__inner .btn--outline-white {
  border-color: var(--color-tertiary);
  color: #666;
}
.header.is-fixed .secondary-cta img {
  filter: none;
}
@media (max-width: 1023px) {
  .header.is-fixed .header__inner .btn--outline-white {
    border: none;
  }
}

.header.is-fixed .header__inner .btn--outline-white:hover {
  border-color: var(--color-tertiary);
  color: var(--color-tertiary) !important;
}

.header.is-fixed .header__logo-secondary {
  opacity: 1;
  visibility: visible;
}

.header.is-fixed .header__inner .btn--outline-white svg path {
  fill: var(--color-tertiary);
}

@media (max-width: 1023px) {
  .header.is-fixed .header__inner .btn--outline-white svg path {
    fill: var(--color-tertiary);
  }
}

@media (min-width: 1024px) {
  .header.is-fixed.is-open .header__inner .btn--outline-white {
    border-color: #fff;
    color: #fff;
  }

  .header.is-fixed.is-open .header__inner .btn--outline-white:hover {
    border-color: #fff;
    color: #fff !important;
  }

  .header.is-fixed.is-open .header__inner .btn--outline-white svg path {
    fill: #fff;
  }

  .header.is-fixed.is-open .header__inner .btn--outline-white:hover svg path {
    fill: var(--color-primary);
  }
}


.header.is-fixed.is-open .header__inner .nav-trigger .nav__icon span {
  background-color: #fff;
}

/* ------------------------------------------------------------ *\
    Hero
\* ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.hero.half-height {
  min-height: 78vh;
  height: 78vh;
}
.hero video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

@media (max-width: 1023px) {
  .hero {
    min-height: calc(100vh - 5.9rem);
  }
}

.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 24%) 78%);
  z-index: 1;
}

.hero .single-hero {
  height: 100%;
}

.hero .hero__logo {
  position: absolute;
  top: 42.3%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 1023px) {
  .hero .hero__logo {
    max-width: 18rem;
  }
}

@media (max-width: 767px) {
  .hero .hero__logo {
    top: 30%;
  }
}

.hero .hero__logo img {
  width: 100%;
  max-width: 300px;
}

.hero .hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: #fff;
}

.hero .hero__content h1 {
  margin-bottom: 1.8rem;
}

@media (max-width: 767px) {
  .hero .hero__content h1 {
    margin-bottom: 6.8rem;
  }
}

.hero .hero__foot {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  padding-bottom: 5.4rem;
  position: relative;
}

.hero .hero__foot:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.7rem;
  width: 0.1rem;
  background-color: #fff;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero .hero__foot:after {
    height: 3rem;
  }
}

@media (max-width: 767px) {
  .hero .hero__foot {
    font-size: 1rem;
    padding-bottom: 4.6rem;
  }
}

.hero .slider-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------ *\
    Link 
\* ------------------------------------------------------------ */
.link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
  color: var(--color-primary);
  padding-bottom: 0.7rem;
  padding-right: 0.3rem;
}

@media (max-width: 767px) {
  .link {
    font-size: 1.1rem;
  }
}

.link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 0.1rem;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.link:hover:after {
  width: 100%;
}

/* ------------------------------------------------------------ *\
    List Accommodations
\* ------------------------------------------------------------ */
.list-accommodations {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.2rem solid #f4f4f4;
  border-top: 0.2rem solid #f4f4f4;
  padding: 2.4rem 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .list-accommodations {
    padding: 1.4rem 0 1.6rem;
    border-top-width: 0.1rem;
    border-bottom-width: 0.1rem;
  }
}

.list-accommodations li {
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 0.7rem;
  width: 100%;
}

@media (max-width: 767px) {
  .list-accommodations li {
    padding: 0 0.6rem;
    font-size: 1.2rem;
  }
}

.list-accommodations svg {
  display: inline-block;
  vertical-align: middle;
}

/* ------------------------------------------------------------ *\
    List Logos
\* ------------------------------------------------------------ */
.list-logos {
  list-style-type: none;
  text-align: right;
  align-items: center;
}

@media (max-width: 767px) {
  .list-logos {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.list-logos li {
  margin-bottom: 3.2rem;
}

@media (max-width: 767px) {
  .list-logos li {
    margin-bottom: 2.4rem;
  }
}

/* ------------------------------------------------------------ *\
    Nav secondary
\* ------------------------------------------------------------ */
.nav-secondary li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3.9rem;
}

.nav-secondary li:last-child {
  margin-right: 0;
}

@media (max-width: 1600px) {
  .nav-secondary li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.9rem;
  }
}

@media (max-width: 1399px) {
  .nav-secondary li {
    margin-right: 0.9rem;
  }
}

.nav-secondary a {
  text-decoration: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ------------------------------------------------------------ *\
    Nav trigger
\* ------------------------------------------------------------ */
.nav-trigger {
  text-decoration: none;
  display: flex;
}

.nav-trigger.is-hidden {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-trigger:hover .nav__icon span:nth-child(2) {
    width: 100%;
  }
}

.nav-trigger .nav__icon {
  width: 4.2rem;
  height: 2.5rem;
  position: relative;
}

@media (max-width: 1023px) {
  .nav-trigger .nav__icon {
    width: 2.4rem;
    height: 1.4rem;
  }
}

.nav-trigger .nav__icon span {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  height: 0.2rem;
  width: 100%;
  background-color: #fff;
  border-radius: 0.2rem;
  transition: all 0.3s;
}

.nav-trigger .nav__icon span:nth-child(1) {
  top: 0;
}

.nav-trigger .nav__icon span:nth-child(2) {
  top: 1.2rem;
  width: 47%;
  margin: 0 auto;
  transition: width 0.2s;
}

@media (max-width: 1023px) {
  .nav-trigger .nav__icon span:nth-child(2) {
    top: 0.7rem;
  }
}

.nav-trigger .nav__icon span:nth-child(3) {
  top: 2.4rem;
}

@media (max-width: 1023px) {
  .nav-trigger .nav__icon span:nth-child(3) {
    top: 1.4rem;
  }
}

.nav-trigger .nav__text {
  margin-left: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  transform: opacity 0.3s, visibility 0.3s;
}

@media (max-width: 1023px) {
  .nav-trigger .nav__text {
    font-size: 0.9rem;
    margin-left: 0.9rem;
  }
}

.nav-trigger.menu-trigger-open .nav__icon span:nth-child(1) {
  top: 1.2rem;
  transform: rotate(45deg);
}

.nav-trigger.menu-trigger-open .nav__icon span:nth-child(2) {
  opacity: 0;
}

.nav-trigger.menu-trigger-open .nav__icon span:nth-child(3) {
  top: 1.2rem;
  transform: rotate(-45deg);
}

.nav-trigger.menu-trigger-open .nav__text {
  opacity: 0;
  visibility: hidden;
}

/* ------------------------------------------------------------ *\
    Nav
\* ------------------------------------------------------------ */
.nav {
  width: 100%;
  padding: 0 12rem;
  transition: transform 0.3s;
}

@media (max-width: 1199px) {
  .nav {
    padding: 0 3.7rem;
  }
}

@media (max-width: 1023px) {
  .nav {
    padding: 0 4.8rem;
  }
}

@media (max-width: 767px) {
  .nav {
    padding: 0 3.8rem 0 4.8rem;
  }
}

.nav.is-active {
  transform: translateX(-100%);
}

.nav>ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav>ul>li {
  max-width: 24%;
  flex: 0 0 24%;
  margin-bottom: 9.4rem;
}

@media (max-width: 1023px) {
  .nav>ul>li {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 2rem;
  }
}

.nav a {
  text-decoration: none;
  color: #fff;
}

.nav>ul>li>a:not(.nav__link) {
  font: 600 4rem/1.3 var(--ff-cormorant);
  display: block;
  transition: color 0.3s;
}

@media (max-width: 1023px) {
  .nav>ul>li>a:not(.nav__link) {
    font-size: 2.7rem;
  }
}

@media (max-width: 1023px) {
  .nav .has-dropdown>a {
    position: relative;
  }

  .nav .has-dropdown>a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 1.3rem;
    background-image: url("assets/images/svg/ico-arrow-right.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

.nav .nav__dropdown {
  margin-top: 1.8rem;
}

@media (max-width: 1023px) {
  .nav .nav__dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    padding: 0 3.8rem;
    opacity: 0;
    visibility: hidden;
    margin-top: 0.7rem;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav .nav__dropdown.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.nav .nav__dropdown li {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .nav .nav__dropdown li {
    margin-bottom: 2.2rem;
  }
}

.nav .nav__dropdown>a {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3rem;
  position: relative;
  display: none;
}

.nav .nav__dropdown>a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 1.3rem;
  background-image: url("assets/images/svg/ico-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 1023px) {
  .nav .nav__dropdown>a {
    display: block;
  }
}

.nav .nav__dropdown li:nth-child(n+4) {
  display: none;
}

.nav .nav__dropdown li a {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .nav .nav__dropdown li a:hover {
    color: var(--color-primary);
  }
}

@media (max-width: 1023px) {
  .nav .nav__dropdown li a {
    font-size: 1.4rem;
  }
}

.nav .nav__link {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .nav .nav__link:hover {
    color: var(--color-primary);
  }
}

@media (max-width: 1023px) {
  .nav .nav__link {
    display: none;
  }
}

.nav .nav__link span:nth-child(2) {
  display: none;
}

.nav .nav__link.is-active span:nth-child(1) {
  display: none;
}

.nav .nav__link.is-active span:nth-child(2) {
  display: inline-block;
}

/* ------------------------------------------------------------ *\
    Offer
\* ------------------------------------------------------------ */
.offer .offer__image {
  position: relative;
  padding-bottom: 91.25%;
  margin-bottom: 1.8rem;
}

@media (max-width: 767px) {
  .offer .offer__image {
    margin-bottom: 1.3rem;
  }
}

.offer .offer__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .offer .offer__content {
    text-align: center;
  }
}

.offer .offer__content h6 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: -0.3rem;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .offer .link {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}

/* ------------------------------------------------------------ *\
    Property
\* ------------------------------------------------------------ */
.property .property__inner {
  position: relative;
  min-height: 80.8rem;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1399px) {
  .property .property__inner {
    min-height: 64.8rem;
  }
}

@media (max-width: 1023px) {
  .property .property__inner {
    min-height: 55rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .property .property__inner {
    min-height: 25.5rem;
  }
}

.property .property__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.property .property__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.8;
  z-index: 0;
}

.property .property__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.4;
  z-index: 0;
}

.property .property__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property .property__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6.5rem 7.7rem;
  max-width: 83.9rem;
}

@media (max-width: 1023px) {
  .property .property__content {
    padding: 5rem;
  }
}

@media (max-width: 767px) {
  .property .property__content {
    padding: 2.1rem 3.7rem;
    margin-top: 12.1rem;
  }
}

.property .property__content h3 {
  margin-bottom: 2.9rem;
}

@media (max-width: 767px) {
  .property .property__content h3 {
    margin-bottom: 1.3rem;
  }
}

@media (max-width: 767px) {
  .property .property__content p {
    display: none;
  }
}

.property .property__actions {
  margin-top: 5.3rem;
}

@media (max-width: 767px) {
  .property .property__actions {
    margin-top: 0rem;
    margin: -0.2rem;
  }
}

.property .property__actions .btn {
  min-width: 18rem;
  padding: 2.1rem 2.8rem 2.4rem;
}

@media (max-width: 767px) {
  .property .property__actions .btn {
    padding: 1.8rem 1rem 1.7rem;
    min-width: 13.9rem;
    margin: 0.2rem;
  }
}

.property .property__actions .btn+.btn {
  margin-left: 1.8rem;
}

@media (max-width: 767px) {
  .property .property__actions .btn+.btn {
    margin-left: 0;
  }
}

.property .property__outer {
  width: 100%;
  padding: 0 3.7rem;
  margin-top: 3rem;
  color: var(--color-primary);
}
.carousel-full-width .property .property__outer {
  color: var(--c-base);
}
/* ------------------------------------------------------------ *\
    Room
\* ------------------------------------------------------------ */
.room {
  position: relative;
  min-height: 80.8rem;
  padding: 23.9rem 0 22.6rem;
}

@media (max-width: 1199px) {
  .room {
    min-height: 64.8rem;
    padding: 10.9rem 0;
  }
}

@media (max-width: 1023px) {
  .room {
    padding: 6rem 0;
    min-height: 60rem;
  }
}

@media (max-width: 767px) {
  .room {
    padding: 19.2rem 0 5.9rem;
    min-height: 48rem;
  }
}

.room .room__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.room .room__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.6;
}

.room .room__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room .room__content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  max-width: 66.3rem;
  margin: 0 auto;
}

.room .room__content h3 {
  margin-bottom: 2.6rem;
}

@media (max-width: 767px) {
  .room .room__content h3 {
    margin-bottom: 1.8rem;
  }
}

.room .room__content h6 {
  font-style: italic;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .room .room__content h6 {
    font-size: 1.8rem;
  }
}

.room .room__actions {
  margin-top: 3.3rem;
}

@media (max-width: 767px) {
  .room .room__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7.8rem;
  }
}

.room .room__actions .btn+.btn {
  margin-left: 1.7rem;
}

@media (max-width: 767px) {
  .room .room__actions .btn+.btn {
    margin-left: 1rem;
  }
}

.room .list-accommodations {
  margin-bottom: 2.6rem;
}

@media (max-width: 767px) {
  .room .list-accommodations {
    margin-bottom: 1.6rem;
  }
}
.room .list-accommodations img {
  filter: grayscale(0) invert(1);
    width: 20px;
    display: inline-block;
    margin-right: 8px;
}
/* ------------------------------------------------------------ *\
    Section Entry
\* ------------------------------------------------------------ */
.section-entry {
  padding: 8.1rem 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-entry.content-primary {
  padding-top: 3rem;
}

@media (max-width: 767px) {
  .section-entry {
    padding: 3.6rem 0 2rem;
  }
}

.section-entry .section__content {
  color: #575757;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.section-entry .section__content.js-readmore-content-custom {
  max-height: 400px;
}

.section-entry .section__content.js-readmore-content-custom.is-expanded {
  max-height: 1800px;
}

.section-entry .section__content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.31) 0%, rgb(251, 248, 244) 100%);
  opacity: 1;
  visibility: visible;
  display: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.section-subscribe .section-entry .section__content:after {
  display: none;
}

.btn-readmore {
    text-transform: uppercase;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    padding: 10px;
    position: relative;
}
.btn-readmore:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.1rem;
    background-color: var(--color-primary);
    transition: width 0.3s;
}
.btn-readmore:hover:after {
  width: 30%;
}
.section__readmore {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.6s ease, opacity 0.4s ease;
}

.section__readmore.is-open {
	max-height: 1500px; /* big enough to fit content */
	opacity: 1;
}

/* ------------------------------------------------------------ *\
    Section rooms
\* ------------------------------------------------------------ */
.section-rooms {
  position: relative;
}

.section-rooms .slider-rooms-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    width: auto;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
}
.section-rooms .slider-rooms-nav.no-carousel .slick-list {
      justify-content: center;
    display: flex;
    text-align: center;
    width: 100%;
}
/* .section-rooms .slider-rooms-nav.no-carousel .slick-track {
    width: auto!important;
} */
@media (max-width: 767px) {
  .section-rooms .slider-rooms-nav {
    top: 0;
    bottom: auto;
   justify-content: flex-start;
   padding-bottom: 10px;
  }
}

.section-rooms .slider-rooms-nav.no-carousel .slider__clip .slider__slides {
  display: flex;

}

.section-rooms .slider-filter {
  cursor: pointer;
}
.section-rooms .slider-rooms .slider__slide {
  display: none;
}

/* Show active slide */
.section-rooms .slider-rooms .slider__slide.active {
  display: block;
}

/* Style active nav tab */
.section-rooms .slider-rooms-nav .slider__slide.active {
  font-weight: bold;
  opacity: 1;
}

.section-rooms .slider-rooms-nav .slider__slide {
  cursor: pointer;
  opacity: 0.5;
}
.slider-rooms-nav .slider__slides {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------------------------------------------ *\
    Section subscribe
\* ------------------------------------------------------------ */
.section-subscribe {
  padding: 15.5rem 0 14.7rem;
  position: relative;
}

@media (max-width: 1199px) {
  .section-subscribe {
    padding: 8rem 0;
  }
}

@media (max-width: 767px) {
  .section-subscribe {
    padding: 5.7rem 0 6.5rem;
  }
}

.section-subscribe .section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-subscribe .section__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.6;
  z-index: 0;
}

.section-subscribe .section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subscribe .section__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.section-subscribe .section__content {
  color: #fff;
  max-width: 38%;
  flex: 0 0 38%;
}

@media (max-width: 1023px) {
  .section-subscribe .section__content {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 1.4rem;
  }
}

.section-subscribe .section__content h3 {
  margin-bottom: 2.4rem;
}

@media (max-width: 767px) {
  .section-subscribe .section__content h3 {
    margin-bottom: 1.7rem;
  }
}

.section-subscribe .section__content p {
  padding-right: 10rem;
}

@media (max-width: 1199px) {
  .section-subscribe .section__content p {
    padding: 0;
  }
}

.section-subscribe .section__aside {
  max-width: 49.6%;
  flex: 0 0 49.6%;
  padding-top: 1.1rem;
}

@media (max-width: 1023px) {
  .section-subscribe .section__aside {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.section-subscribe .shell {
  position: relative;
  z-index: 1;
}

.section-subscribe--mt {
  margin-top: 1.2rem;
}

/* ------------------------------------------------------------ *\
    Section Welcome
\* ------------------------------------------------------------ */
.section-welcome {
  padding: 20rem 0 12rem;
  position: relative;
}

@media (max-width: 1399px) {
  .section-welcome {
    padding: 10rem 0;
  }
}

@media (max-width: 1023px) {
  .section-welcome {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .section-welcome {
    padding: 6.5rem 0;
  }
}

.section-welcome .section__inner {
  display: flex;
}

@media (max-width: 767px) {
  .section-welcome .section__inner {
    flex-wrap: wrap;
  }
}

.section-welcome .section__body {
  max-width: 49%;
  flex: 0 0 49%;
  margin-right: 13.5rem;
  margin-top: 2rem;
}

@media (max-width: 1023px) {
  .section-welcome .section__body {
    margin-right: 2rem;
  }
}

@media (max-width: 767px) {
  .section-welcome .section__body {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0;
    text-align: center;
  }
}

.section-welcome .section__images {
  flex-grow: 1;
  margin-right: calc(50% - 50vw);
  z-index: 1;
}

.section-welcome .section__image {
  max-width: 51.6rem;
}

@media (max-width: 1600px) {
  .section-welcome .section__image {
    max-width: 45.6rem;
  }
}

.section-welcome .section__image-outer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -37rem;
  max-width: 94rem;
  opacity: 0.25;
  z-index: -1;
}

.section-welcome .section__images img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .section-welcome .section__content {
    color: var(--color-primary);
    overflow: hidden;
    text-align: left;
    margin-top: 2rem;
  }
}

.section-welcome .section__content--overlay {
  max-height: 400px;
  overflow: hidden;
}

.section-welcome .section__content--overlay.is-expanded {
  max-height: 1800px;
}

.section-welcome .section__content--overlay p:last-child {
  margin-bottom: 0;
}

.section-welcome .section__content--overlay {
  position: relative;
}

@media (max-width: 767px) {
  .section-welcome .section__content--overlay {
    height: 21rem;
  }
}
/* 
.section-welcome .section__content--overlay:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 15.2rem;
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.31) 0%, rgba(251, 248, 244, 1) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
} */

.section-welcome .section__content--overlay.is-expanded:after {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .section-welcome .section__content--overlay.is-expanded {
    height: auto;
  }
}

@media (max-width: 767px) {
  .section-welcome .section__images--mobile {
    margin-right: 0;
    display: flex;
    justify-content: center;
    margin-right: 0;
    align-items: center;
    margin-bottom: 4rem;
  }
}

.section-welcome .section__images--mobile img:nth-child(1) {
  max-width: 17.4rem;
  object-fit: contain;
  margin-right: 1.2rem;
}

.section-welcome .section__images--mobile img:nth-child(2) {
  max-width: 22.4rem;
}

.section-welcome .link {
  display: inline-block;
}

.section-welcome .title {
  margin-bottom: 5.3rem;
}

@media (max-width: 767px) {
  .section-welcome .title {
    margin-bottom: 3.3rem;
  }
}

.section-welcome--alt {
  padding: 9.5rem 0 10rem;
}

@media (max-width: 767px) {
  .section-welcome--alt {
    padding: 3rem 0 1.3rem;
  }
}

.section-welcome--alt .section__head {
  margin-bottom: 2.3rem;
}

.section-welcome--alt .section__inner {
  align-items: center;
}

@media (max-width: 767px) {
  .section-welcome--alt .section__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-welcome--alt .section__content {
  color: #575757;
}

.section-welcome--alt .section__body {
  max-width: 41.7%;
  flex: 0 0 41.7%;
}

@media (max-width: 767px) {
  .section-welcome--alt .section__body {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 2rem;
  }
}

.section-welcome--alt .section__images {
  display: flex;
  margin-right: calc(50% - 59vw);
}

@media (max-width: 767px) {
  .section-welcome--alt .section__images {
    margin-top: 1rem;
    margin-right: 0;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
  }
}

.section-welcome--alt .section__image {
  max-width: 48%;
  flex: 0 0 48%;
  width: 100%;
  object-fit: cover;
}

.section-welcome--alt .section__image+.section__image {
  margin-left: 1.8rem;
}
.section-welcome--alt .section__actions {
  text-align: center;
}

.section-welcome--alt .btn {
  margin-top: 5rem;
  min-width: 29.2rem;
}

@media (max-width: 767px) {
  .section-welcome--alt .btn {
    margin-top: 3.5rem;
    font-size: 1.4rem;
    padding: 1.7rem 1rem;
    min-width: 22.5rem;
  }
}

/* ------------------------------------------------------------ *\
    Section
\* ------------------------------------------------------------ */
.section {
  padding: 9.5rem 0 10rem;
}

@media (max-width: 1023px) {
  .section {
    padding: 6rem 0 5.4rem;
  }
}

.section .section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.4rem;
}

@media (max-width: 1023px) {
  .section .section__head {
    margin-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .section .section__head {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}

.section .section__head .btn {
  margin-top: 1.7rem;
  z-index: 2;
}

.section .section__subhead {
  color: #575757;
  margin-bottom: 3.6rem;
}

.section .section__actions {
  text-align: center;
}

@media (max-width: 767px) {
  .section .section__actions {
    margin-top: 2rem;
  }
}

@media (max-width: 1023px) {
  .section .title {
    width: 100%;
    max-width: 100%;
  }
}

.section--no-padding {
  padding: 3rem 0;
}

.section--alt {
  padding: 10rem 0;
}

@media (max-width: 1023px) {
  .section--alt {
    padding: 8rem 0 5rem;
  }
}

@media (max-width: 767px) {
  .section--alt {
    padding: 7rem 0 0;
  }
}

.section--alt .section__head {
  margin-bottom: 3.4rem;
}

@media (max-width: 767px) {
  .section--alt .section__head {
    margin-bottom: 3.6rem;
  }
}

.section--gallery {
  padding: 6rem 0 0;
}

@media (max-width: 1023px) {
  .section--gallery {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .section--gallery .section__head {
    margin-bottom: 3rem;
  }
}

.section--gallery .section__actions {
  margin-top: 3.4rem;
}

@media (max-width: 767px) {
  .section--gallery .section__actions {
    margin-top: 2.4rem;
  }
}

/* ------------------------------------------------------------ *\
    Service 
\* ------------------------------------------------------------ */
.service {
  position: relative;
  padding-bottom: 92%;
}

@media (max-width: 1023px) {
  .service {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .service {
    margin-bottom: 0.8rem;
    padding-bottom: 91%;
  }
}

.service>a {
  display: block;
}

.service .service__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service .service__image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.service .service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service .service__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  color: #fff;
  padding: 4.6rem 5.1rem;
}

@media (max-width: 1199px) {
  .service .service__content {
    padding: 3rem;
  }
}

@media (max-width: 767px) {
  .service .service__content {
    padding: 2rem;
  }
}

.service .service__content h3 {
  margin-bottom: 1.4rem;
  max-width: 45rem;
}

@media (max-width: 767px) {
  .service .service__content h3 {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .service .service__content p {
    display: none;
  }
}

.shell {
  --shell-max-width: 153.5rem;
  --shell-gutter: 3.5rem;
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .shell {
    --shell-gutter: 2.7rem;
  }
}

.shell--fluid {
  max-width: none;
}

.shell--small {
  --shell-max-width: 127.8rem;
}

/* ------------------------------------------------------------ *\
    Slider Gallery
\* ------------------------------------------------------------ */
.slider-gallery {
  position: relative;
}
.slider-gallery img {
  width: 100%;
  padding: 0 10px;
}
.slider-gallery:before,
.slider-gallery:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34.9rem;
  z-index: 1;
}

@media (max-width: 1023px) {
  .slider-gallery img {
    padding: 0 5px;
  }
  .slider-gallery:before,
  .slider-gallery:after {
    width: 10rem;
  }
}

@media (max-width: 767px) {

  .slider-gallery:before,
  .slider-gallery:after {
    display: none;
  }
}

.slider-gallery:before {
  background: linear-gradient(-90deg, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
  left: 0;
}

.slider-gallery:after {
  right: 0;
  background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
}

.slider-gallery .slick-list {
  padding: 0 36.5% 0 9.3% !important;
}

@media (max-width: 1023px) {
  .slider-gallery .slick-list {
    padding: 0 10.2% !important;
  }
}

.slider-gallery .slider__actions {
  position: absolute;
  top: 50.5%;
  right: 4.9rem;
  left: 4.2rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

@media (max-width: 767px) {
  .slider-gallery .slider__actions {
    top: 49%;
    right: 1rem;
    left: 1rem;
  }
}

.slider-gallery .slider__btn {
  background-color: rgba(255, 255, 255, 0.56);
  border: 0.1rem solid var(--color-primary);
  border-radius: 50%;
  width: 9.2rem;
  height: 9.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

@media (max-width: 1023px) {
  .slider-gallery .slider__btn {
    width: 5.1rem;
    height: 5.1rem;
    background-color: #fff;
  }
}

.slider-gallery .slider__btn:hover {
  background-color: var(--color-primary);
}

.slider-gallery .slider__btn:hover svg path {
  fill: #fff;
}

@media (max-width: 767px) {
  .slider-gallery .slider__btn svg {
    width: 0.9rem;
    height: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(odd) .gallery .gallery__image:nth-child(1) img {
    max-width: 28.6rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(odd) .gallery .gallery__image:nth-child(2) img {
    display: none;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(odd) .gallery .gallery__image:nth-child(3) img {
    max-width: 13.9rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(odd) .gallery .gallery__image:nth-child(4) img {
    max-width: 13.9rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(odd) .gallery .gallery__image:nth-child(5) img {
    display: none;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(even) .gallery .gallery__image:nth-child(1) img {
    max-width: 13.9rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(even) .gallery .gallery__image:nth-child(2) img {
    max-width: 13.9rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(even) .gallery .gallery__image:nth-child(3) img {
    max-width: 28.6rem;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(even) .gallery .gallery__image:nth-child(4) img {
    display: none;
  }
}

@media (max-width: 1199px) {
  .slider-gallery .slick-slide:nth-child(even) .gallery .gallery__image:nth-child(5) img {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
    Slider hero
\* ------------------------------------------------------------ */
.slider-hero .slider__clip,
.slider-hero .slider__slides,
.slider-hero .slider__slide,
.slider-hero .slick-track,
.slider-hero .slick-list {
  height: 100%;
}

.slider-hero .slider__slide {
  position: relative;
}

.slider-hero .slider__slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slider-hero .slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-hero .slider__actions {
  position: absolute;
  bottom: 2.9rem;
  right: 6rem;
  z-index: 3;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .slider-hero .slider__actions {
    right: 3rem;
  }
}

@media (max-width: 767px) {
  .slider-hero .slider__actions {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7.5rem;
  }
}

.slider-hero .slider__btn {
  background-color: transparent;
  border: none;
}

@media (max-width: 767px) {
  .slider-hero .slider__btn svg {
    width: 0.9rem;
    height: 1.5rem;
  }
}

.slider-hero .slider__progress {
  font: 400 5.8rem/1.3 var(--ff-cormorant);
  font-style: italic;
  color: #fff;
  margin: 0 3rem;
}

@media (max-width: 1023px) {
  .slider-hero .slider__progress {
    font-size: 3.8rem;
  }
}

@media (max-width: 767px) {
  .slider-hero .slider__progress {
    margin: 0 2.1rem;
  }
}

/* ------------------------------------------------------------ *\
    Slider nav
\* ------------------------------------------------------------ */
.slider-nav {
  background-color: #fff;
  border-bottom: 0.1rem solid #e2e2e2;
  position: relative;
}

.slider-nav:before,
.slider-nav:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34.9rem;
  z-index: 1;
}

@media (max-width: 767px) {

  .slider-nav:before,
  .slider-nav:after {
    display: none;
  }
}

.slider-nav:before {
  background: linear-gradient(-90deg, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
  left: 0;
}

.slider-nav:after {
  right: 0;
  background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
}

.slider-nav .slider__slide {
  padding: 2.3rem 4.5rem 2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .slider-nav .slider__slide {
    padding: 1.3rem 1.1rem 1rem;
  }
}

.slider-nav .slider__slide a {
  font: 600 2.4rem/1 var(--ff-cormorant);
  text-decoration: none;
  color: rgba(12, 45, 62, 0.38);
}

@media (max-width: 767px) {
  .slider-nav .slider__slide a {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .slider-nav .slider__actions {
    display: none;
  }
}

.slider-nav .slider__btn {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-nav .slider__prev {
  left: 6rem;
}

.slider-nav .slider__next {
  right: 6rem;
}

.slider-nav .slick-current a {
  color: var(--color-primary);
}

/* ------------------------------------------------------------ *\
    Slider Offers
\* ------------------------------------------------------------ */
.slider-offers {
  position: relative;
}

.slider-offers .slick-list {
  overflow: visible;
}

.slider-offers .slick-list:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 34.9rem;
  background: linear-gradient(to right, rgba(251, 248, 244, 0), rgba(251, 248, 244, 0.8));
  margin-right: calc(50% - 50vw);
}

@media (max-width: 1023px) {
  .slider-offers .slick-list:after {
    display: none;
  }
}

.slider-offers .slider__slides {
  margin: 0 -3.5rem;
}

@media (max-width: 1023px) {
  .slider-offers .slider__slides {
    margin: 0 0;
  }
}

.slider-offers .slider__slides a {
  text-decoration: none;
}

.slider-offers .slider__slide {
  padding: 0 3.5rem;
  max-width: 70.1rem;
  width: 100%;
}

@media (max-width: 1023px) {
  .slider-offers .slider__slide {
    padding: 0 0.8rem;
  }
}

.slider-offers .slick-slide:nth-child(2n) {
  margin-top: 10.5rem;
}

@media (max-width: 767px) {
  .slider-offers .slick-slide:nth-child(2n) {
    margin-top: 4.5rem;
  }
}

.slider-offers .slider__actions {
  position: absolute;
  top: 39.5%;
  right: -13.5rem;
  left: -13.5rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1820px) {
  .slider-offers .slider__actions {
    right: 0;
    left: 0;
  }
}

@media (max-width: 1023px) {
  .slider-offers .slider__actions {
    right: -2.4rem;
    left: -2.4rem;
    top: 45%;
  }
}

.slider-offers .slider__btn {
  background-color: transparent;
  border: 0.1rem solid var(--color-primary);
  border-radius: 50%;
  width: 9.2rem;
  height: 9.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.slider-offers .slider__btn:hover {
  background-color: var(--color-primary);
}

.slider-offers .slider__btn:hover svg path {
  fill: #fff;
}

@media (max-width: 1820px) {
  .slider-offers .slider__btn {
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .slider-offers .slider__btn {
    width: 5.1rem;
    height: 5.1rem;
  }
}

@media (max-width: 767px) {
  .slider-offers .slider__btn svg {
    width: 0.9rem;
    height: 1.5rem;
  }
}

.slider-offers .slider__progress {
  font: 400 3.8rem/1.3 var(--ff-cormorant);
  font-style: italic;
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .slider-offers .slider__progress {
    font-size: 3.4rem;
  }
}

.slider-offers .slider__actions-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.slider-offers .slider__actions-secondary .slider__btn {
  width: 0.9rem;
  height: 1.5rem;
  border: none;
  background-color: transparent;
}

/* ------------------------------------------------------------ *\
    Slider Properties
\* ------------------------------------------------------------ */
.slider-properties {
  position: relative;
}

.slider-properties .slick-list {
  padding: 0 20% 0 0 !important;
}

@media (max-width: 1023px) {
  .slider-properties .slick-list {
    padding: 0 !important;
  }
}

.slider-properties .slider__actions {
  position: absolute;
  bottom: 4.9rem;
  right: 24.2%;
  z-index: 3;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .slider-properties .slider__actions {
    top: 2.8rem;
    bottom: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.slider-properties .slider__btn {
  background-color: transparent;
  border: none;
}

@media (max-width: 767px) {
  .slider-properties .slider__btn svg {
    width: 0.9rem;
    height: 1.5rem;
  }
}

.slider-properties .slider__progress {
  font: 400 5.8rem/1.3 var(--ff-cormorant);
  font-style: italic;
  color: #fff;
  margin: 0 3rem;
}

@media (max-width: 767px) {
  .slider-properties .slider__progress {
    font-size: 3.4rem;
    margin: 0 4rem;
  }
}

/* ------------------------------------------------------------ *\
    Slider rooms nav
\* ------------------------------------------------------------ */
.slider-rooms-nav .slider__slide {
  text-align: center;
  padding: 0 4.5rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .slider-rooms-nav .slider__slide {
    padding: 0 1.1rem;
  }
}

.slider-rooms-nav .slider__slide p {
  font: 600 2.4rem/1.3 var(--ff-cormorant);
  color: #fff;
  opacity: 0.6;
  padding-bottom: 6rem;
  position: relative;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .slider-rooms-nav .slider__slide p {
    font-size: 1.8rem;
    padding-bottom: 0;
    padding-top: 6rem;
  }
}

.slider-rooms-nav .slider__slide p:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0.15rem;
  height: 5.8rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (max-width: 767px) {
  .slider-rooms-nav .slider__slide p:after {
    top: 0;
    bottom: auto;
    height: 4.4rem;
    width: 0.1rem;
  }
}

.slider-rooms-nav .active p {
  opacity: 1;
}

.slider-rooms-nav .active p:after {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------ *\
    Slider rooms
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
    Socials
\* ------------------------------------------------------------ */
.socials ul {
  list-style-type: none;
  margin: 0 -1.2rem;
}

.socials li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1.2rem;
}

@media (max-width: 767px) {
  .socials li {
    padding: 0 1.4rem;
  }
}

.socials a {
  transition: opacity 0.3s;
}

.socials a:hover {
  opacity: 0.55;
}

/* ------------------------------------------------------------ *\
    Title
\* ------------------------------------------------------------ */
.title {
  position: relative;
}

@media (max-width: 767px) {
  .title {
    text-align: center;
  }
}

.title h2 {
  color: var(--color-primary);
  position: relative;
}

@media (max-width: 767px) {
  .title h2 {
    width: 100%;
    display: block;
  }
}

.title h2:after {
  content: "";
  position: absolute;
  top: 5.4rem;
  right: calc(100% + 3rem);
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .title h2:after {
    right: calc(100% - 0.2rem);
    top: 50%;
    transform: translateY(-50%);
    height: 0.1rem;
  }
}

.title h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 0.2rem);
  transform: translateY(-50%);
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-primary);
  display: none;
}

@media (max-width: 767px) {
  .title h2:before {
    display: block;
  }
}

.title span {
  position: absolute;
  top: -9.5rem;
  left: -13.4rem;
  font: 20rem/1 var(--ff-cormorant);
  color: #fff;
  width: 113rem;
  display: block;
  white-space: nowrap;
}
.carousel-full-width .title {
  text-align: center;
  padding-bottom: 2rem;
}
.carousel-full-width .title span {
  left: 50%;
  transform: translateX(-50%);
      width: auto;
}
@media (max-width: 1399px) {
  .title span {
    font-size: 16rem;
  }
}

@media (max-width: 1199px) {
  .title span {
    font-size: 14rem;
  }
}

@media (max-width: 1023px) {
  .title span {
    font-size: 9rem;
    left: -5rem;
    top: -5rem;
  }
}

@media (max-width: 767px) {
  .title span {
    width: 50rem;
    left: -10.5rem;
    top: -2rem;
  }
}

.wrapper {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.newsletter-footer .section-entry {
  padding: 0;
}
.gform-theme .gform-body.gform_body {
  max-width: 900px!important;
  margin: 25px auto 0!important;
}
.gform_button.button {
    margin: 0 auto;
    background: var(--color-book-now) !important;
}
.gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section)) {
  text-align: left;
}
.newsletter-footer .section__content {
  max-width: 100%;
  width: 100%;
}
.section-subscribe .gform-theme--framework .field_sublabel_above .gform-field-label--type-sub {
  display: none;
}
.section-subscribe .gform-theme--framework .gform-field-label--type-inline {
    color: white;
    text-align: left;
}
.section-subscribe .gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])) {
  display: none;
}
.section-subscribe .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  text-align: left;
    background: transparent;
    color: white;
    font-style: italic;
}
.section-subscribe .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=checkbox])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) 
{
      border: none;
    border-bottom: 1px solid #dadada;
}
.section-subscribe .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=checkbox])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
    --gf-local-border-color: transparent !important;
    --gf-local-outline-color: transparent !important;
}
@media (max-width: 1023px){
  .section-subscribe .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=checkbox])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    width: 100%;
  }
}
.section-subscribe .gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
  color: white;
}
#gform_6 fieldset {
  margin-bottom: 1.5rem;
  text-align: left;
}

#gform_6 .gfield_label,
#gform_6 .gform-field-label {
  color: #fff;
  text-align: left;
}

#gform_6 .gfield--type-html {
  color: #fff;
}
input[type="submit"] {
  background-color: var(--color-book-now)!important;
  margin: 0 auto!important;
}
#gform_6 input[type="text"],
#gform_6 input[type="email"] {
  appearance: none;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 0.1rem solid #fff;
  font: 400 1.8rem / 1.3 var(--ff-cormorant);
  font-style: italic;
  color: #fff;
  padding: 1.2rem 0;
  border-radius: 0;
}

.gform-theme input[type="submit"] {
  padding: 1.6rem 3.8rem !important;
  text-transform: uppercase !important;
  font-size: 1.4rem !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;

}
.section-subscribe .gform-theme input[type="submit"] {
  background-color: transparent !important;
  border: 1px solid white!important;
}
.section-subscribe .gform-theme input[type="checkbox"] {  
  border: 1px solid white!important;
}
#gform_6 input[type="submit"] {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 0.1rem solid #fff;
  border-radius: 0.3rem;
  text-transform: uppercase;
  padding: 2.1rem 4.8rem 2.4rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  background-color: transparent !important;
  color: #fff;
  border-color: #fff;
}

#gform_6 input[type="submit"]:hover {
  background-color: #fff;
}

.rank-math-html-sitemap {
  color: #000;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.rank-math-html-sitemap>div {
  padding-bottom: 3rem;
}

.rank-math-html-sitemap ul {
  margin: 0px;
  padding-inline-start: 0;
}

.rank-math-html-sitemap ul li {
  padding: 10px;
  border: 1px solid #ccc;
  border-left: 3px solid var(--color-tertiary);
  margin: 10px;
  list-style: none;
  background: #fff;
}

.rank-math-html-sitemap ul li a {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.rank-math-html-sitemap ul ul li {
  border-left: 4px solid var(--color-primary);
}

.rank-math-html-sitemap ul ul li a {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
}

.rank-math-html-sitemap ul ul li ul li {
  border-left: 4px solid #333;
}

.rank-math-html-sitemap ul ul li ul li a {
  font-size: 12px;
  font-weight: 400;
  text-transform: normal;
  color: #666;
}

/* .gform-theme--framework .field_sublabel_above .gform-field-label--type-sub {
  text-align: left;
}
.gform_heading {
    margin-bottom: 20px;
} */
 .section-welcome--alt.media-and-text-section {
  padding: 3rem 0;
 }
.media-and-text-section .mirrored {
  flex-direction: row-reverse;
}

.section-welcome--alt.media-and-text-section .section__inner {
  overflow: hidden;
  margin: 5rem 0;
}
@media (max-width: 1023px) {
  .section-welcome--alt.media-and-text-section .section__inner {
    flex-direction: column;
    margin: 3rem 0;
  }
  .section-welcome--alt.media-and-text-section .section__inner.mirrored {
    flex-direction: column-reverse;
  }
}
.section-welcome--alt.media-and-text-section .section__body {
  width: 60%;
  max-width: 60%;
  flex: 0 1 60%;
  margin-right: 0;
  padding-right: 13.5rem;
}
@media (max-width: 1023px) {
  .section-welcome--alt.media-and-text-section .section__body {
    width: 100%;
    max-width: 100%;
    flex: 0 1 100%;
    padding-right: 0;
  }
}
.section-welcome--alt.media-and-text-section h2 {
  margin-bottom: 2.5rem;
  font-size: 50px;
  line-height: 54px;
  color: var(--color-primary);
}
@media (max-width: 1023px) {
  .section-welcome--alt.media-and-text-section h2 {
  margin-bottom: 1.5rem;
    font-size: 32px;
  line-height: 38px;
}
}
.section-welcome--alt.media-and-text-section .section__images {
  width: 40%;
  max-width: 40%;
  flex: 0 1 40%;
  margin-right: auto;
  text-align: right;
}
@media (max-width: 1023px) {
  .section-welcome--alt.media-and-text-section .section__images {
    width: 100%;
    max-width: 100%;
    flex: 0 1 100%;
    text-align: left;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.section-welcome--alt.media-and-text-section .mirrored .section__images {
  text-align: left;
}
.section-welcome--alt.media-and-text-section .section__image {
  max-width: 100%;
  flex: 0 0 100%;
}

.section-welcome.media-and-text-section .section__images img {
  max-width: 504px;
}
.full-width-media-section {
  position: relative;
  display: block;
}
.full-width-media-section .bg-image {
  height: 100%;
  width: 100%;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.full-width-media-section .full-width-media-content {
    min-height: 550px;
    z-index: 2;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.full-width-media-section .full-width-media-content .full-width-media-title {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  max-width: 1277px;
  padding: 0 30px;
}
.full-width-media-title h2 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .full-width-media-section .full-width-media-content {
    min-height: 340px;
  }
  .full-width-media-title h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.full-width-media-text {
  margin-bottom: 30px;
}
.full-width-media-section .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: 0;
  opacity: 0.3;
}
.wp-block-table .has-fixed-layout {
  width: auto;
}
.wp-block-table td, .wp-block-table th {
  min-width: 120px!important;
  padding: 8px 20px!important;
  font-size: 14px!important;
  border-color: #d3d3d3;
}
.wp-block-table.aligncenter {
  margin: 0 auto;
}
.wp-block-table thead {
    border-bottom: none;
}
.wp-block-table thead tr {
  color: var(--color-primary);
}
.wp-block-table thead th {
  border-color: #d3d3d3;
  border-bottom: 1px solid var(--color-primary);
}
div:has(> .wp-block-table) {
  width: 100%;
  overflow: auto;
}
nav#main-menu {
  display: flex;
  position: fixed;
  top: 92px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  transition: 0.6s all;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: white;
}

nav#main-menu ul > li > ul {
  font-size: 12px;
}
@media (max-width: 1023px) {
  nav#main-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
nav#main-menu.m-open {
  opacity: 1;
  visibility: visible;
  left: 0;
}
nav#main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav#main-menu li {
  display: flex;
  align-items: flex-start;
  position: relative;
  flex-direction: column;
}
nav#main-menu li > a, .expand-btn {
  background: none;
  color: #575757;
  padding: 1rem;
  font-size: 1rem;
  line-height: 62px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 400;
  transition: 0.4s all;
}
.expand-btn.btn-open {
  transform: rotate(180deg);
}
nav#main-menu a:focus, .expand-btn:focus, .menu-toggle:focus {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}
nav#main-menu .expand-btn {
  position: absolute;
  right: 10%;
  top: 0;
  width: auto;
  background: none;
  z-index: 2;
  height: 66px;
}
@media (max-width: 1023px) {
  nav#main-menu .expand-btn {
    right: 1%;
    height: 64px;
  }
}
nav#main-menu .main-menu-list > ul > li > ul[aria-hidden="false"] {
  /* display: block; */
  visibility: visible;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}
nav#main-menu .main-menu-list > ul > li > ul > li > ul[aria-hidden="false"] {
  /* display: block; */
  max-height: 1000px;
  z-index: 2;
}
nav#main-menu li ul li a {
  padding-left: 2rem;
}
nav#main-menu .main-menu-overlay {
  max-width: 100%;
  flex: 0 1 100%;
  display: inline-flex;
}

@media (max-width: 1023px) {
  nav#main-menu .main-menu-overlay {
    max-width: 100%;
  }
}
nav#main-menu .main-menu-list {
  color: white;
  height: 100%;
  width: 50%;
  display: flex;
  padding: 4.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list {
    width: 100%;
    padding: 50px 35px 120px;
  }
}
nav#main-menu .main-menu-list > ul {
  list-style: none;
  margin: 0;
  position: relative;
  padding: 20px 0 0 33px;
  width: 100%;
  transition: 0.2s all;
  height: 100%;
  overflow: auto;
  scrollbar-color: var(--color-book-now) #f5f5f5;
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul {
    padding: 0;
    overflow-x: hidden;
  }
}
nav#main-menu .main-menu-list > ul > li > a {
  border-bottom: 2px solid var(--color-secondary);
  font-size: 2.1rem;
  line-height: 40px;
  padding: 12px;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
  font-weight: 400;
  width: 90%;
  transition: 0.2s all;
}
@media (max-width: 1280px) {
  nav#main-menu .main-menu-list > ul > li > a {
    font-size: 21px;
    line-height: 24px;
    padding: 15px 0;
  }
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li > a {
    width: 100%;
  }
}
nav#main-menu .main-menu-list > ul > li.current-menu-item > a {
  border-bottom: 2px solid var(--color-primary);
}
nav#main-menu .main-menu-list > ul > li:hover > a, nav#main-menu .main-menu-list > ul > li.active > a {
  border-bottom: 2px solid var(--color-primary);
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li.open-subnav > ul {
    display: block;
    left: 0%;
    top: 90px;
    padding: 25px 43px;
    z-index: 4;
    transition: all 0.6s ease;
    margin: 0;
    width: 100%;
    height: 100% !important;
    text-align: center;
    display: block;
    opacity: 1;
    visibility: visible;
    min-width: auto;
  }
}
nav#main-menu .main-menu-list > ul > li > ul {
  opacity: 0;
  visibility: hidden;
  width: auto;
  padding-left: 25px;
  list-style-type: none;
  transition: 0.5s all;
  max-height: 0;
  letter-spacing: 0.32px;
}
@media (max-width: 1280px) {
  nav#main-menu .main-menu-list > ul > li > ul {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li > ul {
    color: var(--color-primary);
    font-size: 16px;
    left: 0;
    height: 100% !important;
    top: 0;
    z-index: 10;
    padding-left: 15px;
  }
}
nav#main-menu .main-menu-list > ul > li > ul > li {
  position: relative;
  transition: 0.2s all;
  display: list-item;
}
nav#main-menu .main-menu-list > ul > li > ul > li:first-of-type:before {
  top: calc(50% + 4px);
}
nav#main-menu .main-menu-list > ul > li > ul > li:last-of-type:before {
  top: calc(50% - 12px);
}
/* nav#main-menu .main-menu-list > ul > li > ul > li:before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: -15px;
  width: 10px;
  height: 10px;
  font-size: 16px;
  color: var(--color-primary);
  background-image: url(/wp-content/themes/metropole-hotel-cork/assets/images/diamond.svg);
  background-size: contain;
  background-repeat: no-repeat;
} */
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li > ul > li {
    padding-left: 0;
  }
}
nav#main-menu .main-menu-list > ul > li > ul > li:first-of-type {
  padding-top: 15px;
}
nav#main-menu .main-menu-list > ul > li > ul > li:last-of-type {
  padding-bottom: 15px;  
}
nav#main-menu .main-menu-list > ul > li > ul > li a {
  width: auto;
  font-size: 18px;
  line-height: 22px;
  padding: 12px 6px;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
  font-weight: 400;
  padding-bottom: 5px;
  transition: 0.4s all;
  transition: 0.2s all;
}
@media (max-width: 1280px) {
  nav#main-menu .main-menu-list > ul > li > ul > li a {
    font-size: 18px;
    line-height: 22px;
    padding: 8px;
  }
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li > ul > li a {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
nav#main-menu .main-menu-list > ul > li > ul > li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.45s;
}
nav#main-menu .main-menu-list > ul > li > ul > li a:hover:after {
  width: 100%;
  left: 0;
}
nav#main-menu .main-menu-list > ul > li > ul > li > ul > li {
  padding-left: 25px;
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-list > ul > li > ul > li > ul > li {
    padding-left: 10px;
  }
}
nav#main-menu .main-menu-list > ul > li > ul > li > ul > li a {
  font-size: 13px;
}
nav#main-menu .main-menu-img {
  width: 50%;
  flex: 0 1 100%;
  background-color: white;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
nav#main-menu .main-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  nav#main-menu .main-menu-img {
    display: none;
  }
  nav#main-menu .main-menu-list {
    width: 100%;
  }
  nav#main-menu .parent-name {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 22px;
    color: var(--color-primary);
    margin-bottom: 25px;
    margin-top: 10px;
  }
  nav#main-menu .main-menu-back {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
  }
  nav#main-menu .main-menu-back .goback-arrow {
    color: var(--color-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 14px;
    cursor: pointer;
  }
  nav#main-menu .main-menu-back .goback-arrow svg {
    height: 12px;
    margin-right: 10px;
    margin-bottom: -1px;
  }
}
