@charset "UTF-8";
@keyframes pulse {
  0% {
    transform: scale(0.75);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.75);
  }
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #87745F;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
  background: #CCB495;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical:active, ::-webkit-scrollbar-thumb:horizontal:active {
  background: #CCB495;
  -webkit-border-radius: 0;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
html {
  scroll-padding-top: 150px;
}

body {
  --minFontSize: 19px;
  --maxFontSize: 20px;
  --scaler: 1em;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  margin: 0;
  font-family: "Cormorant", serif;
  color: #3D3D3D;
  font-weight: 300;
  line-height: 150%;
}
@media (min-width: 1200px) {
  body {
    line-height: 1.85em;
  }
}
body.show-menu {
  overflow: hidden;
}
@media (min-width: 1300px) {
  body.show-menu {
    overflow: auto;
  }
}
body.hospitalitysite {
  border: 5px solid red;
}

strong {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-outline {
  --color: #CCB495;
  --hover: #CCB495;
}

.cta-link {
  --color: #87745F;
  --hover: #87745F;
}

.cta-discovermore {
  --color: #87745F;
  --hover: #87745F;
}

.cta-outline {
  --color: #CCB495;
  --hover: #CCB495;
}

.cta-link {
  --color: #87745F;
  --hover: #87745F;
}

.cta-discovermore {
  --color: #87745F;
  --hover: #87745F;
}

.cta-outline {
  --color: #CCB495;
  --hover: #CCB495;
}

.cta-link {
  --color: #87745F;
  --hover: #87745F;
}

.cta-discovermore {
  --color: #87745F;
  --hover: #87745F;
}

.cta-outline {
  position: relative;
  display: inline-block;
  background: none;
  border: 1px solid;
  font-size: 19px !important;
  line-height: 1;
  overflow: hidden;
  margin: 0.5em 0;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 10px;
}
.cta-outline:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 0;
  background: var(--hover);
  transition: all 0.4s ease;
}
.cta-outline span {
  position: relative;
  margin: 0 10px 0 0;
}
.cta-outline span.hide-mobile {
  position: relative;
  z-index: 1;
  display: none;
}
@media (min-width: 992px) {
  .cta-outline span.hide-mobile {
    display: inline-block;
  }
}
.cta-outline svg, .cta-outline i {
  animation: pulse 2s infinite;
}
.cta-outline:hover:before, .cta-outline:focus:before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--hover);
}

.cta-link {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 21px;
  position: relative;
  margin: auto;
  padding: 4px 20px;
  transition: all 0.2s ease;
  background: #CCB495;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cta-link {
    font-size: 23px;
  }
}
.cta-link:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: var(--hover);
  transition: all 0.4s ease;
  border: none;
}
.btn-cta .cta-link {
  display: block;
  border-radius: 60px 60px 0 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .btn-cta .cta-link {
    display: inline-block;
    border-radius: 10px;
  }
}
.btn-cta .cta-link:before {
  border-radius: 60px 60px 0 0;
}
@media (min-width: 1200px) {
  .btn-cta .cta-link:before {
    border-radius: 10px;
  }
}
.btn-cta .cta-link:hover:before {
  border: 1px solid;
}
.btn-round .cta-link {
  display: inline-block;
  background: transparent;
  border: 1px solid #87745F;
  color: #87745F;
  border-radius: 30px;
}
.btn-round .cta-link:before {
  border-radius: 30px;
}
.btn-round .cta-link:hover span {
  color: #ffffff;
}
.cta-link span {
  position: relative;
  font-size: 19px;
  line-height: inherit;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  transition: all 0.4s ease;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .cta-link span {
    font-size: 19px;
  }
}
.cta-link:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hover);
}
.cta-link:hover span {
  transform: translateX(0%);
  display: inline-block;
}

.cta-discovermore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
  width: 50px;
  height: 50px;
  position: relative;
  background: none;
  border: 1px solid;
  font-size: 19px !important;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 100%;
}
@media (min-width: 992px) {
  .cta-discovermore {
    width: 150px;
    height: 150px;
  }
}
.cta-discovermore:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  border-radius: 100%;
  width: 0;
  height: 0;
  background: var(--hover);
  transition: all 0.4s ease;
}
.cta-discovermore span {
  position: relative;
}
.cta-discovermore span.hide-mobile {
  position: relative;
  z-index: 1;
  display: none;
}
@media (min-width: 992px) {
  .cta-discovermore span.hide-mobile {
    display: inline-block;
  }
}
.cta-discovermore svg, .cta-discovermore i {
  animation: pulse 2s infinite;
}
.cta-discovermore:hover:before, .cta-discovermore:focus:before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--hover);
}

