@charset "UTF-8";
/* H1 parte da 32px su viewport piccoli e cresce fino a 64px. */
/* H2 parte da 22px su mobile e arriva a 28px su desktop */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

[id^=anchor_] {
  scroll-margin-top: 200px;
}

:focus:not(.focus-visible) {
  outline: 0;
  box-shadow: none;
}

:focus {
  outline: 0;
  box-shadow: none;
}

.h-scrolling .fixed-header .header-inner {
  background-color: #F4F1EC;
  height: 90%;
  border-bottom: 1px solid #F4F1EC;
}
@media (max-width: 1024px) {
  .h-scrolling .fixed-header .header-inner {
    height: 90%;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.fullWidth img {
  width: 100%;
  height: auto;
}

body {
  margin: 0;
  color: #94522F;
  font-size: 20px;
  font-family: "zeitung";
  background-color: #F4F1EC;
}
body.h-menuopen {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

strong {
  font-weight: 600;
}

b {
  font-weight: 600;
}

.margin-auto {
  margin: auto;
}
.margin-auto p {
  margin: auto;
}
.margin-auto .container {
  margin: auto;
}

p a:hover, ul li a:hover {
  opacity: 0.5;
}

a {
  /*text-decoration: none;*/
}
a:hover {
  /*text-decoration: none;*/
  /*opacity: 0.5;*/
}

.nospacebottom {
  padding-bottom: 0 !important;
}

.nospacetop {
  padding-top: 0 !important;
}

.nospace {
  padding: 0 !important;
}

.reverse {
  flex-direction: row-reverse;
}
.reverse .article-content-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
.reverse .container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem !important;
}
.reverse .article-text-content, .reverse .article-img-content {
  flex: 1 1 50%;
}

.dark-bg {
  background-color: #94522F !important;
  color: #F4F1EC;
}
.dark-bg p {
  color: #F4F1EC;
}
.dark-bg .sottotitolo {
  color: #F4F1EC;
}
.dark-bg .mod-articles-item {
  background-color: #F4F1EC;
  border-radius: 60px;
  margin: 0 auto 0 auto;
  width: 96%;
  max-width: 1650px;
}
@media (max-width: 600px) {
  .dark-bg .mod-articles-item {
    border-radius: 40px;
  }
}
.dark-bg .mod-articles-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .dark-bg .mod-articles-item .article-content-wrapper {
    display: flex;
    gap: 30px;
  }
}
.dark-bg .mod-articles-item .article-content-wrapper .article-text-content {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 40px;
  color: #94522F;
  padding-top: 1%;
}
.dark-bg .mod-articles-item .article-content-wrapper .article-text-content p {
  color: #94522F;
}
.dark-bg .mod-articles-item .article-content-wrapper .article-img-content {
  flex: 0 0 60%;
  max-width: 58.3%;
  color: #94522F;
}
.dark-bg .mod-articles-item .article-content-wrapper .article-img-content p {
  color: #94522F;
}
.dark-bg .mod-articles-item .mod-articles-title {
  margin: 0 0 20px 0;
  color: #94522F;
}
.dark-bg .mod-articles-item .mod-articles-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.dark-bg .mod-articles-item .mod-articles-title a:hover {
  color: #bb673b;
}
.dark-bg .mod-articles-item .mod-articles-introtext {
  padding-left: 20px;
  padding-right: 20px;
  color: #94522F;
}
@media (max-width: 600px) {
  .dark-bg .mod-articles-item .mod-articles-introtext {
    margin: auto;
    width: 92%;
  }
}
@media (max-width: 768px) {
  .dark-bg .mod-articles-item {
    margin-bottom: 25px;
  }
  .dark-bg .mod-articles-item .article-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .dark-bg .mod-articles-item .article-content-wrapper .article-text-content,
  .dark-bg .mod-articles-item .article-content-wrapper .article-img-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .dark-bg .mod-articles-item .article-content-wrapper .article-img-content {
    order: 1;
  }
  .dark-bg .mod-articles-item .article-content-wrapper .article-text-content {
    order: 2;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .dark-bg .mod-articles-item {
    margin-bottom: 20px;
    border-radius: 40px;
  }
  .dark-bg .mod-articles-item .article-content-wrapper {
    gap: 20px;
  }
  .dark-bg .mod-articles-item .mod-articles-title {
    font-size: 1.4rem;
  }
  .dark-bg .mod-articles-item .mod-articles-meta span {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

.light-bg {
  background-color: #F4F1EC !important;
  color: #94522F;
  padding: 0 !important;
}
.light-bg p {
  color: #94522F;
}
.light-bg .sottotitolo {
  color: #94522F;
}
.light-bg .mod-articles-item {
  background-color: #94522F;
  border-radius: 60px;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 1650px;
}
@media (max-width: 600px) {
  .light-bg .mod-articles-item {
    border-radius: 40px;
  }
}
.light-bg .mod-articles-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .light-bg .mod-articles-item .article-content-wrapper {
    display: flex;
    gap: 30px;
  }
}
.light-bg .mod-articles-item .article-content-wrapper .article-text-content {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 40px;
  color: #F4F1EC;
  padding-top: 3%;
}
.light-bg .mod-articles-item .article-content-wrapper .article-text-content p {
  color: #F4F1EC;
}
.light-bg .mod-articles-item .article-content-wrapper .article-img-content {
  flex: 0 0 60%;
  max-width: 58.3%;
  color: #F4F1EC;
}
.light-bg .mod-articles-item .article-content-wrapper .article-img-content p {
  color: #F4F1EC;
}
.light-bg .mod-articles-item .mod-articles-title {
  margin: 0 0 20px 0;
  color: #F4F1EC;
}
.light-bg .mod-articles-item .mod-articles-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.light-bg .mod-articles-item .mod-articles-title a:hover {
  color: white;
}
.light-bg .mod-articles-item .mod-articles-introtext {
  padding-left: 20px;
  padding-right: 20px;
  color: #F4F1EC;
}
@media (max-width: 768px) {
  .light-bg .mod-articles-item {
    margin-bottom: 25px;
  }
  .light-bg .mod-articles-item .article-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .light-bg .mod-articles-item .article-content-wrapper .article-text-content,
  .light-bg .mod-articles-item .article-content-wrapper .article-img-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .light-bg .mod-articles-item .article-content-wrapper .article-img-content {
    order: 1;
  }
  .light-bg .mod-articles-item .article-content-wrapper .article-text-content {
    order: 2;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .light-bg .mod-articles-item {
    margin-bottom: 20px;
    /* padding: 20px;*/
    border-radius: 40px;
  }
  .light-bg .mod-articles-item .article-content-wrapper {
    gap: 20px;
  }
  .light-bg .mod-articles-item .mod-articles-title {
    font-size: 1.4rem;
  }
  .light-bg .mod-articles-item .mod-articles-meta span {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

.dark-img img {
  filter: brightness(0.8);
}

.blocco-offerta {
  color: #F4F1EC;
}
@media (max-width: 600px) {
  .blocco-offerta {
    padding-top: 30px !important;
    width: 96%;
    margin: auto;
  }
}
.blocco-offerta p {
  color: #F4F1EC;
}
.blocco-offerta .sottotitolo {
  color: #F4F1EC;
}
.blocco-offerta .mod-articles-item {
  border-radius: 60px;
  margin: 0 auto 30px auto;
  width: 100%;
  max-width: 1650px;
}
@media (max-width: 600px) {
  .blocco-offerta .mod-articles-item {
    border-radius: 40px;
  }
}
.blocco-offerta .mod-articles-item:last-child {
  margin-bottom: 0;
}
.blocco-offerta .mod-articles-item .article-content-wrapper {
  background-color: #94522F;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .blocco-offerta .mod-articles-item .article-content-wrapper {
    border-radius: 40px;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .blocco-offerta .mod-articles-item .article-content-wrapper {
    display: flex;
    gap: 30px;
  }
}
.blocco-offerta .mod-articles-item .article-content-wrapper .article-text-content {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 40px;
  color: #F4F1EC;
  padding-top: 3%;
}
.blocco-offerta .mod-articles-item .article-content-wrapper .article-text-content p {
  color: #F4F1EC;
}
.blocco-offerta .mod-articles-item .article-content-wrapper .article-img-content {
  flex: 0 0 60%;
  max-width: 58.3%;
  color: #F4F1EC;
}
.blocco-offerta .mod-articles-item .article-content-wrapper .article-img-content p {
  color: #F4F1EC;
}
.blocco-offerta .mod-articles-item .mod-articles-title {
  margin: 0 0 20px 0;
  color: #F4F1EC;
}
.blocco-offerta .mod-articles-item .mod-articles-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.blocco-offerta .mod-articles-item .mod-articles-title a:hover {
  color: #bb673b;
}
.blocco-offerta .mod-articles-item .mod-articles-introtext {
  padding-left: 20px;
  padding-right: 20px;
  color: #F4F1EC;
}
@media (max-width: 768px) {
  .blocco-offerta .mod-articles-item {
    margin-bottom: 25px;
  }
  .blocco-offerta .mod-articles-item .article-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .blocco-offerta .mod-articles-item .article-content-wrapper .article-text-content,
  .blocco-offerta .mod-articles-item .article-content-wrapper .article-img-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .blocco-offerta .mod-articles-item .article-content-wrapper .article-img-content {
    order: 1;
  }
  .blocco-offerta .mod-articles-item .article-content-wrapper .article-text-content {
    order: 2;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .blocco-offerta .mod-articles-item {
    margin-bottom: 20px;
    border-radius: 40px;
  }
  .blocco-offerta .mod-articles-item .article-content-wrapper {
    gap: 20px;
  }
  .blocco-offerta .mod-articles-item .mod-articles-title {
    font-size: 1.4rem;
  }
  .blocco-offerta .mod-articles-item .mod-articles-meta span {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

.myOffersSwiper {
  max-width: 1840px;
  width: 96%;
  height: 100%;
  margin: auto;
  margin-right: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .myOffersSwiper {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .myOffersSwiper {
    height: 400px;
  }
}
.myOffersSwiper .swiper-nav {
  position: absolute;
  top: -50px;
  right: 30px;
  width: 220px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .myOffersSwiper .swiper-nav {
    top: -200px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .myOffersSwiper .swiper-nav {
    top: -50px;
  }
}
.myOffersSwiper .swiper-nav .swiper-button-next,
.myOffersSwiper .swiper-nav .swiper-button-prev {
  background: none;
  color: #94522F;
  width: 90px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.myOffersSwiper .swiper-nav .swiper-button-next::after,
.myOffersSwiper .swiper-nav .swiper-button-prev::after {
  display: none;
}
.myOffersSwiper .swiper-nav .swiper-button-next img,
.myOffersSwiper .swiper-nav .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.myOffersSwiper .swiper-nav .swiper-button-next.swiper-button-disabled,
.myOffersSwiper .swiper-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.myOffersSwiper .mySwiper {
  margin-right: 0;
  overflow: visible;
}
.myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide {
  text-align: left;
  justify-content: flex-start;
  background-color: transparent;
  flex-direction: column;
}
@media (min-width: 768px) {
  .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide {
    flex-direction: row;
  }
}
.myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-image {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-image {
    width: 40%;
  }
}
.myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-image img {
  border-radius: 60px;
  object-position: center center;
}
@media (max-width: 600px) {
  .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-image img {
    border-radius: 40px;
    height: 350px;
  }
}
.myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-content {
  padding: 0;
}
@media (min-width: 768px) {
  .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-content {
    padding: 0 0 0 100px;
  }
}
.myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .mod-articles-item .article-content-wrapper {
  display: flex;
}
@media (max-width: 1024px) {
  .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .mod-articles-item .article-content-wrapper {
    display: block;
  }
}

.myVerticalSwiper {
  border-radius: 60px;
  background-color: #94522F;
  background-image: url("/images/cavallo.svg");
  background-repeat: no-repeat;
  background-size: min(100%, 280px) auto;
  background-position: bottom right;
  --container-max: 1650px;
  --page-max: 1650px;
  --gutter: clamp(16px, 2.5vw, 30px);
  --header: 0px;
  --vh: 1vh;
  width: min(96vw, 1650px + 0 * var(--gutter));
  margin-inline: auto;
  height: min(67.7575757576vw, var(--vh) * 100 - var(--header));
  max-height: calc(var(--vh) * 80 - var(--header));
  position: relative;
}
@media (max-width: 600px) {
  .myVerticalSwiper {
    width: 96%;
    --vh: auto;
    min-height: auto !important;
    border-radius: 40px;
  }
}
@media (max-width: 767px) {
  .myVerticalSwiper {
    border-radius: 60px;
    min-height: 900px;
  }
}
.myVerticalSwiper .swiper {
  width: 100%;
  height: 100%;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .myVerticalSwiper .swiper {
    border-radius: 40px;
  }
}
.myVerticalSwiper .swiper-nav {
  position: absolute;
  inset-inline-end: var(--gutter);
  /*  bottom: clamp(-60px, 7vw, 90px);*/
  top: clamp(-60px, 250vw, 390px);
  width: clamp(210px, 14vw, 220px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .myVerticalSwiper .swiper-nav {
    top: -390px;
    left: 20px;
    position: relative;
  }
}
@media (min-width: 768px) {
  .myVerticalSwiper .swiper-nav {
    top: clamp(-220px, -18vw, -120px);
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .myVerticalSwiper .swiper-nav {
    top: clamp(-80px, -8vw, -50px);
  }
}
.myVerticalSwiper .swiper-nav .swiper-button-next,
.myVerticalSwiper .swiper-nav .swiper-button-prev {
  background: none;
  color: #94522F;
  width: clamp(94px, 7vw, 90px);
  height: clamp(40px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.myVerticalSwiper .swiper-nav .swiper-button-next::after,
.myVerticalSwiper .swiper-nav .swiper-button-prev::after {
  display: none;
}
.myVerticalSwiper .swiper-nav .swiper-button-next img,
.myVerticalSwiper .swiper-nav .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.myVerticalSwiper .swiper-nav .swiper-button-next.swiper-button-disabled,
.myVerticalSwiper .swiper-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.myVerticalSwiper .swiper-pagination {
  display: none;
}
.myVerticalSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: transparent;
  opacity: 0.5;
  border: 1px solid #F4F1EC;
}
.myVerticalSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #F4F1EC;
  opacity: 1;
}
@media (min-width: 768px) {
  .myVerticalSwiper .swiper-pagination {
    display: block;
  }
}
.myVerticalSwiper .swiper-pagination-vertical.swiper-pagination-bullets, .myVerticalSwiper .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 28px);
}
.myVerticalSwiper .swiper-slide {
  font-size: 18px;
  background: transparent;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
@media (max-width: 1050px) {
  .myVerticalSwiper .swiper-slide {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .myVerticalSwiper .swiper-slide {
    grid-template-columns: 1fr;
  }
}
.myVerticalSwiper .swiper-slide .intro-image {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .myVerticalSwiper .swiper-slide .intro-image {
    width: 100%;
  }
}
.myVerticalSwiper .swiper-slide .intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  min-height: 300px;
}
.myVerticalSwiper .swiper-slide .intro-content {
  color: #F4F1EC;
  text-align: left;
  padding: clamp(10px, 2vw, 49px) 0 0 clamp(46px, 2vw, 50px);
}
.myVerticalSwiper .swiper-slide .intro-content p,
.myVerticalSwiper .swiper-slide .intro-content .sottotitolo {
  color: #F4F1EC;
}

.myRoomsSwiper .article-text-content {
  display: flex;
  align-items: center;
}
.myRoomsSwiper .article-text-content .btns {
  padding-top: 0;
}
.myRoomsSwiper .mod-articles-item .swiper-nav {
  position: absolute;
  bottom: 50px;
  left: 20px;
  width: 220px;
  display: flex;
  justify-content: space-between;
}
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-next,
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-prev {
  background: none;
  color: #94522F;
  width: 90px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-next::after,
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-prev::after {
  display: none;
}
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-next img,
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-next.swiper-button-disabled,
.myRoomsSwiper .mod-articles-item .swiper-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.myRoomsSwiper .mod-articles-item:nth-of-type(even) .swiper-nav {
  left: auto;
  right: 20px;
}
@media (max-width: 768px) {
  .myRoomsSwiper .mod-articles-item .swiper-nav {
    left: 20px !important;
    right: auto;
  }
}

/*.myRoomsSwiper {

  .article-text-content {
    display: flex;
    align-items: center;

    .btns {
      padding-top: 0;
    }
  }

  .swiper-nav {
    position: absolute;
    bottom: 50px;
    left: 20px;
    width: 220px;
    display: flex;
    justify-content: space-between;

    .swiper-button-next,
    .swiper-button-prev {
      background: none;
      color: $brown;
      width: 90px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;

      &::after {
        display: none;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      &.swiper-button-disabled {
        opacity: .35;
        pointer-events: none;
      }
    }
  }

}*/
#anchor_hotel {
  border-top: 50px solid #F4F1EC;
}

/*li::marker {
  content: "•";
  font-size: 1.2em;
  color: $brown;
  letter-spacing: 10px;
}*/
.noImgSm {
  /* nascondi seconda colonna con immagine su mobile */
}
.noImgSm .column:nth-child(2) {
  display: none;
}
@media (min-width: 1200px) {
  .noImgSm .column:nth-child(2) {
    display: block;
  }
}

#noImgSm {
  /* nascondi seconda colonna con immagine su mobile */
}
#noImgSm .column:nth-child(2) {
  display: none;
}
@media (min-width: 1470px) {
  #noImgSm .column:nth-child(2) {
    display: block;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 464px;
  margin: auto;
  align-items: center;
  /* gap: 50px;*/
  gap: 1%;
  width: 100%;
}
@media (max-width: 600px) {
  .container {
    gap: 0;
    width: 92%;
  }
}
@media (min-width: 600px) {
  .container {
    max-width: 1650px;
    width: 90%;
  }
}
@media (min-width: 1700px) {
  .container {
    gap: 20px;
  }
}

.column {
  flex: 1 1 45%;
  gap: 20px;
}
@media (max-width: 1020px) {
  .column {
    flex: 1 1 100%;
  }
}
.column img.short {
  height: 600px;
}
@media (max-width: 600px) {
  .column img.short {
    height: 350px;
  }
}
.column img.imageTwo {
  display: none;
}
@media (min-width: 1470px) {
  .column img.imageTwo {
    width: 410px;
    height: 458px;
    object-fit: cover;
    border-radius: 30px;
    right: 0;
    top: 40%;
    position: absolute;
    display: block;
  }
}

.logo {
  width: 116px;
  height: auto;
}

ul {
  margin: 0;
  list-style-position: inside;
  padding-left: 0;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 1024px) {
  ul {
    padding-left: 0;
  }
}
ul li {
  /*padding-left: 10px;*/
  font-weight: 300;
}

a {
  color: #94522F;
}

.link {
  width: fit-content;
  box-sizing: border-box;
  margin-top: 1.5rem;
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-out;
}
.link a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 30px 40px;
  border-radius: 100px;
  font-family: "zeitung";
}
.link a span {
  font-weight: 700;
}
.link:hover {
  cursor: pointer;
}

.shortext {
  max-width: 680px;
}

h1, .h1, .sottotitolo, p.sottotitolo {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 200;
  margin: 0;
  padding: 0;
  color: #94522F;
  /*  font-family: $fontSecondary;*/
  font-family: "haboro-serif-condensed";
}
html:lang(de) h1, html:lang(de) .h1, html:lang(de) .sottotitolo, html:lang(de) p.sottotitolo {
  letter-spacing: -0.5px;
}
@media (min-width: 769px) {
  html:lang(de) h1, html:lang(de) .h1, html:lang(de) .sottotitolo, html:lang(de) p.sottotitolo {
    letter-spacing: normal;
  }
}

h2, .h2 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  font-weight: 200;
  margin: 0;
  color: #94522F;
}
@media (max-width: 768px) {
  html:lang(de) h2, html:lang(de) .h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  h2, .h2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .homepage .myOffersSwiper .mySwiper .swiper-wrapper .swiper-slide .intro-content {
    padding-top: 20px;
  }
  .homepage .section-text {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .homepage h1, .homepage .h1 {
    width: 92%;
  }
  .homepage .section-full {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .homepage .section-full.nospacebottom {
    margin-bottom: 0;
  }
  .homepage #anchor_wellness-benessere {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 50px;
  }
  .homepage #anchor_sapori-autentici-titolo {
    margin-top: 30px !important;
    margin-bottom: 20px;
  }
  .homepage #anchor_vivete-ladrenalina-delle-dolomiti {
    padding-bottom: 0;
  }
  .homepage .section-twoColsSpecial .container .column:first-child {
    margin-bottom: 0 !important;
  }
  .homepage .dark-bg {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .homepage .dark-bg.nospacebottom {
    margin-bottom: 0;
  }
  .homepage .uppercase {
    padding-top: 0;
  }
  .homepage .section-twoColsStyleTwo {
    padding-top: 50px;
  }
  .homepage .btns {
    margin-top: 30px !important;
    margin-bottom: 50px !important;
  }
  .homepage .section-imageparallax {
    padding-top: 30px;
  }
}
@media (min-width: 600px) and (max-width: 1249px) {
  .homepage .section-twoColsSpecial .container .column:last-child {
    margin-top: 40px;
  }
}

h3, .h3 {
  font-size: clamp(26px, 26px + 2vw, 40px);
  margin: 0;
  color: #94522F;
}

h4, .h4 {
  color: #94522F;
  font-size: 96px;
  line-height: 120px;
  margin: 0;
}
@media (max-width: 600px) {
  h4, .h4 {
    font-size: 86px;
  }
}

h5, .h5 {
  color: #94522F;
  font-size: 48px;
  line-height: 55px;
  font-weight: 100;
  margin: 0;
  padding-bottom: 20px;
}
@media (max-width: 600px) {
  h5, .h5 {
    font-size: 40px;
    line-height: 50px;
  }
}

.uppercase {
  text-transform: uppercase;
}

.titolo {
  font-size: 52px;
  line-height: 55px;
  letter-spacing: -2px;
  font-family: "haboro-serif";
  color: #94522F;
}
@media (min-width: 600px) {
  .titolo {
    font-size: 64px;
    line-height: 75px;
    letter-spacing: 0;
  }
}
@media (max-width: 420px) {
  .titolo {
    font-size: 46px;
  }
}

p {
  font-weight: 300;
  font-family: "zeitung";
  color: #94522F;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 600px) {
  p {
    margin-bottom: 0;
  }
}

#main {
  /* width: 96%;*/
  background-color: #F4F1EC;
  margin: 100px auto auto auto;
}
@media (max-width: 600px) {
  #main {
    margin-top: 120px;
  }
}

.homepage #main {
  background-color: #F4F1EC;
  margin: 0;
}

.btns {
  padding-top: 30px;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 300;
}
@media (max-width: 600px) {
  .btns {
    /*padding-bottom: 0px;*/
    /* padding-top: 0px;*/
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .btns {
    display: flex;
    flex-direction: row;
  }
}

.btn {
  display: flex;
  font-weight: 300;
}
@media (max-width: 600px) {
  .btn {
    margin: auto;
  }
}
.btn a {
  font-size: 20px;
  border-radius: 100px;
  padding: 14px 32px 16px 32px;
  text-decoration: none;
}
@media (max-width: 420px) {
  .btn a {
    font-size: 20px;
    padding: 13px 20px;
  }
  .btn a:lang(de) {
    padding: 15px 20px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Stati normali */
.nav-background {
  fill: #F4F1EC;
  stroke: #94522F;
  transition: all 0.3s ease;
}

.nav-arrow {
  stroke: #94522F;
  transition: all 0.3s ease;
}

/* Stati hover */
.swiper-button-prev:hover .nav-background,
.swiper-button-next:hover .nav-background {
  fill: #A54517;
  stroke: #A54517;
}

.swiper-button-prev:hover .nav-arrow,
.swiper-button-next:hover .nav-arrow {
  stroke: #F4F1EC;
}

.btn--animate {
  position: relative;
  border-color: var(--color-text-primary);
  background-color: transparent;
  color: var(--color-text-primary);
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}
.btn--animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 101%;
  height: 100%;
  background-color: var(--color-text-primary);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--animate:hover {
  color: #F4F1EC;
  border-color: var(--color-text-primary);
}
.btn--animate:hover::before {
  transform: translateX(0);
}

.icona-bottone {
  padding-right: 10px;
}

button {
  border: 0;
}
@media (max-width: 600px) {
  button {
    font-weight: 100;
  }
}
@media (max-width: 420px) {
  button {
    font-size: 20px;
    padding: 13px 28px;
  }
}
button.btn {
  background-color: #94522F;
  color: #94522F;
}
@media (max-width: 600px) {
  button.btn {
    font-weight: 100;
  }
}
button.btn:hover {
  background-color: #A54517;
  color: #F4F1EC;
  cursor: pointer;
}

.btnStyle1 {
  background-color: #F4F1EC !important;
  border: 1px solid #94522F !important;
  color: #94522F !important;
}
.btnStyle1:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}

.btnStyle2 {
  background-color: #94522F !important;
  border: 1px solid #F4F1EC !important;
  color: #F4F1EC !important;
}
.btnStyle2:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}

.light-bg .btnStyle2 {
  background-color: #F4F1EC !important;
  border: 1px solid #94522F !important;
  color: #94522F !important;
}
.light-bg .btnStyle2:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}
.light-bg .btnStyle1 {
  background-color: #94522F !important;
  border: 1px solid #F4F1EC !important;
  color: #F4F1EC !important;
}
.light-bg .btnStyle1:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}

.dark-bg .btnStyle2 {
  background-color: #F4F1EC !important;
  border: 1px solid #94522F !important;
  color: #94522F !important;
}
.dark-bg .btnStyle2:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}
.dark-bg .btnStyle1 {
  background-color: #94522F !important;
  border: 1px solid #F4F1EC !important;
  color: #F4F1EC !important;
}
.dark-bg .btnStyle1:hover {
  border: 1px solid #F4F1EC !important;
  background-color: #A54517 !important;
  color: #F4F1EC !important;
}

header .btn {
  display: none;
}
header .btn a {
  font-size: 20px;
  padding: 8px 25px;
}
@media (min-width: 1400px) {
  header .btn a {
    font-size: 20px;
    padding: 8px 15px;
  }
}
@media (min-width: 1700px) {
  header .btn a {
    font-size: 20px;
    padding: 8px 25px;
  }
}
header .btn a:first-child {
  color: #94522F;
  border: 1px solid #F4F1EC;
  margin-right: 20px;
}
@media (min-width: 1400px) {
  header .btn a:first-child {
    margin-right: 10px;
  }
}
@media (min-width: 1700px) {
  header .btn a:first-child {
    margin-right: 20px;
  }
}
header .btn a:first-child:hover {
  background-color: #A54517;
}
header .btn a:nth-child(2) {
  background-color: #94522F;
  color: #94522F;
}
header .btn a:nth-child(2):hover {
  background-color: #A54517;
  color: #F4F1EC;
}
@media (min-width: 600px) {
  header .btn {
    display: block;
  }
}
header .darkOrangeBorder {
  display: none;
}
@media (min-width: 1400px) {
  header .darkOrangeBorder {
    display: block;
  }
}
header .lightOrange {
  margin-left: 20px;
  display: none;
}
@media (min-width: 1400px) {
  header .lightOrange {
    display: block;
  }
}

.fixed-off {
  position: absolute !important;
}

.fixed-on {
  position: fixed;
}

.fixed-header {
  position: fixed;
  /*  top: 10px;*/
  top: 0;
  width: 100%;
  z-index: 200;
  height: 60px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 600px) {
  .fixed-header {
    margin-top: 0;
  }
}
.fixed-header .current > a {
  color: #94522F !important;
}
.fixed-header .active > a {
  color: #94522F !important;
}
@media (min-width: 600px) {
  .fixed-header {
    height: 100px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
  }
}
.fixed-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 90%;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  flex: 1;
  gap: 40px;
  padding: 20px 30px 25px 30px;
}
@media (max-width: 600px) {
  .fixed-header .header-inner {
    padding: 50px 30px 40px 30px;
  }
}
.fixed-header .header-inner .header-logo {
  margin-right: auto;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 10;
}
@media (min-width: 1400px) {
  .fixed-header .header-inner .header-logo {
    margin-bottom: 0;
  }
}
.fixed-header .header-inner .header-logo a {
  display: block;
}
.fixed-header .header-inner .header-logo img {
  width: auto;
  height: 48px;
}
@media (min-width: 1400px) {
  .fixed-header .header-inner .header-logo img {
    width: 90%;
    min-width: 160px;
    height: auto;
    max-height: 96px;
    max-width: 232px;
  }
}
body.h-scrolling .fixed-header .header-inner .header-logo img {
  /* height: 48px;*/
  width: auto;
}
.fixed-header .header-inner .btn {
  z-index: 2;
}

.section-hero {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  bottom: 100px;
  justify-content: flex-end;
  width: 92%;
  margin: auto;
}
@media (max-width: 600px) {
  .section-hero {
    margin-bottom: 50px;
  }
}
.section-hero .sottotitolo {
  font-size: clamp(40px, 4.5vw, 100px);
}
.section-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-hero .onlytablet {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout__row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.layout__row--top .layout__cell:nth-child(1) {
  flex: 0 0 40%;
}

.layout__row--top .layout__cell:nth-child(2) {
  flex: 0 0 60%;
}

.layout__row--bottom .layout__cell:nth-child(1) {
  flex: 0 0 60%;
}

.layout__row--bottom .layout__cell:nth-child(2) {
  flex: 0 0 40%;
}

.layout__cell {
  padding: 20px;
  text-align: left;
}
@media (max-width: 600px) {
  .layout__cell {
    text-align: center;
    padding: 0px;
  }
}

@media (max-width: 1024px) {
  .layout__row {
    flex-direction: column;
  }
  .layout__row .layout__cell {
    flex: 0 0 100%;
    width: 100%;
  }
  /* evita 100vh su mobile che può “tagliare” contenuti */
  .section-hero {
    height: auto;
    bottom: 0;
  }
  .section-hero img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 40px;
  }
  .section-hero .onlytablet {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 40px;
  }
}
#menu-nav {
  background: transparent;
}

.nav-header .icon {
  padding-left: 10px;
}
@media (max-width: 600px) {
  .nav-header .icon img {
    width: 24px;
    height: 24px;
  }
}

.nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 1;
  background-color: #F4F1EC;
  padding-block: 5%;
  /*  padding-inline: 5%;*/
  padding-inline: 13%;
}
@media (max-width: 600px) {
  .nav {
    padding-inline: 8%;
  }
}
.nav li::marker {
  content: "" !important;
}
.nav .mod-menu__sub a {
  font-size: 30px !important;
}
@media (max-width: 600px) {
  .nav .mod-menu__sub a {
    font-size: 26px !important;
  }
}
@media (min-width: 992px) {
  .nav {
    padding-block: 31px;
  }
}
.nav__logo a, .nav__logo img {
  display: block;
}
.nav__logo img {
  max-height: 120px;
  width: auto;
}
@media (min-width: 992px) {
  .nav__logo img {
    max-height: unset;
  }
}
.nav__block-menu {
  margin-block-start: 200px;
  height: calc(100vh - 185px);
  overflow: auto;
  scrollbar-width: thin;
}
@media (max-width: 600px) {
  .nav__block-menu {
    margin-block-start: 100px;
    height: calc(90vh - 185px);
  }
}
@media (min-width: 992px) {
  .nav__block-menu {
    height: calc(100vh - 350px);
  }
}
.nav__block-menu::-webkit-scrollbar {
  width: 6px;
}
.nav__block-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.nav #nav-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  flex-direction: column;
  font-family: "haboro-serif-condensed";
}
@media (max-width: 600px) {
  .nav #nav-menu {
    gap: 25px;
  }
}
.nav #nav-menu .selected .nav-header {
  font-style: italic;
}
@media (min-width: 992px) {
  .nav #nav-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 140px 0;
    /* align-items: center;*/
  }
}
.nav #nav-menu li {
  text-align: center;
}
.nav #nav-menu li > .nav-header,
.nav #nav-menu li > a {
  justify-content: center;
  font-weight: 100;
  text-decoration: none;
  display: block;
  line-height: 1.2;
  padding-block: 0.2em;
  transition: color 0.4s ease;
  font-size: 52px;
}
@media (max-width: 600px) {
  .nav #nav-menu li > .nav-header,
  .nav #nav-menu li > a {
    font-size: 32px;
    text-align: left;
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .nav #nav-menu li > .nav-header,
  .nav #nav-menu li > a {
    line-height: 1;
  }
}
.nav #nav-menu li > .nav-header:hover,
.nav #nav-menu li > a:hover {
  opacity: 0.5;
}
.nav #nav-menu li.selected {
  color: #73391a;
}
.nav #nav-menu li.column-left {
  grid-column: 1;
}
.nav #nav-menu li.column-center {
  grid-column: 2;
}
.nav #nav-menu li.column-right {
  grid-column: 3;
}
.nav #nav-menu li.active > a {
  color: #73391a !important;
  text-decoration: underline;
  text-decoration-thickness: 0.1ex;
  text-underline-offset: 10px; /* distanza dal testo */
}
.nav #nav-menu li.parent > .nav-header,
.nav #nav-menu li.parent > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: "haboro-serif";
  font-size: 52px;
  font-weight: 100;
  line-height: 140%;
}
@media (max-width: 600px) {
  .nav #nav-menu li.parent > .nav-header,
  .nav #nav-menu li.parent > a {
    font-size: 32px;
  }
}
.nav #nav-menu li.parent ul {
  height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav #nav-menu li.parent li.active > a {
  color: #73391a !important;
  text-decoration: underline;
  text-decoration-thickness: 0.1ex;
  text-underline-offset: 10px; /* distanza dal testo */
}