p.right-align {
  text-align: right;
  margin: 1em 0;
}

#header {
  position: fixed;
  top: 5%;
  left: 0;
  width: 90%;
  z-index: 51;
  padding: 10px 0;
  margin: 0 5%;
  font-size: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #87745F;
  border-radius: 20px;
  transition: all 0.4s ease;
}
body.scrolled #header {
  top: 0;
  transition-delay: 0.3s;
}
#header #logo {
  order: 2;
  z-index: 8;
  margin-right: auto;
  margin-left: 30px;
}
@media (min-width: 1200px) {
  #header #logo {
    position: relative;
    order: unset;
  }
}
#header #logo a {
  display: block;
}
#header #logo img {
  display: block;
  width: 60px;
  height: auto;
}
@media (min-width: 1200px) {
  #header #logo img {
    width: 100px;
  }
}

.btn-nav {
  order: 3;
  z-index: 8;
  padding-right: 2.5%;
}
@media (min-width: 1200px) {
  .btn-nav {
    order: unset;
  }
}
.btn-nav #mobile-nav {
  z-index: 8;
  text-decoration: none;
}
.btn-nav #mobile-nav button {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  display: inline-block;
  outline: none;
}
@media (min-width: 1200px) {
  .btn-nav #mobile-nav button {
    width: 70px;
    height: 70px;
  }
}
.btn-nav #mobile-nav button span {
  width: 40px;
  height: 40px;
  display: block;
  top: 5px;
  left: 5px;
  position: absolute;
}
@media (min-width: 1200px) {
  .btn-nav #mobile-nav button span {
    width: 40px;
    height: 40px;
    top: 15px;
    left: 15px;
  }
}
.btn-nav #mobile-nav button span span.l1, .btn-nav #mobile-nav button span span.l2, .btn-nav #mobile-nav button span span.l3 {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 5;
  background-color: #ffffff;
  transition: all 0.4s ease;
}
.btn-nav #mobile-nav button span span.l1 {
  top: 8px;
}
.show-menu .btn-nav #mobile-nav button span span.l1 {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  top: 19px;
}
.btn-nav #mobile-nav button span span.l2 {
  top: 19px;
}
.show-menu .btn-nav #mobile-nav button span span.l2 {
  opacity: 0;
}
.btn-nav #mobile-nav button span span.l3 {
  top: 30px;
  transform: rotate(180deg);
}
.show-menu .btn-nav #mobile-nav button span span.l3 {
  transform: rotate(135deg);
  transform-origin: 50% 50%;
  top: 19px;
}
.btn-nav #mobile-nav button i {
  display: none;
}
@media (min-width: 1200px) {
  .btn-nav #mobile-nav {
    display: none;
  }
}

#nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  overflow: hidden;
  transform: translateY(-105%);
}
@media (min-width: 1200px) {
  #nav {
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    position: relative;
    width: auto;
    height: auto;
    overflow: visible;
    transform: none !important;
  }
}
#nav #box-menu {
  height: 100%;
  background: #87745F;
}
@media (min-width: 1200px) {
  #nav #box-menu {
    height: auto;
    background: none;
  }
}
#nav #box-menu > .inner {
  height: calc(100% - 160px);
  width: auto;
  margin: 0 auto 0 5%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  overflow: auto;
}
@media (min-width: 1200px) {
  #nav #box-menu > .inner {
    align-items: center;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    padding-top: 0;
  }
}
#nav #menu {
  display: flex !important;
  justify-content: flex-end;
  flex-direction: column;
  gap: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  #nav #menu {
    flex-direction: row;
    text-align: center;
    gap: 20px;
    margin-right: 40px;
  }
}
#nav #menu li a {
  display: block;
  text-decoration: none;
  line-height: 1em;
  padding: 0.3em 0.2em;
  color: #ffffff;
  font-size: 5.2vh;
}
@media (min-width: 1200px) {
  #nav #menu li a {
    font-size: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
#nav #menu li ul {
  background-color: unset;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 1200px) {
  #nav #menu li ul {
    position: absolute;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    border-radius: 20px;
  }
}
#nav #menu li ul a {
  padding: 0.3em 1.3em;
  color: #CCB495;
}
#nav #menu li.selected ul {
  max-height: 100vh;
  padding: 5px 0;
}
#nav #menu li.selected ul a {
  color: #ffffff;
}
@media (min-width: 1200px) {
  #nav #menu li.selected ul a {
    color: #CCB495;
  }
}
#nav #menu li.selected ul a:hover {
  color: #ffffff;
}

.btn-cta {
  position: fixed;
  z-index: 6;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .btn-cta {
    position: relative;
    width: auto;
    padding-right: 2.5%;
  }
}

#foto {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  margin: 0;
  font-size: 0;
  background: #000000;
}
#foto:before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0) 80%);
}
#foto .list {
  overflow: hidden;
  height: 100vh;
}
#foto .list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#foto .list img:not(:first-child) {
  display: none;
}
#foto #slide-nav {
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 21;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  #foto #slide-nav {
    bottom: 50px;
  }
}
#foto #slide-nav a {
  padding: 0 3px;
  transition: all 0.2s ease-out;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
}
#foto #slide-nav a span {
  display: block;
  height: 6px;
  width: 6px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.2s ease-out;
}
#foto #slide-nav a.current span {
  height: 24px;
  width: 24px;
}
#foto #foto-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.2);
}
#foto #foto-after .slogan {
  position: absolute;
  width: 90%;
  margin: 0 5%;
  text-align: center;
  bottom: 8%;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  #foto #foto-after .slogan {
    display: block;
    bottom: 8%;
  }
}
#foto #foto-after .slogan p {
  font-size: 16px;
  line-height: 140%;
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 992px) {
  #foto #foto-after .slogan p {
    font-size: 30px;
  }
}
#foto #foto-after .slogan p.sl-title {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  #foto #foto-after .slogan p.sl-title {
    font-size: 80px;
  }
}

h1 {
  font-size: 36px;
  color: #87745F;
  font-family: "Cormorant", serif;
  font-weight: 400;
  margin: 0.1em 0 0.72em 0;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  h1 {
    font-size: 80px;
  }
}