.header__menu-btn {
  z-index: 2;
}

button.custom-hamburger {
  padding: 0;
}

.custom-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 1001;
}
@media (max-width: 1280px) {
  .custom-hamburger {
    display: block;
  }
}
.custom-hamburger .custom-icon {
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-hamburger .custom-icon.close-icon {
  opacity: 0;
  pointer-events: none;
}
.custom-hamburger.custom-active .close-icon {
  opacity: 1;
  pointer-events: auto;
}
.custom-hamburger.custom-active .open-icon {
  opacity: 0;
  pointer-events: none;
}

.lingue {
  font-weight: 500;
  z-index: 2;
}
.lingue .mod-languages {
  position: relative;
}
.lingue .mod-languages ul li::marker {
  content: "" !important;
}
.lingue .mod-languages .visually-hidden {
  display: none;
}
.lingue .mod-languages .lang-active {
  display: none;
}
.lingue .mod-languages .lang-block {
  position: absolute;
  top: 80%;
  left: 55%;
  transform: translateX(-50%);
  background-color: #94522F;
  border-radius: 8px;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.lingue .mod-languages .lang-block a {
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  font-size: 20px;
  color: #F4F1EC;
  transition: background-color 0.3s ease;
}
.lingue .mod-languages .current-language {
  cursor: pointer;
}
.lingue .mod-languages .current-language .inline {
  text-transform: uppercase;
  line-height: 60px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.section-main {
  flex: 1;
  padding-right: 20px;
}

.section-full ul {
  background-color: #F4F1EC;
  padding: 20px 0 60px 0;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 600px) {
  .section-full ul {
    padding: 30px 20px 50px 20px;
  }
}
.section-full li {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  align-items: flex-start;
}
@media (min-width: 1400px) {
  .section-full li {
    flex: 1;
  }
}

.section-twoColsStyleTwo .container {
  gap: 0;
}
.section-twoColsStyleTwo .container .column {
  gap: 20px;
}
.section-twoColsStyleTwo .container .column:first-child {
  flex: 1 1 65%;
}
@media (max-width: 1024px) {
  .section-twoColsStyleTwo .container .column:first-child {
    flex: 1 1 100%;
  }
}
.section-twoColsStyleTwo .container .column:first-child img {
  width: 100%;
  max-width: 510px;
  height: 510px;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .section-twoColsStyleTwo .container .column:first-child img {
    border-radius: 40px;
  }
}
.section-twoColsStyleTwo .container .column:last-child {
  flex: 1 1 30%;
}
@media (max-width: 1249px) {
  .section-twoColsStyleTwo .container .column:last-child {
    flex: 1 1 100%;
  }
}
.section-twoColsStyleTwo .container .column:last-child img {
  width: 100%;
  height: 500px;
  margin-bottom: 0;
  border-radius: 60px;
  object-fit: cover;
}
@media (min-width: 601px) and (max-width: 1249px) {
  .section-twoColsStyleTwo .container .column:last-child img {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .section-twoColsStyleTwo .container .column:last-child img {
    border-radius: 40px;
    height: 350px;
    margin-bottom: 50px;
    /* margin-top: 30px;*/
  }
}
@media (max-width: 768px) {
  .section-twoColsStyleTwo .container .column:last-child img {
    max-width: 100%;
  }
}

.section-twoColsSpecialTwo .container {
  gap: 0 !important;
}
.section-twoColsSpecialTwo .container .column {
  gap: 20px;
}
.section-twoColsSpecialTwo .container .column:first-child {
  flex: 1 1 65%;
}
@media (max-width: 1024px) {
  .section-twoColsSpecialTwo .container .column:first-child {
    flex: 1 1 100%;
  }
}
.section-twoColsSpecialTwo .container .column:first-child img {
  width: 100%;
  max-width: 510px;
  height: 510px;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .section-twoColsSpecialTwo .container .column:first-child img {
    border-radius: 40px;
  }
}
@media (max-width: 1024px) {
  .section-twoColsSpecialTwo .container .column:first-child img {
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .section-twoColsSpecialTwo .container .column:first-child img {
    max-width: 100%;
    height: 510px;
  }
}
.section-twoColsSpecialTwo .container .column:last-child {
  flex: 1 1 30%;
}
@media (max-width: 1249px) {
  .section-twoColsSpecialTwo .container .column:last-child {
    flex: 1 1 100%;
  }
}
.section-twoColsSpecialTwo .container .column:last-child img {
  width: 100%;
  margin-bottom: 0;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 1249px) {
  .section-twoColsSpecialTwo .container .column:last-child img {
    position: static;
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 600px) {
  .section-twoColsSpecialTwo .container .column:last-child img {
    border-radius: 40px;
    position: relative;
  }
}
@media (max-width: 1024px) {
  .section-twoColsSpecialTwo .container .column:last-child img {
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .section-twoColsSpecialTwo .container .column:last-child img {
    max-width: 100%;
  }
}

.section-twoCols {
  position: relative;
}
.section-twoCols .container .column {
  gap: 20px;
}
.section-twoCols .container .column:first-child {
  flex: 1 1 48%;
}
@media (max-width: 1024px) {
  .section-twoCols .container .column:first-child {
    flex: 1 1 100%;
  }
}
.section-twoCols .container .column:first-child img {
  width: 100%;
  max-width: 510px;
  height: 510px;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .section-twoCols .container .column:first-child img {
    border-radius: 40px;
  }
}
@media (max-width: 1024px) {
  .section-twoCols .container .column:first-child img {
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .section-twoCols .container .column:first-child img {
    max-width: 100%;
    height: 510px;
  }
}
.section-twoCols .container .column:last-child {
  flex: 1 1 48%;
}
@media (max-width: 1024px) {
  .section-twoCols .container .column:last-child {
    flex: 1 1 100%;
  }
}
.section-twoCols .container .column:last-child img {
  width: 100%;
  max-width: 510px;
  height: 510px;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .section-twoCols .container .column:last-child img {
    border-radius: 40px;
  }
}
@media (max-width: 1024px) {
  .section-twoCols .container .column:last-child img {
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .section-twoCols .container .column:last-child img {
    max-width: 100%;
    height: 510px;
  }
}
@media (min-width: 1700px) {
  .section-twoCols.long-title h1 {
    width: 80%;
    position: absolute;
    top: -80px;
  }
}
.section-twoCols h1 {
  width: 100%;
}
@media (min-width: 1700px) {
  .section-twoCols h1 {
    width: 80%;
    top: -60px;
  }
}
.section-twoCols .extrainfo p {
  font-weight: 500;
}

.section-twoColsSpecial {
  position: relative;
}
@media (max-width: 600px) {
  .section-twoColsSpecial {
    position: relative;
  }
  .section-twoColsSpecial .container .column {
    gap: 20px;
  }
  .section-twoColsSpecial .container .column:first-child {
    flex: 1 1 48%;
    margin-bottom: 2rem !important;
  }
  .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
    bottom: 2rem !important;
  }
  .section-twoColsSpecial .container .column:first-child img {
    position: absolute;
    top: 0 !important;
    width: 100%;
    height: 350px;
    border-radius: 60px;
    object-fit: cover;
  }
  .section-twoColsSpecial .container .column:last-child {
    flex: 1 1 40%;
  }
  .section-twoColsSpecial .container .column:last-child .gallery-caption-static {
    left: 2rem !important;
  }
  .section-twoColsSpecial .container .column:last-child img {
    position: absolute;
    width: 100%;
    height: 350px;
    border-radius: 60px;
    right: 0 !important;
    object-fit: cover;
  }
}
.section-twoColsSpecial .container .column {
  gap: 20px;
}
.section-twoColsSpecial .container .column:first-child {
  flex: 1 1 48%;
  margin-bottom: 2rem;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:first-child {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
}
.section-twoColsSpecial .container .column:first-child .gallery-caption-static {
  bottom: 130px;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
    bottom: 0;
  }
}
.section-twoColsSpecial .container .column:first-child img {
  position: absolute;
  top: -100px;
  width: 100%;
  max-width: 510px;
  height: 510px;
  border-radius: 60px;
  object-fit: cover;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:first-child img {
    height: 350px;
  }
}
@media (min-width: 601px) and (max-width: 1249px) {
  .section-twoColsSpecial .container .column:first-child img {
    max-width: 100%;
    top: 0;
  }
}
.section-twoColsSpecial .container .column:last-child {
  flex: 1 1 40%;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:last-child {
    flex: 1 1 100%;
  }
}
.section-twoColsSpecial .container .column:last-child .gallery-item-static {
  right: 100px;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:last-child .gallery-item-static {
    right: 0;
  }
}
.section-twoColsSpecial .container .column:last-child img {
  position: absolute;
  width: 100%;
  max-width: 670px;
  height: 510px;
  border-radius: 60px;
  /*  right: 100px;*/
  object-fit: cover;
}
@media (max-width: 1249px) {
  .section-twoColsSpecial .container .column:last-child img {
    right: 0;
    max-width: 100%;
    height: 350px;
  }
}
@media (min-width: 1700px) {
  .section-twoColsSpecial.long-title h1 {
    width: 80%;
    position: absolute;
    top: -80px;
  }
}
.section-twoColsSpecial h1 {
  width: 100%;
}
@media (min-width: 1700px) {
  .section-twoColsSpecial h1 {
    width: 80%;
    top: -60px;
  }
}
.section-twoColsSpecial .extrainfo p {
  font-weight: 500;
}

.section-item {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
  background-color: #F4F1EC;
}
@media (max-width: 600px) {
  .section-item {
    padding: 0;
  }
}
.section-item.section-boxes {
  padding-top: 0;
}

.section-oneCol {
  background-color: #F4F1EC;
}
.section-oneCol .container {
  max-width: 735px;
}

.section-text .btns {
  max-width: 715px;
  margin: auto;
}
.section-text .btns .btn {
  margin: auto;
}
.section-text .container {
  max-width: 690px;
}
.section-text p {
  text-align: center;
  margin: auto;
}
@media (max-width: 600px) {
  .section-text p {
    text-align: left;
  }
}
.section-text span {
  text-align: left;
}
@media (min-width: 600px) {
  .section-text span {
    text-align: center;
  }
}
.section-text h1 {
  text-align: left;
}
@media (min-width: 600px) {
  .section-text h1 {
    text-align: center;
  }
}
.section-text h2 {
  text-align: left;
}
@media (min-width: 600px) {
  .section-text h2 {
    text-align: center;
  }
}
.section-text h3 {
  text-align: left;
}
@media (min-width: 600px) {
  .section-text h3 {
    text-align: center;
  }
}

footer {
  background-color: #F4F1EC;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
footer a:hover {
  color: #F4F1EC;
  opacity: 0.5;
}
footer .contenuto-footer {
  min-height: 630px;
  padding-top: 50px;
  background-color: #94522F;
  align-content: center;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  color: #F4F1EC;
}
footer .contenuto-footer .h1 {
  font-size: clamp(32px, 5vw, 100px);
}
@media (max-width: 600px) {
  footer .contenuto-footer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
footer .contenuto-footer a {
  color: #F4F1EC;
}
footer .contenuto-footer p {
  color: #F4F1EC;
}
footer .contenuto-footer .h1 {
  color: #F4F1EC;
}
footer .contenuto-footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer .contenuto-footer ul li {
  padding-left: 0;
}
footer .contenuto-footer ul li::marker {
  content: "" !important;
}
@media (max-width: 600px) {
  footer .contenuto-footer .socials {
    padding-top: 20px;
  }
}
footer .contenuto-footer .logoFooter {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  footer .contenuto-footer .logoFooter {
    padding-bottom: 30px;
  }
}
footer .contenuto-footer .logoFooter img {
  width: 306px;
  height: 139px;
  padding-top: 20px;
}
@media (max-width: 600px) {
  footer .contenuto-footer .logoFooter img {
    margin: auto;
    width: 100%;
    padding-top: 20px;
  }
}
footer .contenuto-footer #footer {
  display: flex;
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer {
    display: block;
  }
}
footer .contenuto-footer #footer.container {
  align-items: normal;
}
footer .contenuto-footer #footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .contenuto-footer #footer .column {
  flex: 0 0 50%; /* Each item takes up roughly 1/4 of the container width */
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  footer .contenuto-footer #footer .column {
    flex: 0 0 24%; /* Each item takes up roughly 1/4 of the container width */
  }
}
footer .contenuto-footer #footer .column p {
  color: #F4F1EC;
  font-size: 20px;
}
footer .contenuto-footer #footer .column ul li {
  color: #F4F1EC;
  font-size: 20px;
  line-height: 30px;
  padding-top: 10px;
}
footer .contenuto-footer #footer .column ul li a {
  color: #F4F1EC;
  text-decoration: none;
}
footer .contenuto-footer #footer .column:first-child {
  flex: 0 0 35% !important;
}
footer .contenuto-footer #footer .column:last-child {
  flex: 0 0 8% !important;
  text-align: center;
}
footer .contenuto-footer #footer .column:last-child img {
  /* margin-top: 60px;*/
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer .column:last-child img {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer .column:last-child {
    text-align: left;
  }
}
footer .contenuto-footer #footer-two {
  display: flex;
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer-two {
    display: block;
  }
}
footer .contenuto-footer #footer-two.container {
  align-items: normal;
}
footer .contenuto-footer #footer-two .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .contenuto-footer #footer-two .column {
  flex: 0 0 50%; /* Each item takes up roughly 1/4 of the container width */
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  footer .contenuto-footer #footer-two .column {
    flex: 0 0 24%; /* Each item takes up roughly 1/4 of the container width */
  }
}
footer .contenuto-footer #footer-two .column p {
  color: #F4F1EC;
  margin: 0;
  font-size: 20px;
  opacity: 0.5;
}
footer .contenuto-footer #footer-two .column ul li {
  color: #F4F1EC;
  font-size: 20px;
  line-height: 30px;
  padding-top: 10px;
}
footer .contenuto-footer #footer-two .column ul li a {
  color: #F4F1EC;
  text-decoration: none;
}
footer .contenuto-footer #footer-two .column:first-child {
  flex: 0 0 35% !important;
}
footer .contenuto-footer #footer-two .column:last-child {
  flex: 0 0 8% !important;
}
footer .contenuto-footer #footer-two .column:last-child img {
  margin-top: 60px;
  opacity: 0.5;
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer-two .column:last-child img {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  footer .contenuto-footer #footer-two .column:last-child {
    text-align: left;
  }
}
footer .contenuto-footer .footerBottom {
  color: #F4F1EC;
  opacity: 0.6;
  padding-bottom: 10px;
  padding-top: 30px;
}
@media (max-width: 600px) {
  footer .contenuto-footer .footerBottom {
    padding-bottom: 100px;
    color: #F4F1EC;
    opacity: 1;
  }
}
@media (max-width: 420px) {
  footer .contenuto-footer .footerBottom {
    padding: 30px;
  }
}
footer .contenuto-footer .footerBottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: auto;
}
@media (max-width: 600px) {
  footer .contenuto-footer .footerBottom ul {
    display: block;
    margin: 0;
    padding-left: 10px;
  }
}
@media (max-width: 420px) {
  footer .contenuto-footer .footerBottom ul {
    gap: 0;
    display: block;
    /*padding-bottom: 160px;*/
  }
}
footer .contenuto-footer .footerBottom ul li {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 600px) {
  footer .contenuto-footer .footerBottom ul li {
    text-align: left;
  }
}
@media (max-width: 420px) {
  footer .contenuto-footer .footerBottom ul li {
    display: inline-block;
  }
}
footer .contenuto-footer .footerBottom ul li a {
  text-decoration: none;
  color: #F4F1EC;
}
@media (max-width: 600px) {
  footer .contenuto-footer .footerBottom ul li a {
    color: #F4F1EC;
  }
}
footer .contenuto-footer .bottoniFixed {
  display: none;
  position: fixed;
  background-color: #F4F1EC;
  color: #94522F;
  z-index: 10;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #F4F1EC;
}
footer .contenuto-footer .bottoniFixed a {
  text-decoration: none;
  color: #94522F;
}
footer .contenuto-footer .bottoniFixed p {
  margin: 0;
  padding: 20px;
  width: 50%;
  float: left;
  text-align: center;
  -webkit-box-shadow: 0 -9px 9px -6px rgba(0, 0, 0, 0.28);
  box-shadow: 0 -9px 9px -6px rgba(0, 0, 0, 0.28);
}
footer .contenuto-footer .bottoniFixed p:first-child {
  background-color: #94522F;
  border-top-left-radius: 20px;
  display: block;
}
footer .contenuto-footer .bottoniFixed p:first-child a {
  color: #94522F;
}
footer .contenuto-footer .bottoniFixed p:first-child a img {
  width: 23px;
  height: 23px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
footer .contenuto-footer .bottoniFixed p:last-child {
  background-color: #94522F;
  border-top-right-radius: 20px;
}
footer .contenuto-footer .bottoniFixed p:last-child a {
  color: #94522F;
}
footer .contenuto-footer .bottoniFixed p:last-child a img {
  width: 23px;
  height: 23px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 16px;
}
@media (max-width: 600px) {
  footer .contenuto-footer .bottoniFixed {
    display: block;
  }
}
footer .contenuto-footer .logo-altea {
  text-align: left;
}
@media (max-width: 600px) {
  footer .contenuto-footer .logo-altea {
    text-align: right;
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

#jmap_sitemap {
  width: 64%;
  margin: 5rem auto;
}
#jmap_sitemap .folder {
  display: none;
}
#jmap_sitemap .selected {
  all: unset;
}

.slideInFromLeft {
  animation: slideInFromLeft 1s ease-out;
}

.slideInFromRight {
  animation: slideInFromRight 1s ease-out;
}

.slideInFromBottom {
  animation: slideInFromBottom 1s ease-out;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
}
.boxes .box {
  position: relative;
  flex: 1 1 260px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease;
  height: 350px;
}
@media (min-width: 768px) {
  .boxes .box {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .boxes .box {
    height: 900px;
  }
}
.boxes .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 991px) {
  .boxes .box::before {
    opacity: 1;
  }
}
.boxes .box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 991px) {
  .boxes .box::after {
    opacity: 1;
  }
}
.boxes .box:hover::before {
  opacity: 1;
}
.boxes .box:hover::after {
  opacity: 1;
}
.boxes .box:hover span {
  color: #F4F1EC;
}
.boxes .box span {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 200;
  margin: 0;
  padding: 0;
  font-family: "haboro-serif";
  cursor: default;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  text-align: center;
  padding: 0 12px;
}
html:lang(de) .boxes .box span {
  letter-spacing: -0.5px;
}
@media (min-width: 769px) {
  html:lang(de) .boxes .box span {
    letter-spacing: normal;
  }
}
@media (max-width: 991px) {
  .boxes .box span {
    color: #F4F1EC;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boxes .box, .boxes .box::before, .boxes .box::after, .boxes .box span {
    transition: none;
  }
}
@media (max-width: 600px) {
  .pagina-camere .section-vuoto {
    padding-bottom: 30px;
  }
  .pagina-camere .section-oneCol {
    padding-top: 30px;
    padding-bottom: 30px !important;
  }
  .pagina-camere .uppercase {
    margin-top: 0;
  }
}
.pagina-camere .mod-articles-item {
  margin-bottom: 30px;
  /*  min-height: 750px;*/
}
@media (max-width: 600px) {
  .pagina-camere .bottoni-articolo,
  .pagina-camere .bottoni-articolo-2 {
    display: inline-block;
    margin-top: 20px;
  }
}
.pagina-camere .bottoni-articolo-3 {
  display: none;
}