.subtitle {
  text-transform: uppercase;
  font-size: 24px;
  color: #CCB495;
}
@media (min-width: 992px) {
  .subtitle {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
  color: #87745F;
  font-family: "Cormorant", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.1em 0 0.42em 0;
  line-height: normal;
}
@media (min-width: 992px) {
  h2 {
    font-size: 80px;
  }
}

h3 {
  font-size: 30px;
  color: #3D3D3D;
  font-family: "Cormorant", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.1em 0 0.42em 0;
  line-height: 1.4em;
}
@media (min-width: 992px) {
  h3 {
    font-size: 50px;
  }
}

a {
  color: inherit;
}

iframe {
  border: none;
}

.outer-list {
  position: relative;
  margin: 3vh auto 3vh auto;
}
.outer-list .row {
  display: block;
}
@media (min-width: 768px) {
  .outer-list .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    flex-direction: row;
  }
}
.outer-list .row .list-item {
  width: calc(100% - 10px);
  padding: 0 4px;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .outer-list .row .list-item {
    flex: 0 0 auto;
    width: calc(50% - 10px);
    padding: 0;
    margin-bottom: 0;
  }
}
.outer-list .row .list-item:first-of-type .section-tag {
  background: #87745F;
}
.outer-list .row .list-item:last-of-type .section-tag {
  background: #CCB495;
}
.outer-list .row .list-item .image-box {
  position: relative;
  background: #161a1d;
  border-radius: 30px;
  overflow: hidden;
}
.outer-list .row .list-item .image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  aspect-ratio: 1600/900;
}
@media (min-width: 768px) {
  .outer-list .row .list-item .image-box img {
    min-height: 45vh;
  }
}
.outer-list .row .list-item .text-box {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.outer-list .row .list-item .text-box .section-tag {
  position: absolute;
  top: -25px;
  left: 30px;
}
.outer-list .row .list-item .text-box p {
  line-height: 1.4em;
}

.tab-box {
  padding: 6.9vw 0 4vh 0;
}
.tab-box ul.tab-filter {
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0;
  background: rgba(204, 180, 149, 0.2);
}
@media (min-width: 1200px) {
  .tab-box ul.tab-filter {
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .tab-box ul.tab-filter {
    max-width: 1400px;
    border-radius: 40px;
  }
}
.tab-box ul.tab-filter .swiper-wrapper {
  justify-content: space-evenly;
}
.tab-box ul.tab-filter li.swiper-slide {
  display: block;
  list-style: none;
  padding: 0;
  min-width: 180px;
  max-width: 200px;
}
@media (min-width: 1300px) {
  .tab-box ul.tab-filter li.swiper-slide {
    max-width: 215px;
  }
}
.tab-box ul.tab-filter li.swiper-slide:before {
  display: none;
}
.tab-box ul.tab-filter li.swiper-slide:last-of-type {
  margin-right: 0 !important;
}
.tab-box ul.tab-filter li.swiper-slide span {
  padding: 0.5em 1em;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  background: transparent;
  font-size: 20px;
  color: #87745F;
  border-radius: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .tab-box ul.tab-filter li.swiper-slide span {
    min-height: 100px;
    font-size: 30px;
  }
}
.tab-box ul.tab-filter li.swiper-slide span:hover {
  color: #ffffff;
  background: rgba(204, 180, 149, 0.2);
}
.tab-box ul.tab-filter li.swiper-slide.active span {
  color: #ffffff;
  background: rgba(204, 180, 149, 0.7);
}
.tab-box ul.tab-filter li.swiper-slide.active span:hover {
  color: #ffffff;
  background: rgba(204, 180, 149, 0.7);
}
.tab-box .tab-content {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 5% 5%;
}
.tab-box .tab-content .tab {
  display: none;
}
.tab-box .tab-content .tab.active {
  display: block;
}
.tab-box .tab-content > *:first-child {
  margin-top: 0;
}
.tab-box .tab-content > *:last-child {
  margin-bottom: 0;
}
.tab-box .row-container {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 30px;
  background: #87745F;
}
@media (min-width: 1200px) {
  .tab-box .row-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    border-radius: unset;
    background: unset;
  }
}
.tab-box .row-container .inner-box {
  top: -50px;
  position: relative;
  width: 100%;
  background: #87745F;
  border-radius: 30px;
}
@media (min-width: 1200px) {
  .tab-box .row-container .inner-box {
    top: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #87745F;
  }
}
.tab-box .row-container .inner-box .inner-text {
  position: relative;
  padding: 6%;
}
.tab-box .row-container .inner-box .inner-text h3 {
  color: #ffffff;
}
.tab-box .row-container .inner-box .inner-text p {
  color: #ffffff;
}
.tab-box .row-container .inner-box .inner-text .flexcontent {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.tab-box .row-container .inner-box .inner-text .flexcontent * {
  text-align: center;
  max-width: 100px;
  line-height: 1em;
}
.tab-box .row-container .image-box {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #CCB495;
  border-radius: 30px;
}
.tab-box .row-container .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#content {
  background: #ffffff;
}
body.noPhoto #content {
  padding-top: 60px;
}
#content li {
  list-style-type: none;
}
#content li:before {
  content: "•";
  float: left;
  margin-left: -24px;
  font-weight: 400;
  font-size: 1.5em;
}

.article .item-page {
  padding: 5% 5% 0 5%;
  margin: 0 auto;
  max-width: 1400px;
  text-align: left;
}
.article .column-box {
  -webkit-columns: unset;
  -moz-columns: unset;
  columns: unset;
  max-width: 1400px;
}
@media (min-width: 1200px) {
  .article .column-box {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    column-gap: 70px;
    margin: 0 auto;
  }
}