.bottoni-articolo,
.bottoni-articolo-2 {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px; /* Spazio tra i bottoni */
}
@media (max-width: 600px) {
  .bottoni-articolo,
  .bottoni-articolo-2 {
    display: inline-flex;
  }
}

.bottoni-articolo-2 {
  margin-right: 0;
}

.myHorizontalSwiper {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
  cursor: none;
  background-color: #F4F1EC;
}
.myHorizontalSwiper .swiper-slide {
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myHorizontalSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myHorizontalSwiper .swiper-pagination {
  bottom: 20px !important;
}
.myHorizontalSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.myHorizontalSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #F4F1EC;
}

.section-gallery-slider {
  background-color: #F4F1EC;
  position: relative;
  z-index: 10;
}
@media (max-width: 600px) {
  .section-gallery-slider {
    padding-left: 10px;
  }
}
.section-gallery-slider .section__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-gallery-slider .cursor {
  display: none;
}
@media (min-width: 992px) {
  .section-gallery-slider .cursor {
    display: block;
  }
}
.section-gallery-slider .cursor__visual.cursor--pointer, .section-gallery-slider .cursor__visual.cursor--arrow-right, .section-gallery-slider .cursor__visual.cursor--arrow-left {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  top: 0;
  left: 0;
}
.section-gallery-slider .cursor__visual.cursor--pointer img, .section-gallery-slider .cursor__visual.cursor--arrow-right img, .section-gallery-slider .cursor__visual.cursor--arrow-left img {
  display: block;
}
.section-gallery-slider .cursor__visual.cursor--pointer {
  display: none;
  width: 28px;
  height: 28px;
  background-color: rgba(148, 82, 47, 0.7);
  border-radius: 50%;
}
/* Slider media */
.section__media-slider .section__media-item {
  width: 80%;
}
.section__media-slider .section__media-item img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  border-radius: 60px;
}
@media (min-width: 992px) {
  .section__media-slider .section__media-item img {
    height: 80vh;
  }
}
@media (max-width: 600px) {
  .section__media-slider .section__media-item img {
    height: 350px;
    border-radius: 40px;
  }
}
.section__media-slider .section__media-item .section__media-text {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  padding-block: 4rem;
  padding-inline: 2rem;
  color: #fff;
  font-size: clamp(1.25rem, 1.16rem + 0.43vw, 1.5rem);
}
@media (min-width: 992px) {
  .section__media-slider .section__media-item .section__media-text {
    padding-block: 7rem;
    padding-inline: 7rem;
  }
}
.section__media-slider .section__media-item .section__media-text .section__media-title {
  position: relative;
  overflow: hidden;
  font-family: alverata-informal, serif;
  font-size: clamp(1.56rem, 1.41rem + 0.76vw, 2rem);
}
@media (min-width: 992px) {
  .section__media-slider .section__media-item .section__media-text .section__media-title {
    font-size: clamp(2.44rem, 2.05rem + 1.93vw, 3.55rem);
  }
}
.section__media-slider .section__media-item .section__media-text .section__media-description {
  position: relative;
  overflow: hidden;
}