.section-item {
  position: relative;
  padding: 0.2vw 0 4vh 0;
}
.section-item > .inner {
  padding: 0 5%;
  margin: 0 auto;
  max-width: 1400px;
  text-align: left;
}
.section-item .content > .inner :first-child {
  margin-top: 0;
}
.section-item .content > .inner :last-child {
  margin-bottom: 0;
}
.section-item.section-offers .section-main .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-item.section-offers .offer-slider {
  padding: 6vh 0 6vh 5%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-item.section-offers .offer-slider {
    margin-left: 5%;
  }
}
.section-item.section-offers .offer-slider .slider-items {
  width: 70%;
  margin: 5%;
}
@media (min-width: 992px) {
  .section-item.section-offers .offer-slider .slider-items {
    width: 80%;
  }
}
.section-item.section-offers .offer-slider .rounded-content {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(204, 180, 149, 0.2);
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 992px) {
  .section-item.section-offers .offer-slider .rounded-content {
    flex-direction: row;
  }
}
.section-item.section-offers .offer-slider .rounded-content figure {
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .section-item.section-offers .offer-slider .rounded-content figure {
    min-width: 40%;
  }
}
.section-item.section-offers .offer-slider .rounded-content figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.section-item.section-offers .offer-slider .rounded-content .slider__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}
.section-item.section-offers .offer-slider .rounded-content .slider__content div {
  padding: 5%;
}
@media (min-width: 992px) {
  .section-item.section-offers .offer-slider .rounded-content .slider__content div {
    padding: 5% 15% 5% 5%;
  }
}
.section-item.section-offers .offer-slider .rounded-content .slider__content div h2, .section-item.section-offers .offer-slider .rounded-content .slider__content div h3, .section-item.section-offers .offer-slider .rounded-content .slider__content div p {
  color: #87745F;
}
.section-item.section-offers .offer-slider .rounded-content .slider__content .carousel-counter {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgba(204, 180, 149, 0.5);
  font-size: 36px;
}
@media (min-width: 1200px) {
  .section-item.section-offers .offer-slider .rounded-content .slider__content .carousel-counter {
    right: 5%;
    bottom: 20px;
    font-size: 60px;
  }
}
.section-item.section-offers .offer-slider .rounded-content .slider__content .carousel-counter .carousel-status {
  font-weight: 500;
  font-size: 36px;
}
@media (min-width: 1200px) {
  .section-item.section-offers .offer-slider .rounded-content .slider__content .carousel-counter .carousel-status {
    font-size: 120px;
  }
}
.section-item.section-offers .offer-slider.no-slider .slider-items {
  width: 90%;
  margin: 0 auto;
}
.section-item.section-offers .offer-slider.no-slider .slider-items .carousel-counter {
  display: none;
}
.section-item.section-accomodation .section-main .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .section-item.section-accomodation .section-main .inner p {
    text-align: left;
  }
}
.section-item.section-accomodation .tab-content {
  margin: 0 auto;
  max-width: unset;
  padding: 0;
}
@media (min-width: 992px) {
  .section-item.section-accomodation .tab-content {
    padding: 0;
  }
}
.section-item.section-accomodation .room-slider {
  padding: 30px 0;
  overflow: hidden;
}
.section-item.section-accomodation .room-slider .slider-items {
  width: 280px;
  margin: 0;
}
@media (min-width: 992px) {
  .section-item.section-accomodation .room-slider .slider-items {
    width: 360px;
  }
}
.section-item.section-accomodation .room-slider .rounded-content {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: #F5F0EA;
  justify-content: space-between;
  flex-direction: column;
}
.section-item.section-accomodation .room-slider .rounded-content figure {
  padding: 0;
  margin: 0;
  position: relative;
}
@media (min-width: 992px) {
  .section-item.section-accomodation .room-slider .rounded-content figure {
    min-width: 40%;
  }
}
.section-item.section-accomodation .room-slider .rounded-content figure:before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0) 80%);
}
.section-item.section-accomodation .room-slider .rounded-content figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-item.section-accomodation .room-slider .rounded-content figure .room-title {
  position: absolute;
  bottom: 0;
  left: 2%;
  z-index: 4;
  color: #ffffff;
  font-size: 40px;
  margin: 0 0.42em 0.42em 0.42em;
  line-height: 1em;
}
.section-item.section-accomodation .room-slider .rounded-content .slider__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section-item.section-accomodation .room-slider .rounded-content .slider__content div {
  padding: 5%;
  width: 100%;
}
.section-item.section-accomodation .room-slider .rounded-content .slider__content div p {
  color: #87745F;
  margin-bottom: 0.5rem;
}
.section-item.section-accomodation .room-slider .rounded-content .slider__content div .price strong {
  font-size: 25px;
}
.section-item.section-accomodation .room-slider .rounded-content .slider__content div .roompax img, .section-item.section-accomodation .room-slider .rounded-content .slider__content div .roomsqm img {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
.section-item.section-accomodation .room-slider.no-slider .swiper-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.section-item.section-accomodation .room-slider.no-slider .slider-items {
  width: 280px;
  margin: 0;
}
@media (min-width: 992px) {
  .section-item.section-accomodation .room-slider.no-slider .slider-items {
    width: 360px;
  }
}
.section-item.section-slider {
  overflow: hidden;
}
.section-item.section-slider .tab-content {
  margin: 0 auto;
  max-width: unset;
  padding: 0;
}
@media (min-width: 992px) {
  .section-item.section-slider .tab-content {
    padding: 0;
  }
}
.section-item.section-slider .slider {
  position: relative;
  margin: 5% 0 0 0;
  padding: 0;
}
.section-item.section-slider .slider .inner {
  position: relative;
}
.section-item.section-slider .slider .list-item {
  width: 80%;
}
.section-item.section-slider .slider .list-item:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 30px;
}
.section-item.section-slider .slider .list-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  max-height: 80vh;
  opacity: 0.7;
  object-fit: cover;
  border-radius: 30px;
}
.section-item.section-slider .slider.no-slider .list-item {
  width: 90%;
  margin: 0 auto;
}
.section-item.section-slider .slider .swiper-pagination {
  bottom: -40px !important;
}
@media (min-width: 992px) {
  .section-item.section-slider .slider .swiper-pagination {
    bottom: -50px !important;
  }
}
.section-item.section-slider .slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: transparent;
  border: 1px solid #87745F;
}
@media (min-width: 992px) {
  .section-item.section-slider .slider .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}
.section-item.section-slider .slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #CCB495;
  border: 1px solid #CCB495;
}
.section-item.section-textSlider {
  padding: 0;
}
.section-item.section-textSlider .section-main .inner {
  -webkit-columns: unset;
  -moz-columns: unset;
  columns: unset;
  max-width: 1200px;
  margin: 0 5%;
}
@media (min-width: 1300px) {
  .section-item.section-textSlider .section-main .inner {
    margin: 0 auto;
  }
}
.section-item.section-textSlider .swiperslider {
  padding: 30px 0 60px 5%;
}
@media (min-width: 992px) {
  .section-item.section-textSlider .swiperslider {
    padding: 70px 0 70px 5%;
  }
}
.section-item.section-textSlider .swiperslider .inner {
  position: relative;
}
.section-item.section-textSlider .swiperslider .list-item {
  width: 80%;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-item.section-textSlider .swiperslider .list-item {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .section-item.section-textSlider .swiperslider .list-item {
    width: 58%;
  }
}
.section-item.section-textSlider .swiperslider .list-item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
}
.section-item.section-textSlider .swiperslider .list-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  opacity: 0.7;
}
.section-item.section-comments {
  padding: 0 0 14% 0;
}
@media (min-width: 992px) {
  .section-item.section-comments {
    padding: 0.1vw 0 4% 0;
  }
}
.section-item.section-comments .swiperslider {
  overflow: hidden;
}
.section-item.section-comments .swiperslider .list-item {
  width: 80%;
  border-radius: 30px;
}
.section-item.section-comments .swiperslider .list-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  opacity: 0.7;
}
.section-item.section-comments blockquote {
  padding: 5%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  color: #87745F;
}
@media (min-width: 992px) {
  .section-item.section-comments blockquote {
    font-size: 29px;
  }
}
.section-item.section-comments blockquote span {
  display: block;
  font-size: 19px;
  margin-top: 20px;
  color: #3D3D3D;
}
.section-item.bg-transparent-bglight {
  background: linear-gradient(0deg, rgba(204, 180, 149, 0.1) 20%, transparent 20%);
}
.section-item.bglight {
  background: rgba(204, 180, 149, 0.1);
}

#footer-above {
  position: relative;
  margin: 0 auto;
  line-height: 1.8em;
  border-radius: 0 0 40px 40px;
}
#footer-above .section-contactform {
  position: relative;
  color: #3D3D3D;
  text-align: left;
  padding: 6vh 5%;
  margin-bottom: 9vh;
}
@media (min-width: 992px) {
  #footer-above .section-contactform {
    padding: 6vh 5%;
  }
}
#footer-above .section-contactform h2 {
  text-align: center;
}
#footer-above .section-contactform .show-hide-outer .show-hide-text a {
  color: #3D3D3D;
}
#footer-above .section-contactform .show-hide-outer .show-hide-text a:hover {
  color: #3D3D3D;
}