/* Overlay aree clic (prev/next) */
.section__media-nav {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 1;
}
@media (min-width: 992px) {
  .section__media-nav {
    display: flex;
  }
}
.section__media-nav__button--prev, .section__media-nav__button--next {
  flex: 1;
}
.section__media-nav .cursor {
  display: none;
}
@media (min-width: 992px) {
  .section__media-nav .cursor {
    display: block;
  }
}
.section__media-nav .cursor--pointer, .section__media-nav .cursor--arrow-right, .section__media-nav .cursor--arrow-left {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 150;
}
.section__media-nav .cursor--pointer {
  width: 28px;
  height: 28px;
  background-color: rgba(174, 184, 98, 0.7);
  border-radius: 50%;
  top: 0;
  left: 0;
}
.section__media-nav .cursor--arrow-right, .section__media-nav .cursor--arrow-left {
  top: 0;
  left: 0;
}
.section__media-nav .cursor--arrow-right img, .section__media-nav .cursor--arrow-left img {
  display: block;
}
.section__media-nav .cursor--arrow-left {
  transform: rotate(180deg);
}

.gallery-item-static {
  position: relative;
  height: 510px;
  cursor: pointer;
}
.gallery-item-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
}
.gallery-item-static .btn {
  position: absolute;
  bottom: 15px;
  right: -200px;
  opacity: 0;
  cursor: pointer;
  font-family: "zeitung";
}
.gallery-item-static .btn.show {
  opacity: 1;
}
.gallery-item-static .gallery-caption-static {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  max-width: calc(100% - 2rem);
  padding: 0.5rem 1rem;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 200;
  margin: 0;
  color: #F4F1EC;
  font-family: "haboro-serif-condensed";
  border-radius: 4px;
  z-index: 2;
}
@media (min-width: 1201px) and (max-width: 1500px) {
  .gallery-item-static .gallery-caption-static {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .gallery-item-static {
    margin-top: 20px;
  }
  .gallery-item-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
  }
  .gallery-item-static .btn {
    position: absolute;
    bottom: -10px;
    left: auto;
    right: -9rem;
    opacity: 0;
    cursor: pointer;
    font-size: 18px;
  }
  .gallery-item-static .btn.show {
    opacity: 1;
  }
  .gallery-item-static .gallery-caption-static {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    max-width: calc(100% - 2rem);
    padding: 0.5rem 1rem;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    font-weight: 200;
    margin: 0;
    padding: 0;
    color: #F4F1EC;
    font-family: "haboro-serif-condensed";
    border-radius: 4px;
    z-index: 2;
  }
  html:lang(de) .gallery-item-static .gallery-caption-static {
    letter-spacing: -0.5px;
  }
}
@media (max-width: 600px) and (min-width: 769px) {
  html:lang(de) .gallery-item-static .gallery-caption-static {
    letter-spacing: normal;
  }
}
@media (max-width: 1249px) {
  .gallery-item-static {
    max-width: 100%;
    height: 350px;
  }
}

.small-caption .gallery-caption-static {
  font-size: clamp(32px, 4vw, 34px);
}
@media (max-width: 600px) {
  .small-caption .gallery-item-static .btn {
    left: 240px;
  }
}

.myRoomsSwiper .swiper {
  width: 100%;
  height: 100%;
}
.myRoomsSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.myRoomsSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myOffersSwiper .swiper {
  width: 100%;
  height: 100%;
}
.myOffersSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .myOffersSwiper .swiper-slide {
    align-items: start;
  }
}
.myOffersSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-swiper {
  width: 100%;
  height: 100%;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* niente grigio di default */
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .gallery-swiper .swiper-slide img {
    border-radius: 40px;
    height: 350px;
  }
}

.ba-gallery .category-filter {
  padding-top: 50px;
  padding-bottom: 30px;
}

.article {
  padding: 3.5rem 3.5rem;
}
.article img {
  width: 100%;
  height: auto;
  margin-top: 3.5rem;
  border-radius: 30px;
}

.readmore {
  font-weight: 100;
  background-color: #94522F;
  color: #94522F;
  font-size: 20px;
  border-radius: 100px;
  padding: 15px 30px;
  margin-top: 40px;
  width: fit-content;
  text-decoration: none;
}
@media (max-width: 420px) {
  .readmore {
    font-size: 20px;
    padding: 13px 28px;
  }
}
.readmore:hover {
  background-color: #94522F;
  color: #F4F1EC;
  cursor: pointer;
}
.readmore:hover a {
  color: #F4F1EC;
}

.img-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.img-gallery h2 {
  padding-bottom: 40px;
  padding-top: 30px;
}
.img-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .img-gallery img {
    width: 32%;
  }
}
.img-gallery img:last-child {
  margin-right: 0;
}

.tl-item-4 img {
  max-height: 200px;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .tl-item-4 img {
    border-radius: 40px;
  }
}