form.alteaForm {
  position: relative;
  max-width: 100%;
  z-index: 10;
  margin-top: 2vh;
  display: flex;
  gap: 40px;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  form.alteaForm {
    align-items: center;
    padding: 0 0 0 0;
    flex-direction: row;
  }
}
form.alteaForm .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
form.alteaForm .row .col {
  margin: 20px 0.5vw !important;
  flex-basis: 100%;
}
@media (min-width: 992px) {
  form.alteaForm .row .col {
    width: 20%;
    flex-grow: 1;
    flex-basis: unset;
    margin: 1.5vw 0.5vw !important;
  }
}
form.alteaForm .row .col .col-content {
  position: relative;
}
form.alteaForm .row .col .col-content label {
  position: absolute;
  top: -20px;
  left: 20px;
  padding: 0 5px;
  background: #FAF7F4;
  z-index: 4;
}
form.alteaForm .row .col .col-content svg, form.alteaForm .row .col .col-content i {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 20px;
  height: 20px;
  z-index: 10;
}
form.alteaForm .row .col .col-content svg path, form.alteaForm .row .col .col-content i path {
  fill: #87745F;
}
form.alteaForm .row .col.col-half {
  flex-basis: 48%;
}
@media (min-width: 992px) {
  form.alteaForm .row .col.col-half {
    flex-basis: 15%;
    width: 5%;
  }
}
form.alteaForm .row .col.col-half.childrenages {
  display: none;
}
form.alteaForm .row.row-reverse {
  flex-direction: row-reverse;
}
form.alteaForm .row.autocompiled-field {
  display: none;
  position: relative;
  width: 90%;
  border: 1px solid #87745F;
  border-radius: 10px;
  padding: 10px 15px;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0.5vw !important;
}
@media (min-width: 992px) {
  form.alteaForm .row.autocompiled-field {
    margin: 1.5vw 0.5vw !important;
  }
}
@media (min-width: 992px) {
  form.alteaForm .row.autocompiled-field {
    width: 50%;
  }
}
form.alteaForm .row.autocompiled-field img {
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
form.alteaForm .row.autocompiled-field p {
  line-height: 1em;
  margin: 0;
}
form.alteaForm .row.autocompiled-field .selectfield {
  margin-right: 30px;
}
form.alteaForm .row.autocompiled-field .cancleselect {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 12px;
  cursor: pointer;
}
form.alteaForm .row.autocompiled-field .cancleselect svg {
  width: 25px;
  height: 25px;
}
form.alteaForm .row.autocompiled-field .cancleselect svg path {
  fill: #87745F;
}
form.alteaForm .item-privacy {
  font-size: 15px;
  margin: 28px 0;
  padding: 0.5em;
  line-height: 1.6em;
  background: rgba(0, 0, 0, 0.1);
}
form.alteaForm .item-privacy p {
  margin: 0;
}
form.alteaForm .item-privacy.scrolling {
  max-height: 70px;
  overflow: auto;
  padding-right: 10px;
}
form.alteaForm label {
  font-weight: 300;
}
form.alteaForm label.accept-information {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: 300;
  display: block;
  padding: 1em 0;
}
form.alteaForm label.accept-information input {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}
form.alteaForm label.accept-information input:checked {
  box-shadow: 0 0 0 2px #10ce62;
}
form.alteaForm input[type=text], form.alteaForm input[type=tel], form.alteaForm input[type=email], form.alteaForm select {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  text-align: left;
  border: 1px solid #87745F;
  border-radius: 10px;
  outline: none;
  color: #3D3D3D;
  font-family: "Cormorant", serif;
  font-size: 20px;
  z-index: 3;
  background: #FAF7F4;
  -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
}
form.alteaForm input[type=text]::placeholder, form.alteaForm input[type=tel]::placeholder, form.alteaForm input[type=email]::placeholder, form.alteaForm select::placeholder {
  color: #3D3D3D;
}
form.alteaForm input[type=text]::-webkit-input-placeholder, form.alteaForm input[type=tel]::-webkit-input-placeholder, form.alteaForm input[type=email]::-webkit-input-placeholder, form.alteaForm select::-webkit-input-placeholder { /* Chrome */
  color: #3D3D3D;
}
form.alteaForm input[type=text]:-ms-input-placeholder, form.alteaForm input[type=tel]:-ms-input-placeholder, form.alteaForm input[type=email]:-ms-input-placeholder, form.alteaForm select:-ms-input-placeholder { /* IE 10+ */
  color: #3D3D3D;
}
form.alteaForm input[type=text]::-moz-placeholder, form.alteaForm input[type=tel]::-moz-placeholder, form.alteaForm input[type=email]::-moz-placeholder, form.alteaForm select::-moz-placeholder { /* Firefox 19+ */
  color: #3D3D3D;
  opacity: 1;
}
form.alteaForm input[type=text]:-moz-placeholder, form.alteaForm input[type=tel]:-moz-placeholder, form.alteaForm input[type=email]:-moz-placeholder, form.alteaForm select:-moz-placeholder { /* Firefox 4 - 18 */
  color: #3D3D3D;
  opacity: 1;
}
form.alteaForm input.error, form.alteaForm select.error, form.alteaForm textarea.error {
  background-color: rgba(255, 90, 0, 0.1);
  border: 1px solid #F71735;
  -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
}
form.alteaForm .af-form-dynamic-children-ages-block {
  display: flex;
  border: 1px solid #87745F;
  border-radius: 10px;
}
form.alteaForm .af-form-dynamic-children-ages-block select {
  border: none;
  display: none;
  padding: 10PX 3px;
  text-align: center;
}
form.alteaForm textarea {
  position: relative;
  resize: vertical;
  width: 95%;
  min-height: 15vh;
  font-family: "Cormorant", serif;
  color: #3D3D3D;
  font-size: 20px;
  border: 1px solid #87745F;
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  outline: none;
  z-index: 3;
}
@media (min-width: 992px) {
  form.alteaForm textarea {
    width: 98%;
  }
}
form.alteaForm textarea::placeholder {
  color: #3D3D3D;
}
form.alteaForm textarea::-webkit-input-placeholder { /* Chrome */
  color: #3D3D3D;
}
form.alteaForm textarea:-ms-input-placeholder { /* IE 10+ */
  color: #3D3D3D;
}
form.alteaForm textarea::-moz-placeholder { /* Firefox 19+ */
  color: #3D3D3D;
  opacity: 1;
}
form.alteaForm textarea:-moz-placeholder { /* Firefox 4 - 18 */
  color: #3D3D3D;
  opacity: 1;
}
form.alteaForm .errorMessages {
  display: none;
  text-align: left;
  border: 1px solid #F71735;
  padding: 10px;
  margin-bottom: 20px;
  background: #ffffff;
  color: #3D3D3D;
}
form.alteaForm .errorMessages label {
  display: list-item;
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 2px;
  font-size: 0.8em;
  padding: 0;
  text-align: left;
}
form.alteaForm .errorMessages p {
  color: #F71735;
  font-weight: 400;
  margin-top: 0;
}
form.alteaForm .end-content {
  position: relative;
}
form.alteaForm .accept-information {
  display: block;
  padding: 1em 0;
}
form.alteaForm .accept-information input {
  width: 15px;
  height: 15px;
}
form.alteaForm button.cta-outline {
  text-decoration: none;
  color: #87745F;
  font-family: "Cormorant", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  background: transparent;
  border: 1px solid #CCB495;
  z-index: 1;
}
form.alteaForm button.cta-outline:before {
  background: #87745F;
}
form.alteaForm button.cta-outline:hover {
  border: 1px solid #87745F;
}
form.alteaForm button.cta-outline:hover svg path, form.alteaForm button.cta-outline:hover i path {
  fill: #ffffff !important;
}
form.alteaForm button.cta-outline:hover span {
  border: none;
  color: #ffffff;
}
form.alteaForm button.cta-outline button[type=submit] {
  position: relative;
  border: none;
  text-align: right;
  background: none;
  line-height: 1.6em;
  font-family: "Cormorant", serif;
  cursor: pointer;
}

#footer {
  width: calc(90% - 60px);
  margin: 0 5% 60px 5%;
  padding: 10px 30px;
  font-size: 19px;
  line-height: 1.6em;
  background: rgba(204, 180, 149, 0.2);
  border-radius: 30px;
}
#footer .indirizzo {
  text-align: left;
}
#footer p {
  margin: 0.6em 0;
  color: #87745F;
}
#footer a {
  color: rgba(135, 116, 95, 0.6);
  transition: all 0.4s ease-out;
  text-decoration: none;
  font-weight: 300;
}
#footer a:hover {
  color: #87745F;
}
#footer ul {
  list-style: none;
  padding: 0;
}
#footer .inner .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  text-align: center;
  margin: 0 auto;
  flex-direction: column;
  max-width: 1400px;
}
@media (min-width: 992px) {
  #footer .inner .row {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
#footer .by-altea {
  position: relative;
  left: auto;
  right: auto;
  text-align: center;
}

.slidePrev-btn, .slideNext-btn {
  position: absolute;
  display: block;
  z-index: 10;
  cursor: pointer;
  bottom: 10px;
}
@media (min-width: 992px) {
  .slidePrev-btn, .slideNext-btn {
    bottom: calc(50% - 45px);
  }
}
.slidePrev-btn img, .slideNext-btn img {
  width: 43px;
  height: 43px;
}
@media (min-width: 992px) {
  .slidePrev-btn img, .slideNext-btn img {
    width: 90px;
    height: 90px;
  }
}

.slidePrev-btn {
  left: 25%;
}
@media (min-width: 992px) {
  .slidePrev-btn {
    left: 10%;
  }
}
.slidePrev-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.slideNext-btn {
  right: 25%;
}
@media (min-width: 992px) {
  .slideNext-btn {
    right: 10%;
  }
}
.slideNext-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.fancybox__content {
  display: block !important;
}

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