.icona {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.icona img {
  display: block;
}

.imageshrink-img {
  position: absolute;
  background-color: transparent;
  padding: 0;
  top: 100px;
  /* right: 5%;*/
  right: 2%;
  z-index: 2;
  left: 30px;
  transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
  .imageshrink-img {
    display: none;
  }
}
.imageshrink-img img {
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  border-radius: 100px;
  transition: all 0.3s ease-out;
}
@media (max-width: 600px) {
  .imageshrink-img img {
    border-radius: 40px;
  }
}
.imageshrink-img.final-position {
  top: auto;
  bottom: 420px;
}
.imageshrink-img.final-position img {
  height: 350px;
  /*transform: scale(0.55);*/
  transform-origin: bottom right;
}

.fulltext {
  display: none;
}

#cookiescript_badge {
  display: none !important;
}

.show-cookie-box {
  cursor: pointer;
}

.testoDx img {
  border-radius: 60px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 600px) {
  .testoDx img {
    border-radius: 40px;
  }
}

p.highlight-text {
  font-weight: 100 !important;
  font-family: "haboro-serif-condensed";
  position: relative;
  padding: 0;
  margin: 0;
  color: rgba(184, 103, 60, 0.33);
  font-size: calc(100px + 0.059vw);
  font-style: italic;
  line-height: 130%;
  text-align: center;
  background: linear-gradient(to right, #94522F, #94522F) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
@media (max-width: 660px) {
  p.highlight-text {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  p.highlight-text {
    /*color: $brown;*/
  }
}

.section-imageparallax {
  overflow: hidden;
}
.section-imageparallax .imageparallax-img {
  width: 100vw;
  z-index: 1;
  height: 100vh;
}
@media (max-width: 600px) {
  .section-imageparallax .imageparallax-img {
    max-height: 350px;
    width: 92%;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .section-imageparallax .imageparallax-img {
    height: 100vh;
  }
}
.section-imageparallax .imageparallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-out;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .section-imageparallax .imageparallax-img img {
    border-radius: 40px;
  }
}
.section-imageparallax .imageparallax-text {
  z-index: 2;
  display: grid;
  place-content: center;
  width: 100vw;
  position: relative;
  align-items: end;
  align-content: stretch;
  height: 100vh;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .section-imageparallax .imageparallax-text {
    border-radius: 40px;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .section-imageparallax .imageparallax-text {
    height: 100vh;
  }
}
.section-imageparallax .imageparallax-text div {
  z-index: 1;
  padding: 0 5% 5%;
}
@media (min-width: 1200px) {
  .section-imageparallax .imageparallax-text div {
    max-width: 70vw;
  }
}

.section-imageparallaxTwo {
  background-color: transparent !important;
  overflow: hidden;
  padding: 0;
}
.section-imageparallaxTwo .imageparallaxTwo-img {
  width: 100vw;
  z-index: 1;
  height: 100vh;
}
@media (max-width: 600px) {
  .section-imageparallaxTwo .imageparallaxTwo-img {
    height: 100%;
    width: 92%;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .section-imageparallaxTwo .imageparallaxTwo-img {
    height: 100vh;
  }
}
.section-imageparallaxTwo .imageparallaxTwo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-out;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .section-imageparallaxTwo .imageparallaxTwo-img img {
    border-radius: 40px;
    height: 350px;
  }
}
.section-imageparallaxTwo .imageparallaxTwo-text {
  z-index: 2;
  display: grid;
  place-content: center;
  width: 100vw;
  position: relative;
  align-items: end;
  align-content: stretch;
  height: 100vh;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .section-imageparallaxTwo .imageparallaxTwo-text {
    border-radius: 40px;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .section-imageparallaxTwo .imageparallaxTwo-text {
    height: 100vh;
  }
}
.section-imageparallaxTwo .imageparallaxTwo-text div {
  z-index: 1;
  padding: 0 5% 5%;
}
@media (min-width: 1200px) {
  .section-imageparallaxTwo .imageparallaxTwo-text div {
    max-width: 70vw;
  }
}

p.underh1 {
  padding-top: 10px !important;
  padding-bottom: 50px !important;
}

.topimgfix {
  position: static;
}
.topimgfix h1 {
  max-width: 735px;
  /*    padding-bottom: 20px;*/
}
@media (min-width: 768px) {
  .topimgfix {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent !important;
  }
}
@media (max-width: 600px) {
  .topimgfix {
    width: 92%;
    margin: auto;
  }
}
.topimgfix p {
  max-width: 735px;
  padding-top: 20px;
  margin: auto;
}
.topimgfix p:last-child {
  padding-bottom: 40px;
}
.topimgfix p.underh1 {
  padding-top: 10px !important;
  padding-bottom: 30px !important;
}

.fullTwoimg {
  display: none;
}
@media (max-width: 1650px) {
  .fullTwoimg {
    display: block;
  }
}

@media (max-width: 1650px) {
  .section--full-bleed-media {
    display: none;
  }
}
@media (min-width: 992px) {
  p.highlight-text {
    font-size: calc(100px + 0.059vw);
  }
}
@media (min-width: 992px) {
  .text-overlay-panel {
    position: absolute;
    left: 0;
    top: 7%;
    bottom: 7%;
    width: 39%;
  }
}
.text-overlay-panel__inner {
  background-color: #F4F1EC;
  padding: 2rem;
  border-radius: 24px;
}
@media (min-width: 992px) {
  .text-overlay-panel__inner {
    padding: 4rem;
    padding-inline-start: 5vw;
    overflow-y: auto;
    max-height: 100%;
  }
}

.scopri {
  display: none;
}

.homepage {
  margin: 0;
}
.homepage .section-twoColsStyleTwo .btns,
.homepage .section-vuoto .btns,
.homepage .section-text .btns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.homepage .prezzi {
  display: none;
}
.homepage .scopri {
  display: block;
}
@media (max-width: 1700px) {
  .homepage #main {
    margin: 0;
  }
}
.homepage.h-mobile {
  margin: 120px auto auto !important;
}

@media (max-width: 600px) {
  .pag-ristorante .btns,
  .pag-benessere .btns,
  .pag-estate .btns,
  .pag-vacanze .btns {
    padding-bottom: 0;
  }
  .pag-ristorante .h1,
  .pag-benessere .h1,
  .pag-estate .h1,
  .pag-vacanze .h1 {
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .pag-meteo .section-twoColsSpecial .container .column:last-child .gallery-item-static {
    margin-top: 0 !important;
    margin-bottom: 30px;
  }
}
@media (min-width: 600px) and (max-width: 1249px) {
  .pag-meteo .section-twoColsSpecial .container .column:last-child {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .pag-meteo .section-twoColsStyleTwo {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.pag-meteo .gallery-item-static .btn {
  top: -180px;
  right: auto;
  bottom: auto;
}
.pag-meteo .section-twoColsSpecial .container .column:last-child .gallery-item-static .gallery-caption-static {
  max-width: 520px;
}
@media (max-width: 600px) {
  .pag-meteo .section-twoColsSpecial .container .column:last-child .gallery-item-static .gallery-caption-static {
    max-width: 380px;
  }
}
.pag-meteo .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
  max-width: 400px;
}
@media (max-width: 600px) {
  .pag-meteo .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
    max-width: 380px;
  }
}
.pag-meteo .mod-weather-forecast p {
  color: #000;
}
.pag-meteo .mod-weather-forecast p.min, .pag-meteo .mod-weather-forecast p.max {
  color: white;
}

@media (max-width: 600px) {
  .pag-benessere .sottotitolo,
  .pag-estate .sottotitolo {
    padding-top: 50px;
  }
}

.pag-arrampicare .section-twoColsStyleTwo {
  border-top: 50px solid #F4F1EC;
}
.pag-arrampicare .section-imageparallaxTwo .imageparallaxTwo-img img {
  margin-bottom: 30px;
}
@media (min-width: 1250px) {
  .pag-arrampicare .gallery-item-static .btn {
    top: -370px;
    right: auto;
    bottom: auto;
  }
  .pag-arrampicare .gallery-item-static .btn a {
    max-height: 55px;
  }
}
@media (min-width: 600px) and (max-width: 1249px) {
  .pag-arrampicare .section-twoColsSpecial .container .column:last-child {
    margin-top: 40px;
  }
}
.pag-arrampicare .section-twoColsSpecial .container .column:last-child .gallery-item-static .gallery-caption-static {
  max-width: 520px;
}
@media (max-width: 600px) {
  .pag-arrampicare .section-twoColsSpecial .container .column:last-child .gallery-item-static .gallery-caption-static {
    max-width: 380px;
  }
}
.pag-arrampicare .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
  max-width: 350px;
}
@media (max-width: 600px) {
  .pag-arrampicare .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
    max-width: 380px;
  }
}
@media (max-width: 600px) {
  .pag-arrampicare .dark-bg {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pag-arrampicare .small-caption .gallery-item-static .btn {
    left: 0;
    bottom: -70px;
  }
  .pag-arrampicare .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
    bottom: 5rem !important;
  }
  .pag-arrampicare .section-twoColsStyleTwo .container .column:last-child .gallery-caption-static {
    bottom: 5rem !important;
  }
  .pag-arrampicare .section-twoColsStyleTwo .container .column:last-child img {
    margin-bottom: 0;
    margin-top: 0;
  }
  .pag-arrampicare .section-twoColsSpecial .container .column:last-child .gallery-item-static .gallery-caption-static {
    bottom: 5rem !important;
  }
}

@media (max-width: 600px) {
  .pag-inverno .section-vuoto {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .pag-vacanze .section-twoColsSpecial {
    padding-bottom: 30px;
  }
}
@media (min-width: 600px) and (max-width: 1249px) {
  .pag-vacanze .section-twoColsSpecial .container .column:last-child {
    margin-top: 40px;
  }
}
.pag-vacanze .section-twoColsSpecial .container .column:first-child .gallery-caption-static {
  bottom: 1rem;
}
.pag-vacanze .section-twoColsSpecial .container .column:first-child img {
  top: 15px;
}

.container-special-img {
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .container-special-img {
    margin: 0 !important;
    display: block;
  }
}

@keyframes shrinkAndMove {
  0% {
    width: 100vw;
    height: 60vh;
    transform: translateX(0) translateY(0);
  }
  100% {
    width: 936px;
    height: 200px;
    transform: translateX(calc(95vw - 936px)) translateY(150px);
  }
}
@media (max-width: 1700px) and (min-width: 1401px) {
  @keyframes shrinkAndMove {
    0% {
      width: 100vw;
      height: 60vh;
      transform: translateX(0) translateY(0);
    }
    100% {
      width: 936px;
      height: 200px;
      transform: translateX(calc(98vw - 936px)) translateY(0);
    }
  }
}
@media (max-width: 1024px) {
  @keyframes shrinkAndMove {
    0%, 100% {
      width: 100%;
      height: 200px;
      transform: none;
    }
  }
}
.slide-rooms-container {
  height: 100vh;
  width: 96%;
  max-width: 1650px;
  overflow: hidden;
  position: relative;
  border-radius: 60px;
  margin: 50px auto;
}
@media (max-width: 600px) {
  .slide-rooms-container {
    border-radius: 40px;
  }
}
.slide-rooms-container .slide {
  height: 100vh;
  display: flex;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide-rooms-container .slide .btns {
  display: none;
  position: relative;
}
.slide-rooms-container .slide.active {
  opacity: 1;
}
.slide-rooms-container .slide.active .btns {
  display: block;
  z-index: 1;
  /*    z-index: 10;*/
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 600px) {
  .slide-rooms-container .slide.active .btns {
    align-content: flex-start;
    flex-direction: row;
  }
}
.slide-rooms-container .image-column {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-rooms-container .text-column {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem;
  transition: background-color 0.8s ease-in-out;
}
.slide-rooms-container .text-content {
  max-width: 500px;
  min-height: 500px;
}
@media (max-width: 600px) {
  .slide-rooms-container .text-content {
    min-height: 300px;
  }
}
.slide-rooms-container .text-content h2 {
  font-family: "haboro-serif";
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  color: unset;
}
.slide-rooms-container .text-content h2 a {
  text-decoration: none;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  font-family: "haboro-serif";
}
.slide-rooms-container .text-content p {
  color: unset;
}
.slide-rooms-container .slide-arrows {
  display: none;
}
@media (max-width: 600px) {
  .slide-rooms-container .slide-arrows {
    display: block;
    position: absolute;
    top: 20px;
    left: 10%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 70px;
  }
}
.slide-rooms-container .arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.slide-rooms-container .arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #F4F1EC;
  transform: scale(1.1);
}
.slide-rooms-container .arrow:active {
  transform: scale(0.95);
}
.slide-rooms-container .arrow.arrow-prev svg {
  transform: rotate(90deg);
}
.slide-rooms-container .arrow.arrow-next svg {
  transform: rotate(-90deg);
}
.slide-rooms-container .arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.slide-rooms-container .arrow svg {
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .slide-rooms-container .slide {
    flex-direction: column;
  }
  .slide-rooms-container .image-column {
    height: 50%;
  }
  .slide-rooms-container .text-column {
    height: 50%;
    padding: 2rem;
  }
  .slide-rooms-container .text-content h2 {
    font-size: 2rem;
  }
  .slide-rooms-container .arrow {
    width: 40px;
    height: 40px;
  }
  .slide-rooms-container .arrow svg {
    width: 20px;
    height: 20px;
  }
}

.menuextrainfo {
  text-align: center;
}
.menuextrainfo p {
  font-size: 24px;
}
@media (max-width: 600px) {
  .menuextrainfo p {
    font-size: 18px;
  }
}

.alteaForm .af-container-fluid {
  padding-top: 20px;
  background-color: white;
  border-radius: 60px;
}
@media (max-width: 600px) {
  .alteaForm .af-container-fluid {
    border-radius: 40px;
  }
}
.alteaForm .section__text {
  margin: auto;
}
.alteaForm .section__text .af-item-privacy {
  max-height: 110px;
  background-color: var(--color-secondary);
  padding: 11px;
  overflow: auto;
  font-size: 0.84em;
  line-height: 1.5em;
  margin-bottom: 2em;
}
.alteaForm .section__text .af-row {
  display: block;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .alteaForm .section__text .af-row {
    display: flex;
    flex-wrap: nowrap;
  }
}
.alteaForm .section__text .af-row.af-row-wrap {
  flex-wrap: wrap;
}
.alteaForm .section__text .af-row.af-row-gap {
  gap: 8px;
}
.alteaForm .section__text .af-row .af-col {
  flex-grow: 1;
}
.alteaForm .section__text .af-row .af-col.col-privacy {
  margin-left: 2%;
  flex-basis: 38%;
  flex-grow: 0;
}
.alteaForm .section__text .af-row .af-col.col-request {
  flex-basis: 100%;
  margin-right: 0;
  flex-grow: 0;
}
@media (min-width: 992px) {
  .alteaForm .section__text .af-row .af-col.col-request {
    flex-basis: 48%;
    margin-right: 2%;
  }
}
.alteaForm .section__text .af-row .af-col.col-detail {
  flex-basis: 100%;
  flex-grow: 0;
}
@media (min-width: 992px) {
  .alteaForm .section__text .af-row .af-col.col-detail {
    flex-basis: 50%;
  }
}
.alteaForm .section__text .af-row .af-col.col-2:first-child {
  flex-basis: 49%;
  margin-right: 1%;
}
.alteaForm .section__text .af-row .af-col.col-2:last-child {
  flex-basis: 49%;
  margin-left: 1%;
}
.alteaForm .section__text .af-row .af-col.col-3 {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .alteaForm .section__text .af-row .af-col.col-3 {
    flex-basis: 33.3333%;
  }
}
.alteaForm .section__text .af-row .af-col.col-4 {
  flex-basis: 25%;
}
.alteaForm .section__text .af-form-group {
  margin: 0.7em 0;
}
.alteaForm .section__text .af-form-group.af-nowrap {
  white-space: nowrap;
}
.alteaForm .section__text .af-form-group label {
  display: block;
  line-height: 1.4em;
}
.alteaForm .section__text .af-form-group label span.req:after {
  content: " (*)";
}
.alteaForm .section__text .af-form-group input {
  width: 100%;
  padding: 0 0.3em;
  margin: 0;
  background-color: var(--color-secondary);
  box-sizing: border-box;
  height: 2.3em;
  border: 1px solid var(--color-bg);
}
.alteaForm .section__text .af-form-group input.af-medium {
  width: 110px;
}
.alteaForm .section__text .af-form-group input.af-small {
  width: 60px;
}
.alteaForm .section__text .af-form-group input.error {
  border-color: #E83C42;
}
.alteaForm .section__text .af-form-group textarea {
  width: 100%;
  padding: 0 0.3em;
  margin: 0;
  background-color: var(--color-secondary);
  box-sizing: border-box;
  border: 1px solid var(--color-bg);
}
.alteaForm .section__text .af-form-group select {
  width: 100%;
  padding: 0 0.3em;
  margin: 0;
  background-color: var(--color-secondary);
  box-sizing: border-box;
  height: 2.3em;
  border: 1px solid var(--color-bg);
}
.alteaForm .section__text .af-form-group.af-checkboxes {
  display: flex;
  align-items: center;
}
.alteaForm .section__text .af-form-group.af-checkboxes label {
  margin-left: 9px;
}
.alteaForm .section__text .af-form-group.af-checkboxes input {
  width: auto;
}
.alteaForm .section__text fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.alteaForm .section__text fieldset legend {
  color: var(--color-accent);
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 1.9em;
  padding: 5px 0;
  margin-bottom: 20px;
}
.alteaForm .section__text fieldset.af-container-checkboxes {
  margin: 1.1em 0;
}
.alteaForm .section__text fieldset.af-container-checkboxes .af-form-group {
  margin: 0.2em 0;
}
.alteaForm .section__text .af-error-messages {
  display: none;
  font-size: 0.9em;
  text-align: left;
  border: 1px solid #E83C42;
  padding: 10px;
  background-color: #F2F2F2;
  margin-bottom: 20px;
}
.alteaForm .section__text .af-error-messages label {
  display: list-item;
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 2px;
}
.alteaForm .section__text .af-error-messages label.error.valid {
  display: none !important;
}
.alteaForm .section__text .af-error-messages p {
  color: #E83C42;
  font-weight: bold;
  margin-top: 0;
}
.alteaForm .section__text .btn--outline {
  white-space: nowrap;
}
.alteaForm .af-col-center button {
  background-color: #94522F !important;
  color: white;
}
.alteaForm .af-fake-input {
  border: 1px solid #ccc;
  border-radius: 20px;
  background: transparent;
}

.section__tabs {
  background: white;
  border-radius: 8px;
  font-size: 14px;
  overflow: hidden;
  /*  max-width: 600px;*/
  margin: 20px auto;
}
.section__tabs-inner {
  padding: 0;
}

.tab-nav {
  list-style: none;
  margin: 0;
  padding: 0 !important;
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.tab-nav li {
  flex: 1;
}
.tab-nav li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.tab-nav li a:hover {
  color: #495057;
  background: #e9ecef;
}
.tab-nav li.active a {
  color: #94522F;
  background: white;
  border-bottom-color: #94522F;
}

.tab-list {
  background: white;
}

.tab-item {
  padding: 25px;
}

.tab-text {
  margin: 0;
}

.table.rates {
  width: 100%;
  border-collapse: collapse;
}
.table.rates thead th {
  background: #f8f9fa;
  color: #495057;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}
.table.rates thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
.table.rates thead th:last-child {
  border-right: none;
}
.table.rates tbody tr {
  transition: background-color 0.2s ease;
}
.table.rates tbody tr:hover {
  background: #f8f9fa;
}
.table.rates tbody tr:nth-child(even) {
  background: #fdfdfd;
}
.table.rates tbody tr:last-child td {
  border-bottom: none;
}
.table.rates tbody th[scope=row] {
  background: #fff;
  font-weight: 700;
  color: #212529;
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 220px;
  text-align: left;
}
.table.rates tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  color: #212529;
}
.table.rates tbody td:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .table.rates {
    display: block;
    border: 0;
  }
  .table.rates thead {
    display: none;
  }
  .table.rates tbody {
    display: block;
  }
  .table.rates tbody tr {
    display: block;
    background: #fff !important;
    margin: 0 0 16px 0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
  }
  .table.rates tbody th[scope=row] {
    position: static;
    display: block;
    border-right: 0;
    border-bottom: 1px solid #e9ecef;
    min-width: 0;
    background: #f8f9fa;
  }
  .table.rates tbody td {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-right: 0;
  }
  .table.rates tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #495057;
    margin-right: 12px;
  }
}
@media (max-width: 480px) {
  .table.rates tbody td {
    padding: 10px 12px;
  }
  .table.rates tbody td::before {
    font-size: 0.95em;
  }
}

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