h1, h2, h3, h4 {
  font-family: "Libre Caslon Text", serif;
}

p, li, a, span, button, label {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

.button-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  height: 52px;
  color: #772011;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  border: 1px solid #772011;
}
.button-white:hover {
  background: #772011;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #ffffff;
}

.button-vinotinto {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  height: 52px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #772011;
  border: 1px solid #ffffff;
}
.button-vinotinto:hover {
  background: #ffffff;
  color: #191919;
  font-weight: 700;
  border: 1px solid #191919;
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: #ffffff;
}

.site-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 100vh;
  z-index: 1000;
  background: #772011;
}
@media (max-width: 991.98px) {
  .site-menu {
    top: 0;
    width: 100%;
    height: 80px;
  }
}

.site-main {
  margin-left: 90px;
  min-height: 100vh;
}
@media (max-width: 991.98px) {
  .site-main {
    margin: 0;
  }
}

.vertical-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 110px;
  height: 100vh;
  z-index: 100;
  background: #ffffff;
  -webkit-box-shadow: 8px 0 18px rgba(0, 0, 0, 0.06);
          box-shadow: 8px 0 18px rgba(0, 0, 0, 0.06);
}
.vertical-nav .booking-widget {
  display: none;
}
.vertical-nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0 0 0;
}
.vertical-nav__logo img {
  max-width: 100%;
  display: block;
}
.vertical-nav__menu {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #ffffff;
  border: 0;
}
.vertical-nav__menu span {
  padding: 20px 0 0 0;
  font-weight: 700;
  display: block;
}
.vertical-nav__social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vertical-nav__social a {
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1480px) {
  .vertical-nav {
    width: 90px;
  }
}
@media (min-width: 991px) and (max-width: 1080px) {
  .vertical-nav {
    width: 90px;
  }
}
@media (max-width: 991px) {
  .vertical-nav {
    height: 95px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .vertical-nav .booking-widget {
    display: block;
  }
  .vertical-nav__menu {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.06);
            box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.06);
    padding: 5px;
  }
  .vertical-nav__menu span {
    display: none;
  }
  .vertical-nav__logo {
    margin: 0;
  }
  .vertical-nav__logo img {
    height: 80px;
  }
  .vertical-nav__social {
    display: none;
  }
}

.full-menu {
  position: fixed;
  background: #ffffff;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.65s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: clip-path 0.65s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.full-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}
.full-menu.is-active .full-menu__side {
  opacity: 1;
}
.full-menu.is-active .full-menu__content {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.full-menu__side {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease 0.18s;
  transition: opacity 0.35s ease 0.18s;
  border-right: 1px solid #DDDDDD;
}
.full-menu__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0 0 0;
}
.full-menu__logo img {
  max-width: 100%;
  display: block;
}
.full-menu__close {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffffff;
  border: 0;
  z-index: 2;
}
.full-menu__close span {
  padding: 20px 0 0 0;
  font-weight: 700;
  display: block;
}
.full-menu__social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.full-menu__social a {
  margin-bottom: 20px;
}
.full-menu__content {
  min-height: 100vh;
  margin-left: 110px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.4s ease 0.28s, -webkit-transform 0.4s ease 0.28s;
  transition: opacity 0.4s ease 0.28s, -webkit-transform 0.4s ease 0.28s;
  transition: opacity 0.4s ease 0.28s, transform 0.4s ease 0.28s;
  transition: opacity 0.4s ease 0.28s, transform 0.4s ease 0.28s, -webkit-transform 0.4s ease 0.28s;
}
.full-menu__nav {
  margin: 100px auto 30px auto;
  height: calc(100vh - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.full-menu__nav ul {
  list-style: none;
  padding: 0;
  width: 50%;
  margin: 0 auto;
}
.full-menu__nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 40px 10px 30px;
  font-size: 36px;
  color: #191919;
  text-decoration: none;
  font-family: "Libre Caslon Text", serif;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.full-menu__nav ul li a img {
  display: none;
}
.full-menu__nav ul li a:hover {
  background: #F3EDEC;
}
.full-menu__nav ul li a:hover img {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.full-menu__nav .is-active {
  background: #F3EDEC;
}
.full-menu__nav .is-active img {
  display: block;
}
.full-menu__nav .content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 35px;
}
.full-menu__nav .content-footer .text-left p {
  margin: 0;
  color: #a09e9e;
}
.full-menu__nav .content-footer .text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.full-menu__nav .content-footer .text-right a {
  color: #a09e9e;
  padding: 0 20px;
}
.full-menu__nav .content-footer .text-right a:last-child {
  border-left: 1px solid #a09e9e;
}
.full-menu__info {
  margin: 50px 0;
  padding: 0 24px;
  border-left: 1px solid #919090;
}
.full-menu__info img, .full-menu__info video {
  width: 100%;
  display: block;
  margin-bottom: 100px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-menu__info div {
  margin-bottom: 40px;
}
.full-menu__info div p {
  font-size: 14px;
  color: #772011;
  text-transform: uppercase;
  font-weight: 700;
}
.full-menu__info div h3 {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 991px) {
  .full-menu {
    overflow-y: auto;
    overflow-x: hidden;
  }
  .full-menu__side {
    height: 95px;
    width: 100%;
  }
  .full-menu__content {
    margin: 0;
  }
  .full-menu__close {
    left: calc(100% - 50px);
  }
  .full-menu__close span {
    display: none;
  }
  .full-menu__nav {
    height: auto;
    margin: 80px auto 30px auto;
  }
  .full-menu__nav ul {
    width: 90%;
  }
  .full-menu__nav ul li {
    margin-bottom: 15px;
  }
  .full-menu__nav ul li a {
    font-size: 20px;
    padding: 5px 30px 5px 10px;
  }
  .full-menu__nav ul li a img {
    width: 35px;
  }
  .full-menu__nav .content-footer {
    display: none;
  }
  .full-menu__info {
    margin: 0;
    border: none;
  }
  .full-menu__info img, .full-menu__info video {
    height: 190px;
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .full-menu__info .date-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .full-menu__info .date-menu div {
    margin: 0;
  }
  .full-menu__info .date-menu div h3, .full-menu__info .date-menu div p {
    font-size: 16px;
  }
  .full-menu__logo, .full-menu__social {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .vertical-nav__menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 991px) {
  body.menu-open {
    overflow: auto;
  }
}

.footer {
  background: #191919;
  padding: 80px 0 20px 0;
}
.footer .text-footer {
  padding: 0 0 40px 80px;
  position: relative;
}
.footer .text-footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 80%;
  background: #772011;
}
.footer .text-footer h2 {
  font-size: 45px;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}
.footer .text-footer h2 span {
  font-style: italic;
  font-family: "Libre Caslon Text", serif;
}
.footer .list-left {
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .list-left li {
  padding: 0 70px 0 25px;
  list-style: none;
  position: relative;
}
.footer .list-left li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 15px;
  height: 2px;
  background: #ffffff;
}
.footer .list-left li p {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}
.footer .text-list {
  list-style: none;
  padding: 0;
}
.footer .text-list .feature {
  background: #ffffff;
  color: #772011;
  display: block;
  padding: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer .text-list .feature p {
  margin: 0;
}
.footer .text-list li {
  margin-bottom: 12px;
}
.footer .text-list li p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  font-family: "Libre Caslon Text", serif;
}
.footer .text-list li a {
  text-decoration: none;
  color: #a3a3a3;
}
.footer .text-list li a:hover {
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .list-social {
  padding: 70px 0 0 0;
}
.footer .list-social ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .list-social ul li {
  padding: 0 15px;
}
.footer .list-social ul li a, .footer .list-social ul li p {
  font-size: 14px;
  text-decoration: none;
  color: #a3a3a3;
  margin: 0;
}
.footer .list-social ul li a strong, .footer .list-social ul li p strong {
  color: #ffffff;
}
.footer .list-social ul li a:hover, .footer .list-social ul li p:hover {
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .social-l ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.footer .social-d ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 768px) {
  .footer .text-footer {
    padding: 0 0 30px 55px;
  }
  .footer .text-footer h2 {
    font-size: 36px;
  }
  .footer .list-left {
    padding-left: 55px;
  }
  .footer .text-list {
    padding: 25px 0 25px 55px;
  }
  .footer .list-social {
    padding: 0 0 0 55px;
  }
  .footer .list-social ul {
    display: block;
    margin: 0;
  }
  .footer .list-social ul li {
    padding: 5px 0;
  }
}

.benefits {
  position: relative;
  padding: 80px 0;
}
.benefits .tittle-benefits {
  width: 40%;
  margin: 0 auto 35px auto;
  text-align: center;
}
.benefits .tittle-benefits p {
  color: #772011;
  font-weight: 600;
  text-transform: uppercase;
}
.benefits .tittle-benefits h2 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
}
.benefits .item-image {
  height: 359.8px;
  display: block;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.7s ease, -webkit-box-shadow 0.4s ease;
  transition: background-size 0.7s ease, -webkit-box-shadow 0.4s ease;
  transition: background-size 0.7s ease, box-shadow 0.4s ease;
  transition: background-size 0.7s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.benefits .item-image:hover {
  background-size: 108% 108%;
  -webkit-box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
          box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}
.benefits .item-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.benefits .item-image:after {
  content: attr(data-number);
  position: absolute;
  left: -5%;
  bottom: 5%;
  z-index: 2;
  font-family: "Libre Caslon Text", serif;
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.benefits .item-image .content-text {
  position: absolute;
  width: calc(100% - 80px);
  left: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.benefits .item-image .content-text .text h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  font-family: "Castoro", serif;
  margin: 0;
}
.benefits .item-text {
  background: #F3EDEC;
  padding: 80px 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.benefits .item-text:hover {
  -webkit-box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
          box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.benefits .item-text:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.benefits .item-text:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.benefits .item-text:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(140, 29, 15, 0.18);
  opacity: 0;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  pointer-events: none;
}
.benefits .item-text:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8c1d0f;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.benefits .item-text h4 {
  font-family: "Castoro", serif;
  font-size: 24px;
  margin: 20px 0;
}
.benefits .item-text p {
  color: #706e6e;
  min-height: 72px;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .benefits .item-text {
    padding: 80px 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .benefits .tittle-benefits {
    width: 80%;
  }
  .benefits .tittle-benefits h2 {
    font-size: 40px;
  }
  .benefits .item-text {
    padding: 80px 35px;
  }
}
@media (max-width: 768px) {
  .benefits .tittle-benefits {
    width: 100%;
  }
  .benefits .tittle-benefits h2 {
    font-size: 35px;
  }
  .benefits .tittle-benefits p {
    font-size: 14px;
  }
  .benefits .item-text {
    padding: 50px 35px;
  }
  .benefits .item-image {
    height: 299.8px;
  }
}

.reservation {
  position: relative;
  padding: 70px 0;
}
.reservation .text-reservation {
  height: 100%;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reservation .text-reservation h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 40px;
}
.reservation .text-reservation a {
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reservation .text-reservation a:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 700;
}
.reservation .content-video {
  position: relative;
  width: 125%;
  overflow: hidden;
}
.reservation .content-video:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.reservation .content-video:hover .video-card img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.reservation .content-video .video-card {
  cursor: pointer;
}
.reservation .content-video .video-card img {
  width: 100%;
  height: auto;
}
.reservation .content-video .icon-play {
  position: absolute;
  right: 50%;
  top: calc(50% - 25px);
  cursor: pointer;
  pointer-events: all;
}
.reservation .content-video .icon-play img {
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reservation .text-reservation h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .reservation .text-reservation h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .reservation .text-reservation a {
    display: block;
    margin-bottom: 20px;
  }
  .reservation .content-video {
    width: 100%;
  }
  .reservation .content-video .icon-play {
    right: calc(50% - 25px);
  }
}

.events {
  padding: 70px 0;
}
.events .tittle-events {
  margin-bottom: 40px;
  width: 85%;
}
.events .tittle-events p {
  color: #772011;
  font-weight: 600;
  text-transform: uppercase;
}
.events .tittle-events h2 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
}
.events .more-events {
  padding-top: 40px;
  text-align: right;
}
.events .more-events a {
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.events .content-nexts {
  border-radius: 15px;
  border: 1px solid #ecdddd;
  padding: 20px 8px 10px 8px;
  height: 100%;
}
.events .content-nexts .tittle-next {
  padding: 20px 40px;
  position: relative;
}
.events .content-nexts .tittle-next:before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 10px;
  width: 24px;
  height: 1px;
  background: #772011;
}
.events .content-nexts .tittle-next h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  font-family: "Manrope", sans-serif;
}
.events .content-nexts .swiper-slide .item-next {
  padding: 20px 40px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ecdddd;
  display: block;
  text-decoration: none;
}
.events .content-nexts .swiper-slide .item-next h4 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}
.events .content-nexts .swiper-slide .item-next p {
  font-family: "Inter", sans-serif;
  color: #393A39;
  margin: 0;
}
.events .content-nexts .swiper-slide .item-next img {
  position: absolute;
  right: 20px;
  top: calc(50% - 20px);
}
.events .content-nexts .swiper-slide-thumb-active .item-next {
  background: #F6E6E3;
  border-bottom: none;
  border-radius: 14px;
}
.events .content-tours {
  border-radius: 15px;
  border: 1px solid #ecdddd;
  padding: 20px 8px 10px 8px;
  height: 100%;
  background: #fbf8f3;
}
.events .content-tours .tittle-tours {
  padding: 20px 10px;
  position: relative;
}
.events .content-tours .tittle-tours:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 24px;
  height: 1px;
  background: #772011;
}
.events .content-tours .tittle-tours h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  font-family: "Manrope", sans-serif;
}
.events .content-tours .item-tours {
  background-size: 100% 100%;
  min-height: 120px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}
.events .content-tours .item-tours div img {
  background: #ffffff;
  padding: 6px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.events .content-tours .item-tours div p {
  color: #ffffff;
  font-family: "Libre Caslon Text", serif;
  margin: 0;
}
.events .myEvents2 {
  width: 100%;
}
.events .myEvents2 img {
  border-radius: 15px 0 0 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.events .myEvents {
  width: 100%;
  height: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
.events .myEvents .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}
.events .myEvents .swiper-slide-thumb-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .events .tittle-events p {
    font-size: 14px;
  }
  .events .tittle-events h2 {
    font-size: 35px;
  }
  .events .myEvents2 {
    display: none;
  }
  .events .more-events {
    padding: 20px 0;
  }
  .events .content-nexts, .events .myEvents2 {
    margin-top: 20px;
  }
  .events .content-tours {
    display: none;
  }
}

.activities {
  position: relative;
  padding: 120px 0 80px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#F3EDEC), color-stop(50%, #F3EDEC), color-stop(50%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, #F3EDEC 0%, #F3EDEC 50%, #ffffff 50%, #ffffff 100%);
}
.activities .booking-widget {
  right: 10%;
}
.activities .content-before {
  position: relative;
}
.activities .content-before:after {
  content: "";
  position: absolute;
  left: -20px;
  top: -25px;
  width: calc(100% + 40px);
  height: calc(100% + 50px);
  background: #ffffff;
}
.activities .tittle-activities {
  margin-bottom: 100px;
  text-align: center;
}
.activities .tittle-activities span {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  font-weight: 600;
  margin: 0;
}
.activities .tittle-activities h1 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
  margin: 15px 0 10px 0;
}
.activities .tittle-activities h1 em {
  color: #772011;
}
.activities .tittle-activities p {
  color: #444748;
  margin: 0;
}
.activities .content-nexts {
  border-radius: 15px;
  border: 1px solid #ecdddd;
  padding: 20px 8px 10px 8px;
  height: 100%;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.activities .content-nexts .tittle-next {
  padding: 20px 40px;
  position: relative;
}
.activities .content-nexts .tittle-next:before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 10px;
  width: 24px;
  height: 1px;
  background: #772011;
}
.activities .content-nexts .tittle-next h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  font-family: "Manrope", sans-serif;
}
.activities .content-nexts .swiper-slide .item-next {
  padding: 20px 40px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ecdddd;
  display: block;
  text-decoration: none;
}
.activities .content-nexts .swiper-slide .item-next h4 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}
.activities .content-nexts .swiper-slide .item-next p {
  font-family: "Inter", sans-serif;
  color: #393A39;
  margin: 0;
}
.activities .content-nexts .swiper-slide .item-next img {
  position: absolute;
  right: 20px;
  top: calc(50% - 20px);
}
.activities .content-nexts .swiper-slide-thumb-active .item-next {
  background: #F6E6E3;
  border-bottom: none;
  border-radius: 14px;
}
.activities .myEvents2 {
  width: 100%;
}
.activities .myEvents2 img {
  border-radius: 15px 0 0 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.activities .myEvents {
  width: 100%;
  height: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
.activities .myEvents .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}
.activities .myEvents .swiper-slide-thumb-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .activities {
    padding: 120px 0 20px 0;
  }
  .activities .tittle-activities h1 {
    font-size: 35px;
  }
  .activities .content-before:after {
    left: 10px;
    width: calc(100% - 20px);
    height: 100%;
    top: -15px;
  }
  .activities .content-nexts {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .activities .booking-widget {
    display: none;
  }
}
@media (max-width: 768px) {
  .activities .myEvents2 {
    display: none;
  }
}

.events-seasson {
  position: relative;
  padding: 80px 0;
}
.events-seasson .tittle-seasson {
  margin-bottom: 40px;
}
.events-seasson .tittle-seasson span {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  font-weight: 600;
  margin: 0;
}
.events-seasson .tittle-seasson h2 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
  margin: 15px 0 10px 0;
}
.events-seasson .tittle-seasson p {
  color: #444748;
  margin: 0;
}
.events-seasson .seasson-2 {
  margin: 100px 0 40px 0;
}
.events-seasson .item-events {
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-transition: background-color 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.events-seasson .item-events:hover {
  background-color: #F3EDEC;
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.events-seasson .item-events:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.events-seasson .item-events img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 35px;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
}
.events-seasson .item-events .text-events {
  padding: 0 15px 15px 15px;
}
.events-seasson .item-events .text-events h4 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.events-seasson .item-events .text-events p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #393A39;
  min-height: 90px;
}
.events-seasson .item-events .text-events .button-white {
  width: 100%;
  height: 50px;
  cursor: pointer;
}
.events-seasson .content-experiences {
  position: relative;
}
.events-seasson .content-experiences .swiper-wrapper {
  height: auto;
}
.events-seasson .content-experiences .swiper-button-prev, .events-seasson .content-experiences .swiper-button-next {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
}
.events-seasson .content-experiences .swiper-button-prev svg, .events-seasson .content-experiences .swiper-button-next svg {
  display: none;
}
.events-seasson .content-experiences .swiper-button-next {
  right: -20px;
}
.events-seasson .content-experiences .swiper-button-prev {
  left: -20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.events-seasson .content-experiences .swiper-pagination-bullet-active {
  background: #191919;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .events-seasson .item-events .text-events p {
    min-height: 113px;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .events-seasson .item-events .text-events h4 {
    font-size: 17px;
  }
  .events-seasson .item-events .text-events p {
    min-height: 158px;
  }
}
@media (max-width: 991px) {
  .events-seasson .item-events .text-events p {
    min-height: 113px;
  }
  .events-seasson .content-experiences .swiper-button-prev, .events-seasson .content-experiences .swiper-button-next {
    top: 40%;
  }
  .events-seasson .content-experiences .swiper-button-next {
    right: 0;
  }
  .events-seasson .content-experiences .swiper-button-prev {
    left: 0;
  }
}

.spaces {
  position: relative;
  padding: 80px 0 70px;
}
.spaces .tittle-spaces {
  margin-bottom: 40px;
  position: relative;
}
.spaces .tittle-spaces p {
  color: #772011;
  font-weight: 600;
  text-transform: uppercase;
}
.spaces .tittle-spaces h2 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
}
.spaces .tittle-spaces .counter {
  position: absolute;
  right: 0;
  top: 20px;
}
.spaces .tittle-spaces .counter .slider-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.spaces .tittle-spaces .counter .slider-counter h2, .spaces .tittle-spaces .counter .slider-counter span {
  font-size: 100px;
  font-family: "Libre Caslon Text", serif;
  color: #e8e8e8;
}
.spaces .tittle-spaces .counter .slider-counter span {
  margin-top: -20px;
}
.spaces .item-space {
  background-size: cover;
  width: 100%;
  height: 600px;
  position: relative;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.spaces .item-space:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.spaces .item-space img {
  width: 100%;
  height: auto;
}
.spaces .item-space .content-space {
  position: absolute;
  right: 20px;
  top: 20px;
  width: calc(50% - 20px);
  height: calc(100% - 40px);
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spaces .item-space .content-space span {
  color: #d8d8d6;
  font-size: 14px;
  text-transform: uppercase;
}
.spaces .item-space .content-space h2 {
  margin: 14px 0;
  font-size: 28px;
  font-weight: 500;
}
.spaces .item-space .content-space .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
}
.spaces .item-space .content-space .details div {
  position: relative;
  padding: 0 50px 0 25px;
}
.spaces .item-space .content-space .details div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #d8d8d6;
}
.spaces .item-space .content-space .details p {
  font-size: 12px;
  color: #d8d8d6;
  margin: 0;
}
.spaces .item-space .content-space .details h4 {
  font-size: 20px;
  font-weight: 500;
}
.spaces .item-space .content-space a {
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.spaces .item-space .content-space a:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 700;
}
.spaces .item-space .content-space a img {
  width: auto;
  margin-left: 20px;
}
.spaces .salonesSwiper {
  height: 600px;
  position: relative;
}
.spaces .salonesSwiper .swiper-button-prev {
  left: 8%;
  color: #ffffff;
  width: 35px;
  height: 35px;
}
.spaces .salonesSwiper .swiper-button-next {
  right: 8%;
  color: #ffffff;
  width: 35px;
  height: 35px;
}
.spaces .salonesSwiper .swiper-slide {
  width: 72%;
}
.spaces .salonesSwiper .swiper-slide-active .item-space {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.spaces .salonesSwiper .swiper-slide-active .item-space:before {
  content: none;
  opacity: 0;
}
.spaces .salonesSwiper .salones-pagination {
  display: none;
}
.spaces .salonesSwiper .salones-pagination .swiper-pagination-bullet-active {
  background: #191919;
}
@media (max-width: 991px) {
  .spaces {
    padding: 80px 0 0 0;
  }
  .spaces .tittle-spaces {
    width: 90%;
  }
  .spaces .tittle-spaces h2 {
    font-size: 35px;
  }
  .spaces .tittle-spaces p {
    font-size: 14px;
  }
  .spaces .tittle-spaces .counter {
    right: -10%;
    top: 95%;
  }
  .spaces .tittle-spaces .counter .slider-counter h2, .spaces .tittle-spaces .counter .slider-counter span {
    font-size: 60px;
  }
  .spaces .item-space {
    height: 540px;
  }
  .spaces .item-space .content-space {
    width: calc(100% - 30px);
    height: auto;
    right: 15px;
    top: 15px;
    padding: 20px;
  }
  .spaces .item-space .content-space span {
    font-size: 14px;
  }
  .spaces .item-space .content-space h2 {
    font-size: 22px;
  }
  .spaces .item-space .content-space p {
    font-size: 14px;
  }
  .spaces .item-space .content-space a {
    font-size: 14px;
  }
  .spaces .item-space .content-space .details div {
    padding: 0 30px 0 15px;
  }
  .spaces .item-space .content-space .details h4 {
    font-size: 17px;
  }
  .spaces .salonesSwiper {
    height: 590px;
    margin: 0 20px;
    padding-bottom: 50px;
  }
  .spaces .salonesSwiper .swiper-button-next, .spaces .salonesSwiper .swiper-button-prev {
    display: none;
  }
  .spaces .salonesSwiper .salones-pagination {
    display: block;
  }
}

.rooms {
  position: relative;
  background: #F3EDEC;
  padding: 110px 0;
}
.rooms .tittle-rooms {
  margin-bottom: 40px;
  position: relative;
}
.rooms .tittle-rooms p {
  color: #772011;
  font-weight: 600;
  text-transform: uppercase;
}
.rooms .tittle-rooms h2 {
  color: #191919;
  font-size: 45px;
  font-weight: 500;
}
.rooms .content-slider {
  width: 125%;
  position: relative;
}
.rooms .link-rooms {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 40px;
}
.rooms .link-rooms a {
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rooms .roomThumbsSwiper {
  height: 500px;
}
.rooms .roomThumbsSwiper .thumb-img {
  border-radius: 5px;
  border: 1.5px solid #191919;
  height: 100%;
}
.rooms .roomThumbsSwiper .thumb-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 3px;
}
.rooms .roomGallerySwiper {
  height: 500px;
}
.rooms .roomGallerySwiper .principal-thumb {
  height: 100%;
  width: 100%;
}
.rooms .roomGallerySwiper .principal-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms .modal .modal-content {
  padding: 25px 30px;
  border-radius: 0;
}
.rooms .modal .modal-content .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.rooms .modal .modal-content .head-content .counter-current {
  font-size: 26px;
  font-weight: 700;
  color: #772011;
  padding-right: 10px;
}
.rooms .modal .modal-content .head-content .counter-total {
  font-size: 14px;
  padding-left: 10px;
  position: relative;
}
.rooms .modal .modal-content .head-content .counter-total:before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
}
.rooms .modal .modal-content .head-content .text-head {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #772011;
  margin-bottom: 20px;
}
.rooms .modal .modal-content .head-content .text-head h2 {
  font-weight: 500;
  font-size: 26px;
}
.rooms .modal .modal-content .head-content .text-head p {
  font-size: 12px;
  padding-left: 5px;
  font-weight: 600;
  margin: 0;
}
.rooms .swiper-button-prev, .rooms .swiper-button-next {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
}
.rooms .swiper-button-prev svg, .rooms .swiper-button-next svg {
  display: none;
}
.rooms .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.rooms .content-pren {
  position: absolute;
  right: calc(25% - 27.5px);
  top: 35%;
  z-index: 1;
}
.rooms .content-pren .rooms-prev, .rooms .content-pren .rooms-next {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
  height: 55px;
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rooms .content-pren .rooms-prev img, .rooms .content-pren .rooms-next img {
  max-width: 25px;
}
.rooms .content-pren .rooms-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-bottom: 15px;
}
.rooms .swiper-pagination {
  display: none;
}
.rooms .room-card {
  text-decoration: none;
}
.rooms .item-room {
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  cursor: pointer;
  overflow-x: hidden;
  -webkit-transition: background-color 0.35s ease, -webkit-box-shadow 0.35s ease, -webkit-transform 0.35s ease;
  transition: background-color 0.35s ease, -webkit-box-shadow 0.35s ease, -webkit-transform 0.35s ease;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, -webkit-box-shadow 0.35s ease, -webkit-transform 0.35s ease;
}
.rooms .item-room:hover {
  background-color: #772011;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  padding: 0 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.rooms .item-room:hover .image-room img {
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
  -webkit-filter: brightness(0.96);
          filter: brightness(0.96);
}
.rooms .item-room:hover h3, .rooms .item-room:hover p {
  color: #ffffff;
}
.rooms .item-room .image-room {
  position: relative;
  margin-bottom: 25px;
}
.rooms .item-room .image-room img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  min-height: 450px;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms .item-room .image-room span {
  position: absolute;
  left: 20px;
  top: 20px;
  background: #ffffff;
  font-weight: 600;
  padding: 5px 10px;
  color: #191919;
}
.rooms .item-room h3 {
  font-size: 26px;
  font-weight: 500;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  color: #191919;
  text-decoration: none;
}
.rooms .item-room p {
  color: #444748;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  text-decoration: none;
}
@media (max-width: 991px) {
  .rooms {
    background: #ffffff;
    padding: 0;
  }
  .rooms .link-rooms {
    display: none;
  }
  .rooms .tittle-rooms {
    width: 90%;
  }
  .rooms .tittle-rooms p {
    font-size: 14px;
  }
  .rooms .tittle-rooms h2 {
    font-size: 35px;
  }
  .rooms .item-room {
    padding: 0;
    margin-bottom: 35px;
  }
  .rooms .item-room .image-room img {
    min-height: 370px;
  }
  .rooms .content-slider {
    width: 100%;
  }
  .rooms .swiper-pagination {
    display: block;
  }
  .rooms .swiper-pagination .swiper-pagination-bullet-active {
    background: #191919;
  }
  .rooms .content-pren {
    right: 12%;
  }
  .rooms .content-pren .rooms-prev, .rooms .content-pren .rooms-next {
    width: 45px;
    height: 45px;
  }
}

.rooms-internal {
  background: #ffffff;
}
.rooms-internal .tittle-rooms {
  text-align: center;
}
.rooms-internal .content-slider {
  width: 100%;
}
.rooms-internal .item-room h3 {
  min-height: 63px;
}
.rooms-internal .content-pren {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .rooms-internal {
    padding: 50px 0 100px 0;
  }
  .rooms-internal .content-pren {
    display: none;
  }
}
@media (max-width: 768px) {
  .rooms-internal {
    padding: 50px 0 100px 0;
  }
  .rooms-internal .content-pren {
    display: block;
  }
}

.hero-slider {
  position: relative;
}
.hero-slider .heroSwiper {
  width: 100%;
  height: 100vh;
  min-height: 750px;
  position: relative;
  overflow: hidden;
}
.hero-slider .heroSwiper .swiper-wrapper,
.hero-slider .heroSwiper .swiper-slide {
  height: 100%;
}
.hero-slider .content-item {
  padding: 0 50px;
}
.hero-slider .hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-slider .hero-slide .hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slider .hero-slide .hero-media img, .hero-slider .hero-slide .hero-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.68)), color-stop(42%, rgba(0, 0, 0, 0.38)), to(rgba(0, 0, 0, 0.12)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.12) 100%);
}
.hero-slider .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 60%;
  color: #fff;
  padding: 200px 25px 0 25px;
}
.hero-slider .hero-content h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 118px);
  line-height: 0.95;
  font-weight: 400;
  font-size: 90px;
}
.hero-slider .hero-content h1 em {
  font-style: italic;
}
.hero-slider .hero-content .hero-hour {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.18);
  margin-left: 50px;
}
.hero-slider .hero-content .hero-greeting {
  margin: 0 0 35px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-slider .hero-content .hero-greeting::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 20px;
  vertical-align: middle;
  background: #fff;
}
.hero-slider .hero-content .hero-greeting img {
  margin-left: 20px;
}
.hero-slider .hero-content .hero-text {
  margin: 36px 0 28px;
  font-size: 22px;
  line-height: 1.35;
  font-size: 18px;
}
.hero-slider .hero-content .hero-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  height: 58px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.hero-slider .hero-content .hero-btn:hover {
  background: #ffffff;
  color: #191919;
  font-weight: 700;
}
.hero-slider .about-us {
  position: absolute;
  right: 75px;
  bottom: -40px;
  z-index: 1;
  text-align: center;
}
.hero-slider .about-us p {
  color: #ffffff;
  font-weight: 600;
}
.hero-slider .swiper-pagination {
  left: 5vw;
  bottom: 70px;
  width: auto;
  position: relative;
  text-align: left;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  margin-right: 40px;
}
.hero-slider .swiper-button-next {
  right: 5vw;
  color: #fff;
}
.hero-slider .swiper-button-next::after {
  font-size: 42px;
}
@media (min-width: 1257px) and (max-width: 1500px) {
  .hero-slider .hero-content {
    padding: 150px 25px 0 25px;
    max-width: 70%;
  }
}
@media (min-width: 991px) and (max-width: 1257px) {
  .hero-slider .hero-content {
    max-width: 80%;
    padding: 150px 25px 0 25px;
  }
  .hero-slider .hero-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  .hero-slider .content-item {
    padding: 0;
  }
  .hero-slider .hero-content {
    max-width: 100%;
    padding: 150px 0;
    text-align: center;
  }
  .hero-slider .hero-content h1 {
    font-size: 42px;
  }
  .hero-slider .hero-content .hero-hour {
    margin-left: 0;
  }
  .hero-slider .hero-content .hero-greeting {
    font-size: 17px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-slider .swiper-pagination {
    left: 0;
    text-align: center;
  }
  .hero-slider .swiper-pagination .swiper-pagination-bullet {
    margin-right: 15px;
  }
  .hero-slider .about-us {
    display: none;
  }
  .hero-slider .swiper-button-next {
    display: none;
  }
  .hero-slider .booking-widget {
    display: none;
  }
}

.contact {
  position: relative;
  padding: 80px 0 150px 0;
  background: #F3EDEC;
}
.contact .booking-widget {
  right: 10%;
}
.contact .content-tittle {
  text-align: center;
  width: 80%;
  margin: 0 auto 50px auto;
}
.contact .content-tittle span {
  font-size: 14px;
  color: #772011;
  font-weight: 700;
}
.contact .content-tittle h2 {
  font-size: 50px;
  font-weight: 500;
  margin: 20px 0;
}
.contact .content-tittle h2 span {
  font-style: italic;
  color: #772011;
  font-size: 50px;
}
.contact .content-tittle p {
  font-size: 18px;
}
.contact .info-contact {
  padding: 0 0 0 20px;
}
.contact .info-contact h2 {
  font-size: 26px;
  color: #191919;
  padding: 15px 0 30px 0;
  font-weight: 400;
  position: relative;
  margin: 0;
}
.contact .info-contact h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #772011;
}
.contact .info-contact .list-info {
  padding: 30px 0 0 0;
}
.contact .info-contact .list-info ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.contact .info-contact .list-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.contact .info-contact .list-info ul li:last-child {
  margin: 0;
}
.contact .info-contact .list-info ul li .icon {
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #EDDEDE;
  margin-right: 20px;
}
.contact .info-contact .list-info ul li .icon img {
  max-width: 100%;
  height: auto;
}
.contact .info-contact .list-info ul li a, .contact .info-contact .list-info ul li p {
  color: #191919;
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-break: anywhere;
  margin: 0;
}
.contact .info-contact .content-video {
  position: relative;
  height: 100%;
}
.contact .info-contact .content-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .info-contact .content-map {
  height: 100%;
  margin: 26px 0 0 0;
}
.contact .info-contact .content-map p {
  font-size: 18px;
  font-weight: 600;
}
.contact .content-form span {
  font-size: 12px;
  font-weight: 600;
  margin: 20px 0;
  display: block;
}
.contact .tittle-stamp {
  padding: 100px 0 30px 0;
  text-align: center;
}
.contact .tittle-stamp h2 {
  font-size: 28px;
  color: #772011;
}
.contact .content-stamps ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .content-stamps ul li {
  text-align: center;
  margin: 0 20px;
}
.contact .content-stamps ul li img {
  max-width: 80%;
  height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact {
    padding: 130px 0;
  }
  .contact .booking-widget {
    display: none;
  }
  .contact .content-tittle {
    width: 100%;
  }
  .contact .content-tittle h2 {
    font-size: 40px;
  }
  .contact .content-tittle h2 span {
    font-size: 40px;
  }
  .contact .info-contact {
    margin: 35px 0;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 150px 0;
  }
  .contact .booking-widget {
    display: none;
  }
  .contact .content-tittle {
    width: 100%;
    margin: 0 auto 35px auto;
  }
  .contact .content-tittle h2 {
    font-size: 35px;
  }
  .contact .content-tittle h2 span {
    font-size: 35px;
  }
  .contact .content-tittle p {
    font-size: 16px;
  }
  .contact .info-contact {
    text-align: center;
    padding: 40px 20px 10px 20px;
  }
  .contact .info-contact h2 {
    font-size: 22px;
    text-align: left;
    padding: 15px 0;
  }
  .contact .info-contact .list-info {
    padding: 20px 0 50px 0;
  }
  .contact .info-contact .list-info ul {
    margin: 0;
  }
  .contact .info-contact .list-info ul li {
    text-align: left;
  }
  .contact .info-contact .list-info ul li a, .contact .info-contact .list-info ul li p {
    font-size: 14px;
  }
  .contact .info-contact .list-info ul li .icon {
    min-width: 40px;
    min-height: 40px;
  }
  .contact .info-contact .list-info ul li .icon img {
    max-width: 20px;
  }
  .contact .content-video {
    height: 400px;
  }
  .contact .content-map p {
    text-align: left;
    font-size: 16px;
  }
}

.banner-accommodation {
  padding: 170px 0;
  --background-zoom: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.banner-accommodation:hover {
  --background-zoom: 108%;
  -webkit-filter: brightness(2);
          filter: brightness(2);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.banner-accommodation .tittle-banner {
  color: #ffffff;
  text-align: center;
}
.banner-accommodation .tittle-banner h1 {
  font-size: 70px;
  font-weight: 400;
}
.banner-accommodation .tittle-banner p {
  font-size: 26px;
  font-style: italic;
  font-family: "Libre Caslon Text", serif;
}
.banner-accommodation .tittle-banner span {
  font-size: 16px;
}
@media (max-width: 991px) {
  .banner-accommodation {
    padding: 200px 0 150px 0;
  }
  .banner-accommodation .tittle-banner h1 {
    font-size: 40px;
  }
  .banner-accommodation .tittle-banner p {
    font-size: 20px;
  }
}

.rooms-tabs .content-tabs {
  padding: 5px;
  background: #ffffff;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto;
  position: relative;
  top: -50%;
  border-radius: 13px;
}
.rooms-tabs .content-tabs .nav-tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #E3D8D8;
  border-radius: 13px;
  position: relative;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item {
  position: relative;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item:last-child div {
  border-left: 1px solid #E3D8D8;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item:hover div {
  background: #F3EDEC;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item:hover div:before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 20px;
  width: 76%;
  height: 4px;
  background: #772011;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item .active:before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 20px;
  width: 76%;
  height: 4px;
  background: #772011;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item div {
  border: none;
  padding: 35px 80px 40px 80px;
  text-align: center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item div:before {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item div h4 {
  color: #1c1c1a;
}
.rooms-tabs .content-tabs .nav-tabs .nav-item div p {
  color: #444748;
}
.rooms-tabs .item-room {
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 80px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.rooms-tabs .item-room:hover {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.rooms-tabs .item-room:hover .image-room {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.rooms-tabs .item-room:hover .text-room {
  padding: 10px;
}
.rooms-tabs .item-room .image-room {
  position: relative;
  margin-bottom: 25px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.rooms-tabs .item-room .image-room img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  min-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms-tabs .item-room .text-room {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.rooms-tabs .item-room .text-room h3 {
  font-size: 26px;
  font-weight: 500;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: color 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease;
  transition: transform 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.rooms-tabs .item-room .text-room .list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rooms-tabs .item-room .text-room .list-items .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 35px 0 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #9E9A9A;
}
.rooms-tabs .item-room .text-room .list-items .list:first-child {
  padding: 0 35px 0 0;
  border: none;
}
.rooms-tabs .item-room .text-room .list-items .list .icon {
  margin-right: 10px;
}
.rooms-tabs .item-room .text-room .list-items .list .text p {
  margin: 0;
}
.rooms-tabs .item-room .text-room .buttons-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 25px;
  margin-top: 35px;
}
.rooms-tabs .item-room .text-room .buttons-end a {
  width: 50%;
}
.rooms-tabs .item-room .text-room .buttons-end .button-vinotinto {
  border: 1px solid #772011;
}
.rooms-tabs .roomThumbsSwiper {
  height: 500px;
}
.rooms-tabs .roomThumbsSwiper .thumb-img {
  border-radius: 5px;
  border: 1.5px solid #191919;
  height: 100%;
}
.rooms-tabs .roomThumbsSwiper .thumb-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 3px;
}
.rooms-tabs .roomGallerySwiper {
  height: 500px;
}
.rooms-tabs .roomGallerySwiper .principal-thumb {
  height: 100%;
  width: 100%;
}
.rooms-tabs .roomGallerySwiper .principal-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms-tabs .modal .modal-content {
  padding: 25px 30px;
  border-radius: 0;
}
.rooms-tabs .modal .modal-content .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.rooms-tabs .modal .modal-content .head-content .counter-current {
  font-size: 26px;
  font-weight: 700;
  color: #772011;
  padding-right: 10px;
}
.rooms-tabs .modal .modal-content .head-content .counter-total {
  font-size: 14px;
  padding-left: 10px;
  position: relative;
}
.rooms-tabs .modal .modal-content .head-content .counter-total:before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
}
.rooms-tabs .modal .modal-content .head-content .text-head {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #772011;
  margin-bottom: 20px;
}
.rooms-tabs .modal .modal-content .head-content .text-head h2 {
  font-weight: 500;
  font-size: 26px;
}
.rooms-tabs .modal .modal-content .head-content .text-head p {
  font-size: 12px;
  padding-left: 5px;
  font-weight: 600;
  margin: 0;
}
.rooms-tabs .swiper-button-prev, .rooms-tabs .swiper-button-next {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3.04px 9.11px 0 rgba(0, 0, 0, 0.2);
}
.rooms-tabs .swiper-button-prev svg, .rooms-tabs .swiper-button-next svg {
  display: none;
}
.rooms-tabs .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 991px) and (max-width: 1200px) {
  .rooms-tabs .content-tabs .nav-tabs .nav-item div {
    padding: 25px 60px;
  }
  .rooms-tabs .item-room .text-room .list-items .list {
    padding: 0 15px 0 10px;
  }
  .rooms-tabs .item-room .text-room .list-items .list:first-child {
    padding: 0 15px 0 0;
  }
}
@media (max-width: 991px) {
  .rooms-tabs .content-tabs .nav-tabs .nav-item div {
    padding: 10px 25px;
  }
  .rooms-tabs .content-tabs .nav-tabs .nav-item div h4 {
    font-size: 18px;
  }
  .rooms-tabs .item-room {
    margin-bottom: 40px;
  }
  .rooms-tabs .item-room .image-room img {
    min-height: 250px;
  }
  .rooms-tabs .item-room .text-room h3 {
    font-size: 20px;
  }
  .rooms-tabs .item-room .text-room .list-items .list {
    padding: 0 20px 0 15px;
  }
  .rooms-tabs .item-room .text-room .list-items .list:first-child {
    padding: 0 20px 0 0;
  }
  .rooms-tabs .item-room .text-room .list-items .list .text p {
    font-size: 14px;
  }
  .rooms-tabs .item-room .text-room .buttons-end {
    margin-top: 15px;
  }
  .rooms-tabs .item-room .text-room .buttons-end a {
    height: 45px;
  }
}

.banner-internal {
  padding: 45px 0 70px 0;
}
.banner-internal .breadcrumbs {
  position: relative;
  width: 100%;
}
.banner-internal .breadcrumbs:before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  height: 1px;
  width: 60%;
  background: #C7C6C6;
}
.banner-internal .breadcrumbs ul {
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F6E6E3;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
  border-radius: 7px;
  margin: 0 20px 20px 0;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-internal .breadcrumbs ul li {
  margin: 0 10px;
  position: relative;
}
.banner-internal .breadcrumbs ul li:before {
  content: "";
  position: absolute;
  right: -10px;
  top: 7px;
  height: 15px;
  width: 1px;
  background: #772011;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.banner-internal .breadcrumbs ul li:last-child:before {
  content: none;
}
.banner-internal .breadcrumbs ul li:last-child a {
  font-weight: 700;
}
.banner-internal .breadcrumbs ul li a {
  text-decoration: none;
  color: #444748;
  font-size: 14px;
}
.banner-internal .text-acro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 50px 25px 50px 0;
}
.banner-internal .text-acro span {
  font-size: 14px;
  color: #772011;
  font-weight: 600;
}
.banner-internal .text-acro h1 {
  font-size: 50px;
  font-weight: 400;
  margin: 8px 0 15px 0;
}
.banner-internal .text-acro p {
  color: #444748;
}
.banner-internal .text-acro .button-vinotinto {
  padding: 0 50px;
}
.banner-internal .room-info {
  border: 1px solid #EDDEDE;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 45px;
}
.banner-internal .room-info .room-info-tabs {
  border-bottom: 1px solid rgba(139, 36, 21, 0.2);
  display: none;
}
.banner-internal .room-info .room-info-tabs .nav-item {
  width: 50%;
}
.banner-internal .room-info .room-info-tabs .nav-item .nav-link {
  width: 100%;
  padding: 16px 10px;
  border: 0;
  border-radius: 0;
  color: #555;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.banner-internal .room-info .room-info-tabs .nav-item .active {
  color: #8b2415;
  background-color: #f8f2ef;
  font-weight: 600;
}
.banner-internal .room-info .room-info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-internal .room-info .room-info-content .tab-pane {
  display: block;
  padding: 25px 20px;
}
.banner-internal .room-info .room-info-content .tab-pane:first-child {
  border-right: 1px solid #EDDEDE;
}
.banner-internal .room-info .room-info-content .tab-pane h4 {
  margin-bottom: 18px;
  color: #8b2415;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Manrope", sans-serif;
}
.banner-internal .room-info .room-info-content .tab-pane ul {
  margin: 0;
  padding-left: 18px;
}
.banner-internal .room-info .room-info-content .tab-pane ul li {
  margin-bottom: 6px;
  color: #444748;
  font-size: 15px;
}
.banner-internal .room-info .fade:not(.show) {
  opacity: 1;
}
.banner-internal .room-info .fade {
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.banner-internal .acroGallerySwiper {
  margin-bottom: 15px;
}
.banner-internal .acroGallerySwiper .icon-expand {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-internal .acroGallerySwiper .swiper-wrapper {
  height: auto;
}
.banner-internal .acroGallerySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.banner-internal .acroGallerySwiper .acro-gallery-next, .banner-internal .acroGallerySwiper .acro-gallery-prev {
  color: #ffffff;
}
.banner-internal .acroThumbsSwiper {
  height: 100px;
}
.banner-internal .acroThumbsSwiper .swiper-slide .thumb-img {
  border-radius: 5px;
  height: 100%;
  cursor: pointer;
}
.banner-internal .acroThumbsSwiper .swiper-slide .thumb-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-internal .acroThumbsSwiper .swiper-slide-thumb-active .thumb-img {
  border: 1.5px solid #191919;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .banner-internal .text-acro {
    padding: 40px 0px;
  }
  .banner-internal .text-acro h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .banner-internal {
    padding: 120px 0 70px 0;
  }
  .banner-internal .ord-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .banner-internal .ord-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .banner-internal .breadcrumbs:before {
    content: none;
  }
  .banner-internal .breadcrumbs ul {
    margin: 0;
  }
  .banner-internal .breadcrumbs ul li a {
    display: block;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .banner-internal .text-acro {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner-internal .text-acro h1 {
    font-size: 35px;
  }
  .banner-internal .text-acro .button-vinotinto {
    width: 100%;
  }
  .banner-internal .room-info {
    margin: 35px 0;
  }
  .banner-internal .room-info .room-info-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px;
    border-bottom: none;
  }
  .banner-internal .room-info .room-info-tabs .nav-item .active {
    -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
    background: #ffffff;
    border-radius: 8px;
  }
  .banner-internal .room-info .room-info-content {
    display: block;
  }
  .banner-internal .room-info .room-info-content .tab-pane h4 {
    display: none;
  }
  .banner-internal .room-info .fade:not(.show) {
    opacity: 0;
    display: none;
  }
  .banner-internal .acroGallerySwiper {
    margin: 30px 0;
  }
  .banner-internal .acroGallerySwiper .icon-expand {
    display: none;
  }
  .banner-internal .acroThumbsSwiper {
    display: none;
  }
}

.classrooms {
  position: relative;
  padding: 60px 0;
}
.classrooms .tittle-classrooms {
  text-align: center;
  margin-bottom: 40px;
}
.classrooms .tittle-classrooms span {
  font-size: 14px;
  font-weight: 600;
  color: #772011;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.classrooms .tittle-classrooms h2 {
  font-size: 45px;
  font-weight: 400;
}
.classrooms .item-class {
  position: relative;
  margin-bottom: 50px;
}
.classrooms .item-class:hover .image-class {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.classrooms .item-class:hover .image-class img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.classrooms .item-class:hover .text-class ul li .icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.classrooms .item-class:before {
  content: "";
  position: absolute;
  width: 90%;
  height: calc(100% - 46px);
  top: 0;
  right: 0;
  border: 1px solid transparent;
  border-right-color: #B4B2B2;
  border-bottom-color: #B4B2B2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}
.classrooms .item-class .image-class {
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.classrooms .item-class .image-class img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.classrooms .item-class .image-class .gallery-hidden {
  display: none;
}
.classrooms .item-class .text-class {
  padding: 20px;
}
.classrooms .item-class .text-class h4 {
  font-size: 25px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.classrooms .item-class .text-class h4:before {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  bottom: 0;
  height: 1px;
  background: #772011;
}
.classrooms .item-class .text-class p {
  color: #444748;
}
.classrooms .item-class .text-class ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.classrooms .item-class .text-class ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.classrooms .item-class .text-class ul li:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 1px;
  height: 35px;
  background: #C3C2C2;
}
.classrooms .item-class .text-class ul li .icon {
  width: 35px;
  height: 35px;
  background: #F3EDEC;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 5px;
}
.classrooms .item-class .text-class ul li .icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.classrooms .item-class .text-class ul li .text p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.classrooms .item-class .text-class ul li .text span {
  font-size: 13px;
}
.classrooms .item-class .text-class ul li .text span strong {
  color: #772011;
}
.classrooms .item-class .text-class .content-button {
  position: relative;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .classrooms .item-class .text-class ul {
    gap: 5px;
  }
  .classrooms .item-class .text-class ul li {
    display: block;
  }
  .classrooms .item-class .text-class ul li:before {
    content: none;
  }
}
@media (max-width: 991px) {
  .classrooms .tittle-classrooms {
    text-align: left;
  }
  .classrooms .tittle-classrooms h2 {
    font-size: 35px;
  }
  .classrooms .item-class .text-class {
    padding: 20px 15px;
  }
  .classrooms .item-class .text-class h4 {
    font-size: 22px;
  }
  .classrooms .item-class .text-class ul {
    gap: 5px;
  }
  .classrooms .item-class .text-class ul li {
    display: block;
  }
  .classrooms .item-class .text-class ul li:before {
    content: none;
  }
  .classrooms .item-class .text-class ul li .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .classrooms .item-class .text-class ul li .icon img {
    max-width: 15px;
    max-height: 15px;
  }
}

.other-services {
  position: relative;
  padding: 80px 0 140px 0;
}
.other-services .item-service {
  background: #F3EDEC;
  margin-bottom: 50px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease;
  transition: -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  transition: transform 0.45s ease, box-shadow 0.45s ease, -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease;
}
.other-services .item-service:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
          box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.other-services .item-service:hover .text-service div {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.other-services .item-service:hover .text-service img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.other-services .item-service:hover .img-service img {
  -webkit-transform: scale(1.045);
          transform: scale(1.045);
}
.other-services .item-service .row {
  height: 100%;
}
.other-services .item-service .text-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 35px;
}
.other-services .item-service .text-service div {
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.other-services .item-service .text-service span {
  display: block;
  color: #772011;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px 0 20px 0;
}
.other-services .item-service .text-service h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}
.other-services .item-service .text-service p {
  font-size: 16px;
  color: #444748;
  line-height: 24px;
  margin: 0;
}
.other-services .item-service .text-service img {
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
.other-services .item-service .img-service img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .other-services .item-service .text-service {
    padding: 0 10px;
  }
  .other-services .item-service .text-service h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .other-services .item-service .row {
    height: auto;
  }
  .other-services .item-service .text-service {
    padding: 20px;
  }
  .other-services .item-service .img-service img {
    max-height: 270px;
    -o-object-position: 100% 25%;
       object-position: 100% 25%;
  }
}

.widget-internals .booking-widget {
  right: 10%;
}
@media (max-width: 991px) {
  .widget-internals .booking-widget {
    display: none;
  }
}

.live-medellin {
  position: relative;
  padding: 80px 0;
}
.live-medellin .text-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.live-medellin .text-live span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #772011;
}
.live-medellin .text-live h2 {
  font-size: 45px;
  font-weight: 400;
  margin: 15px 0 50px 0;
  position: relative;
}
.live-medellin .text-live h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 60px;
  height: 2px;
  background: #772011;
}
.live-medellin .image-live {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.live-medellin .image-live:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.live-medellin .image-live:hover .text-address {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.live-medellin .image-live:hover .text-address ul li .icon-address img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.live-medellin .image-live img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.live-medellin .image-live .text-address {
  background: #ffffff;
  position: absolute;
  right: -15%;
  top: 20%;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35px 100%, 0 calc(100% - 26px));
}
.live-medellin .image-live .text-address ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.live-medellin .image-live .text-address ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.live-medellin .image-live .text-address ul li:last-child {
  margin: 0;
}
.live-medellin .image-live .text-address ul li .icon-address {
  width: 40px;
  height: 40px;
  background: #F3EDEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
.live-medellin .image-live .text-address ul li .icon-address img {
  width: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.live-medellin .image-live .text-address ul li .text-list p {
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}
.live-medellin .image-live .text-address ul li .text-list span {
  font-size: 14px;
}
@media (min-width: 991px) and (max-width: 1600px) {
  .live-medellin .image-live .text-address {
    right: -20px;
  }
}
@media (max-width: 991px) {
  .live-medellin .text-live h2 {
    font-size: 35px;
  }
  .live-medellin .image-live {
    padding-bottom: 200px;
  }
  .live-medellin .image-live:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .live-medellin .image-live .text-address {
    width: 70%;
    right: 15%;
    top: 45%;
  }
}

.place-medellin {
  position: relative;
  padding: 80px 0;
  background: #F3EDEC;
}
.place-medellin .image-place {
  position: relative;
  left: -30%;
  width: 120%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.place-medellin .image-place:before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  background: #772011;
  width: 45%;
  height: 65%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.place-medellin .image-place:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.place-medellin .image-place:hover:before {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}
.place-medellin .image-place:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}
.place-medellin .image-place img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.place-medellin .text-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.place-medellin .text-place span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #772011;
}
.place-medellin .text-place h2 {
  font-size: 45px;
  font-weight: 400;
  margin: 15px 0 50px 0;
  position: relative;
}
.place-medellin .text-place h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 60px;
  height: 2px;
  background: #772011;
}
@media (max-width: 991px) {
  .place-medellin {
    padding: 50px 0 100px 0;
  }
  .place-medellin .ord-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .place-medellin .ord-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .place-medellin .text-place {
    padding-bottom: 40px;
  }
  .place-medellin .text-place h2 {
    font-size: 35px;
  }
  .place-medellin .image-place {
    left: 0;
    width: 100%;
  }
}

.all-needs {
  padding: 80px 0 60px 0;
}
.all-needs .tittle-all {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.all-needs .tittle-all:before {
  content: "";
  position: absolute;
  width: 100px;
  left: calc(50% - 50px);
  height: 2px;
  background: #772011;
  bottom: 15px;
}
.all-needs .tittle-all h2 {
  font-size: 32px;
  font-weight: 400;
}
.all-needs .list-icons {
  padding: 60px 0 0 0;
}
.all-needs .list-icons ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 20px;
}
.all-needs .list-icons ul li {
  width: 20%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0 0 30px 0;
}
.all-needs .list-icons ul li:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  background: #962b20;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.all-needs .list-icons ul li:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.all-needs .list-icons ul li:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.all-needs .list-icons ul li .icon-all {
  background: #F3EDEC;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
}
.all-needs .list-icons ul li p {
  margin: 15px 0;
  font-family: "Castoro", serif;
  font-weight: 700;
  font-size: 22px;
}
.all-needs .list-icons ul li span {
  color: #757575;
  line-height: 24px;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .all-needs .list-icons ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .all-needs .list-icons ul li {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .all-needs {
    padding: 40px 0;
  }
  .all-needs .tittle-all {
    width: 70%;
    margin: 0 auto;
  }
  .all-needs .tittle-all h2 {
    font-size: 26px;
  }
  .all-needs .list-icons ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .all-needs .list-icons ul li {
    width: auto;
  }
  .all-needs .list-icons ul li .icon-all {
    width: 55px;
    height: 55px;
  }
  .all-needs .list-icons ul li p {
    font-size: 20px;
  }
}

.the-hotel {
  position: relative;
}
.the-hotel .text-hotel {
  padding: 100px 0;
}
.the-hotel .text-hotel span {
  font-size: 14px;
  text-transform: uppercase;
  color: #772011;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.the-hotel .text-hotel h1 {
  font-size: 48px;
  font-weight: 400;
  margin: 25px 0 55px 0;
  position: relative;
}
.the-hotel .text-hotel h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 65px;
  height: 2px;
  background: #772011;
}
.the-hotel .text-hotel h1 em {
  color: #772011;
}
.the-hotel .image-hotel {
  height: 100%;
  margin: 0 0 0 auto;
  width: 90%;
  position: relative;
}
.the-hotel .image-hotel:hover:before {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}
.the-hotel .image-hotel:hover img {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}
.the-hotel .image-hotel:before {
  content: "";
  position: absolute;
  left: -7.5%;
  width: 10%;
  height: 70%;
  top: 15%;
  background: #772011;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.the-hotel .image-hotel img {
  width: 135%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .the-hotel {
    padding: 120px 0 30px 0;
  }
  .the-hotel .text-hotel {
    padding: 20px 0;
  }
  .the-hotel .text-hotel h1 {
    font-size: 35px;
  }
  .the-hotel .image-hotel {
    width: 100%;
  }
  .the-hotel .image-hotel img {
    width: 100%;
  }
}

.blog-section {
  padding: 120px 0;
}
.blog-section .tittle-blog h1 {
  font-size: 50px;
  font-weight: 400;
}
.blog-section .blog-categories {
  position: relative;
  padding: 7px;
  background: #F2F2F2;
}
.blog-section .blog-categories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blog-section .blog-categories ul li {
  padding: 0;
  text-align: center;
  width: 20%;
}
.blog-section .blog-categories ul li a {
  font-family: "Libre Caslon Text", serif;
  font-size: 16px;
  border: none;
  width: 100%;
  padding: 5px;
  text-decoration: none;
  display: block;
  color: #191919;
}
.blog-section .blog-categories ul li .is-active {
  background: #ffffff;
}
.blog-section #blog-grid {
  padding: 50px 0 0 0;
}
.blog-section #blog-grid .post-card {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 50px;
}
.blog-section #blog-grid .post-card:hover {
  padding: 0;
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.blog-section #blog-grid .post-card:hover .post-card__link h2 {
  padding: 25px 10px;
}
.blog-section #blog-grid .post-card:hover .post-card__link .post-card__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section #blog-grid .post-card:hover .post-card__link .post-card__meta {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.blog-section #blog-grid .post-card .post-card__link {
  text-decoration: none;
}
.blog-section #blog-grid .post-card .post-card__link .post-card__image-wrapper {
  position: relative;
  overflow: hidden;
}
.blog-section #blog-grid .post-card .post-card__link .post-card__image-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-section #blog-grid .post-card .post-card__link .post-card__meta {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #ffffff;
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-section #blog-grid .post-card .post-card__link .post-card__meta p {
  margin: 0;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding-right: 8px;
  border-right: 1px solid #772011;
}
.blog-section #blog-grid .post-card .post-card__link .post-card__meta span {
  font-size: 12px;
  padding-left: 8px;
  color: #808080;
}
.blog-section #blog-grid .post-card .post-card__link h2 {
  font-size: 22px;
  color: #191919;
  font-weight: 400;
  padding: 25px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .blog-section .tittle-blog {
    text-align: center;
    margin-bottom: 25px;
  }
  .blog-section .tittle-blog h1 {
    font-size: 35px;
  }
  .blog-section .blog-categories ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-section .blog-categories ul li {
    width: auto;
    margin: 0 15px;
  }
}

.internal-blog {
  padding: 50px 0;
  background: #F3EDEC;
}
.internal-blog .breadcrumbs {
  margin-bottom: 50px;
}
.internal-blog .breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.internal-blog .breadcrumbs ul li {
  color: #636363;
  font-size: 14px;
  padding: 0 12px;
  border-right: 1px solid #191919;
}
.internal-blog .breadcrumbs ul li:first-child {
  padding: 0 12px 0 0;
}
.internal-blog .breadcrumbs ul li:last-child {
  border: none;
  color: #191919;
  font-weight: 500;
  max-width: 40ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.internal-blog .breadcrumbs ul li a {
  text-decoration: none;
  color: #636363;
  font-size: 14px;
}
.internal-blog .content-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 120%;
  position: relative;
  z-index: 1;
}
.internal-blog .content-banner:hover .text-banner {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.internal-blog .content-banner .text-banner {
  background: #ffffff;
  border-left: 4px solid #772011;
  padding: 60px 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.internal-blog .content-banner .text-banner .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.internal-blog .content-banner .text-banner .dates .date {
  margin-right: 30px;
}
.internal-blog .content-banner .text-banner .dates .date p {
  color: #636363;
  margin: 0;
}
.internal-blog .content-banner .text-banner .dates .category {
  background: #e4e4e4;
  color: #191919;
  padding: 5px 10px;
  border-radius: 4px;
}
.internal-blog .content-banner .text-banner .dates .category p {
  margin: 0;
  font-weight: 600;
}
.internal-blog .content-banner .text-banner h1 {
  font-size: 45px;
  font-weight: 500;
}
.internal-blog .content-img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.internal-blog .content-img:hover {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.internal-blog .content-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.internal-blog .content-blog {
  position: relative;
}
.internal-blog .content-blog .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #A8A6A6;
  border-bottom: 1px solid #A8A6A6;
  padding: 25px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.internal-blog .content-blog .header-content .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.internal-blog .content-blog .header-content .profile .image-profile {
  margin-right: 20px;
}
.internal-blog .content-blog .header-content .profile .image-profile img {
  border-radius: 10px;
}
.internal-blog .content-blog .header-content .profile .text-profile p {
  margin: 0;
  font-weight: 700;
}
.internal-blog .content-blog .header-content .profile .text-profile span {
  color: #636363;
  font-size: 14px;
}
.internal-blog .content-blog .header-content .social-profile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.internal-blog .content-blog .header-content .social-profile ul li p {
  font-size: 16px;
  color: #636363;
  margin: 0;
}
.internal-blog .content-blog .header-content .social-profile ul li img {
  margin: 0 10px;
}
.internal-blog .content-blog .content-description {
  margin: 25px 0;
  padding-bottom: 50px;
  border-bottom: 1px solid #A8A6A6;
}
.internal-blog .content-blog .content-description .image-content {
  padding: 40px 0;
}
.internal-blog .content-blog .content-description .image-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .internal-blog .content-banner .text-banner {
    padding: 35px;
  }
  .internal-blog .content-banner .text-banner h1 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .internal-blog {
    padding: 120px 0;
  }
  .internal-blog .content-banner {
    width: 90%;
    margin: 0 auto;
  }
  .internal-blog .content-banner .text-banner {
    padding: 25px;
  }
  .internal-blog .content-banner .text-banner h1 {
    font-size: 24px;
  }
}

.suggested {
  padding: 50px 0 0 0;
  background: #F3EDEC;
}
.suggested .tittle-suggested {
  text-align: center;
  margin-bottom: 50px;
}
.suggested .tittle-suggested h2 {
  font-size: 40px;
  font-weight: 400;
}
.suggested .post-card {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 50px;
}
.suggested .post-card:hover {
  padding: 0;
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.suggested .post-card:hover .post-card__link h2 {
  padding: 25px 10px;
}
.suggested .post-card:hover .post-card__link .post-card__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.suggested .post-card:hover .post-card__link .post-card__meta {
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.suggested .post-card .post-card__link {
  text-decoration: none;
}
.suggested .post-card .post-card__link .post-card__image-wrapper {
  position: relative;
  overflow: hidden;
}
.suggested .post-card .post-card__link .post-card__image-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.suggested .post-card .post-card__link .post-card__meta {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #ffffff;
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.suggested .post-card .post-card__link .post-card__meta p {
  margin: 0;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding-right: 8px;
  border-right: 1px solid #772011;
}
.suggested .post-card .post-card__link .post-card__meta span {
  font-size: 12px;
  padding-left: 8px;
  color: #808080;
}
.suggested .post-card .post-card__link h2 {
  font-size: 22px;
  color: #191919;
  font-weight: 400;
  padding: 25px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .suggested .tittle-suggested h2 {
    font-size: 35px;
  }
}

.thanks {
  padding: 300px 0 200px 0;
}
.thanks .content-thanks {
  text-align: center;
}
.thanks .content-thanks h2 {
  font-size: 60px;
  margin-bottom: 50px;
}
.thanks .content-thanks .content-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks .content-thanks .content-buttons .button-cafe {
  margin: 0 20px;
}
.thanks .content-thanks .content-buttons .button-cafe:hover {
  border: 1px solid #191919;
}
@media (max-width: 768px) {
  .thanks {
    padding: 200px 0 100px 0;
  }
  .thanks .content-thanks h2 {
    font-size: 40px;
  }
  .thanks .content-thanks .content-buttons {
    display: block;
    padding: 0 20px;
  }
  .thanks .content-thanks .content-buttons .button-cafe {
    margin: 20px 0;
    width: 100%;
  }
}

.wpp-chat {
  position: fixed;
  bottom: 10px;
  right: 30px;
  z-index: 1000;
}
.wpp-chat img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.wpp-chat:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#map {
  width: 100%;
  height: 350px;
}
@media (max-width: 768px) {
  #map {
    width: 100%;
    z-index: 1;
  }
}

.form-talk {
  position: relative;
  width: 100%;
  padding: 60px 35px;
  z-index: 1;
  background: #ffffff;
}
.form-talk h2 {
  font-size: 26px;
  font-weight: 400;
  color: #191919;
  margin-bottom: 20px;
}
.form-talk form {
  margin: 0;
}
.form-talk .item-button {
  margin-top: 25px;
}
.form-talk .form-group {
  position: relative;
  margin-bottom: 18px;
}
.form-talk .form-group ::-webkit-input-placeholder {
  color: #696e72;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-moz-placeholder {
  color: #696e72;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group :-ms-input-placeholder {
  color: #696e72;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-ms-input-placeholder {
  color: #696e72;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::placeholder {
  color: #696e72;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group label {
  color: #191919;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
}
.form-talk .form-group textarea {
  height: 80px;
}
.form-talk .form-group input, .form-talk .form-group textarea {
  display: block;
  width: 100%;
  border-bottom: 1px solid #bababa;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  color: #54565a;
  padding-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.form-talk .form-group input:focus, .form-talk .form-group textarea:focus {
  outline: none;
}
.form-talk .form-group input:focus ~ label, .form-talk .form-group input:valid ~ label, .form-talk .form-group textarea:focus ~ label, .form-talk .form-group textarea:valid ~ label {
  top: -15px;
  font-size: 14px;
}
.form-talk .form-group .required:after {
  content: " *";
  color: #e53935;
  font-weight: bold;
}
.form-talk .form-group .highlight {
  position: absolute;
  height: 70%;
  width: 90%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.form-talk .form-group input:focus ~ .highlight, .form-talk .form-group textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.5s ease;
  animation: inputHighlighter 0.5s ease;
}
@-webkit-keyframes inputHighlighter {
  background: #772011;
  width: 0;
  background: transparent;
}
@keyframes inputHighlighter {
  from {
    background: #772011;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.form-talk input::-webkit-outer-spin-button, .form-talk input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-talk input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width: 768px) {
  .form-talk h2 {
    font-size: 22px;
  }
}

.booking-widget.is-active .booking-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.booking-widget {
  position: absolute;
  top: 45px;
  z-index: 50;
  right: 25px;
}
.booking-widget .reserve-btn {
  position: relative;
  z-index: 0;
  border: 0;
  background: #ffffff;
  color: #191919;
  padding: 18px 34px;
  font-size: 18px;
  cursor: pointer;
  padding: 14px 22px 14px 50px;
  font-size: 15px;
  width: auto;
  -webkit-box-shadow: 0 5.64px 11.28px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 5.64px 11.28px 0 rgba(0, 0, 0, 0.16);
}
.booking-widget .reserve-btn img {
  position: absolute;
  left: 15px;
  top: 15px;
}
.booking-widget .booking-panel {
  overflow-y: auto;
  background: #ffffff;
  color: #191919;
  -webkit-box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
          box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-18px) scale(0.96);
          transform: translateY(-18px) scale(0.96);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  position: fixed;
  top: 40px;
  right: 38px;
  height: auto;
  max-width: 450px;
  padding: 15px 20px;
}
.booking-widget .booking-panel__title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
.booking-widget .booking-panel__close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
}
.booking-widget .booking-calendar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.booking-widget .booking-calendar__header button {
  border: 0;
  background: transparent;
  font-size: 38px;
  cursor: pointer;
}
.booking-widget .booking-calendar__header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.booking-widget .booking-calendar__days,
.booking-widget .booking-calendar__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.booking-widget .booking-calendar__days {
  margin-bottom: 22px;
  color: #777;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 15px;
  letter-spacing: 1px;
}
.booking-widget .booking-calendar__grid {
  row-gap: 5px;
}
.booking-widget .calendar-day {
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  height: 40px;
  font-size: 20px;
  border: 0;
  color: #191919;
}
.booking-widget .calendar-day.is-muted {
  color: #cfcfcf;
  cursor: default;
}
.booking-widget .calendar-day.is-selected {
  background: #191919;
  color: #ffffff;
}
.booking-widget .calendar-day.is-in-range {
  background: #f2f2f2;
}
.booking-widget .booking-options {
  margin-top: 15px;
}
.booking-widget .booking-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.booking-widget .booking-row h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
}
.booking-widget .booking-row p {
  margin: 0;
  color: #555;
  font-size: 14px;
}
.booking-widget .booking-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.booking-widget .booking-counter span {
  min-width: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.booking-widget .counter-btn {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #777;
  font-size: 30px;
  cursor: pointer;
  width: 42px;
  height: 42px;
}
.booking-widget .booking-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.booking-widget .booking-footer p {
  margin: 0;
  max-width: 360px;
  color: #777;
  font-size: 15px;
  line-height: 1.25;
  width: 70%;
}
.booking-widget .booking-submit {
  height: auto;
  border: 0;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  width: auto;
  font-size: 16px;
  background: #772011;
  padding: 5px;
}
.booking-widget .booking-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .booking-widget {
    position: relative;
    top: 0;
    right: 0;
  }
  .booking-widget .booking-panel {
    top: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
  }
  .booking-widget .booking-calendar__header {
    margin: 0;
  }
  .booking-widget .booking-row {
    padding: 5px 0;
  }
  .booking-widget .calendar-day {
    height: 25px;
  }
}

.hotel {
  padding: 70px 0;
}
.hotel .hotel-gallery {
  --gap-gallery: 15px;
  --thumb-height: 180px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr) var(--gap-gallery) minmax(0, 1fr);
  grid-template-columns: repeat(8, minmax(0, 1fr));
  -ms-grid-rows: calc(var(--thumb-height) * 2 + var(--gap-gallery)) var(--gap-gallery) var(--thumb-height);
  grid-template-rows: calc(var(--thumb-height) * 2 + var(--gap-gallery)) var(--thumb-height);
  gap: var(--gap-gallery);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.hotel .hotel-gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.hotel .hotel-gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.hotel .hotel-gallery > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.hotel .hotel-gallery > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.hotel .hotel-gallery > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.hotel .hotel-gallery > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}
.hotel .hotel-gallery > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 13;
}
.hotel .hotel-gallery > *:nth-child(8) {
  -ms-grid-row: 1;
  -ms-grid-column: 15;
}
.hotel .hotel-gallery > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.hotel .hotel-gallery > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.hotel .hotel-gallery > *:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.hotel .hotel-gallery > *:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.hotel .hotel-gallery > *:nth-child(13) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}
.hotel .hotel-gallery > *:nth-child(14) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}
.hotel .hotel-gallery > *:nth-child(15) {
  -ms-grid-row: 3;
  -ms-grid-column: 13;
}
.hotel .hotel-gallery > *:nth-child(16) {
  -ms-grid-row: 3;
  -ms-grid-column: 15;
}
.hotel .hotel-gallery .hotel-gallery__content {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hotel .hotel-gallery .hotel-gallery__content span {
  color: #772011;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hotel .hotel-gallery .hotel-gallery__content h2 {
  font-size: 45px;
  font-weight: 500;
  margin: 0 0 24px;
}
.hotel .hotel-gallery .hotel-gallery__content p {
  font-size: 18px;
  color: #777;
}
.hotel .hotel-gallery .hotel-gallery__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 20px 0;
}
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-prev,
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(138, 31, 18, 0.25);
  border-radius: 50%;
  color: #8a1f12;
}
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-prev::after,
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-next::after {
  font-size: 18px;
}
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-prev svg,
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-next svg {
  display: none;
}
.hotel .hotel-gallery .hotel-gallery__arrows .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hotel .hotel-gallery .hotel-gallery__main {
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4/7;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  min-width: 0;
}
.hotel .hotel-gallery .hotelMainSwiper {
  width: 100%;
  height: 100%;
}
.hotel .hotel-gallery .hotelMainSwiper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}
.hotel .hotel-gallery .hotelMainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hotel .hotel-gallery .hotel-gallery__thumbs {
  display: contents;
}
.hotel .hotel-gallery .hotel-thumb {
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.hotel .hotel-gallery .hotel-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hotel .hotel-gallery .hotel-thumb:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.hotel .hotel-gallery .hotel-thumb:hover::before {
  opacity: 1;
}
.hotel .hotel-gallery .hotel-thumb.is-active {
  opacity: 0.45;
}
.hotel .hotel-gallery .hotel-gallery__content {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  min-width: 0;
}
.hotel .hotel-gallery .hotel-gallery__main {
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4/7;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  min-width: 0;
  overflow: hidden;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(1) {
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-column: 7/9;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  height: var(--thumb-height);
  -ms-grid-row-align: start;
      align-self: start;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(2) {
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-column: 7/9;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  height: var(--thumb-height);
  -ms-grid-row-align: end;
      align-self: end;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(4) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(5) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5/7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.hotel .hotel-gallery .hotel-thumb:nth-child(6) {
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-column: 7/9;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .hotel .hotel-gallery .hotel-gallery__content h2 {
    font-size: 40px;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .hotel .hotel-gallery .hotel-gallery__content h2 {
    font-size: 35px;
  }
  .hotel .hotel-gallery .hotel-gallery__content p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .hotel .hotel-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .hotel .hotel-gallery__content, .hotel .hotel-gallery__thumbs, .hotel .hotel-gallery__arrows {
    width: 100%;
    max-width: 100%;
    grid-column: auto;
    grid-row: auto;
  }
  .hotel .hotel-gallery .hotel-gallery__content {
    text-align: center;
  }
  .hotel .hotel-gallery .hotel-gallery__content h2 {
    font-size: 35px;
  }
  .hotel .hotel-gallery .hotel-gallery__content p {
    font-size: 16px;
  }
  .hotel .hotel-gallery .hotel-gallery__arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hotel .hotel-gallery .hotel-gallery__thumbs {
    display: none;
  }
}

.hotel-gallery-p {
  background: #fff;
  padding: 80px 0;
  position: relative;
}
.hotel-gallery-p .gallery-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 80px;
  padding: 0;
  border: 0;
  list-style: none;
}
.hotel-gallery-p .gallery-tabs .nav-item {
  margin: 0;
  padding: 0;
}
.hotel-gallery-p .gallery-tabs .nav-link {
  display: block;
  padding: 13px 24px;
  border: 1px solid #772011;
  border-radius: 0;
  background: #fff;
  color: #772011;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hotel-gallery-p .gallery-tabs .nav-link:hover {
  border-color: #772011;
  background: #772011;
  color: #fff;
}
.hotel-gallery-p .gallery-tabs .nav-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.hotel-gallery-p .gallery-tabs .nav-link.active {
  border-color: #772011;
  background: #772011;
  color: #fff;
}
.hotel-gallery-p .tab-content {
  position: relative;
  width: 100%;
}
.hotel-gallery-p .tab-pane {
  width: 100%;
}
.hotel-gallery-p .gallery-masonry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 6px;
  grid-auto-flow: dense;
  gap: 18px;
  width: 100%;
}
.hotel-gallery-p .gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -ms-grid-row-span: 14;
  grid-row: span 14;
}
.hotel-gallery-p .gallery-item:nth-child(12n+1) {
  -ms-grid-row-span: 18;
  grid-row: span 18;
}
.hotel-gallery-p .gallery-item:nth-child(12n+2) {
  -ms-grid-row-span: 13;
  grid-row: span 13;
}
.hotel-gallery-p .gallery-item:nth-child(12n+3) {
  -ms-grid-row-span: 15;
  grid-row: span 15;
}
.hotel-gallery-p .gallery-item:nth-child(12n+4) {
  -ms-grid-row-span: 12;
  grid-row: span 12;
}
.hotel-gallery-p .gallery-item:nth-child(12n+5) {
  -ms-grid-row-span: 17;
  grid-row: span 17;
}
.hotel-gallery-p .gallery-item:nth-child(12n+6) {
  -ms-grid-row-span: 11;
  grid-row: span 11;
}
.hotel-gallery-p .gallery-item:nth-child(12n+7) {
  -ms-grid-row-span: 14;
  grid-row: span 14;
}
.hotel-gallery-p .gallery-item:nth-child(12n+8) {
  -ms-grid-row-span: 18;
  grid-row: span 18;
}
.hotel-gallery-p .gallery-item:nth-child(12n+9) {
  -ms-grid-row-span: 12;
  grid-row: span 12;
}
.hotel-gallery-p .gallery-item:nth-child(12n+10) {
  -ms-grid-row-span: 16;
  grid-row: span 16;
}
.hotel-gallery-p .gallery-item:nth-child(12n+11) {
  -ms-grid-row-span: 13;
  grid-row: span 13;
}
.hotel-gallery-p .gallery-item:nth-child(12n+12) {
  -ms-grid-row-span: 17;
  grid-row: span 17;
}
.hotel-gallery-p .gallery-item.is-hidden {
  display: none;
}
.hotel-gallery-p .gallery-item.is-visible {
  -webkit-animation: galleryFadeIn 0.55s ease both;
          animation: galleryFadeIn 0.55s ease both;
}
.hotel-gallery-p .gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
  color: inherit;
  text-decoration: none;
}
.hotel-gallery-p .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.hotel-gallery-p .gallery-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 25px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(12, 12, 12, 0.78)), color-stop(34%, rgba(12, 12, 12, 0.32)), color-stop(60%, rgba(12, 12, 12, 0.06)), color-stop(76%, rgba(12, 12, 12, 0)));
  background: linear-gradient(to top, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.32) 34%, rgba(12, 12, 12, 0.06) 60%, rgba(12, 12, 12, 0) 76%);
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.hotel-gallery-p .gallery-title {
  max-width: calc(100% - 75px);
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.hotel-gallery-p .gallery-zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #772011;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.35s ease, background 0.3s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, background 0.3s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, -webkit-transform 0.35s ease;
}
.hotel-gallery-p .gallery-zoom svg {
  display: block;
  width: 21px;
  height: 21px;
}
.hotel-gallery-p .gallery-zoom:hover {
  background: #9c825f;
}
@media (hover: hover) {
  .hotel-gallery-p .gallery-card:hover img {
    -webkit-transform: scale(1.055);
            transform: scale(1.055);
  }
  .hotel-gallery-p .gallery-card:hover .gallery-overlay {
    opacity: 1;
  }
  .hotel-gallery-p .gallery-card:hover .gallery-title {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .hotel-gallery-p .gallery-card:hover .gallery-zoom {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes galleryFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes galleryFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .hotel-gallery-p .gallery-tabs {
    margin-bottom: 30px;
  }
  .hotel-gallery-p .gallery-masonry {
    -ms-grid-columns: minmax(0, 1fr) 14px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 6px;
    gap: 14px;
  }
  .hotel-gallery-p .gallery-item {
    -ms-grid-row-span: 14;
    grid-row: span 14;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+1) {
    -ms-grid-row-span: 17;
    grid-row: span 17;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+2) {
    -ms-grid-row-span: 12;
    grid-row: span 12;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+3) {
    -ms-grid-row-span: 15;
    grid-row: span 15;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+4) {
    -ms-grid-row-span: 13;
    grid-row: span 13;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+5) {
    -ms-grid-row-span: 17;
    grid-row: span 17;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+6) {
    -ms-grid-row-span: 12;
    grid-row: span 12;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+7) {
    -ms-grid-row-span: 15;
    grid-row: span 15;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+8) {
    -ms-grid-row-span: 13;
    grid-row: span 13;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+9) {
    -ms-grid-row-span: 17;
    grid-row: span 17;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+10) {
    -ms-grid-row-span: 12;
    grid-row: span 12;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+11) {
    -ms-grid-row-span: 15;
    grid-row: span 15;
  }
  .hotel-gallery-p .gallery-item:nth-child(12n+12) {
    -ms-grid-row-span: 13;
    grid-row: span 13;
  }
  .hotel-gallery-p .gallery-overlay {
    padding: 22px;
  }
  .hotel-gallery-p .gallery-title {
    font-size: 22px;
  }
  .hotel-gallery-p .gallery-zoom {
    -ms-flex-preferred-size: 46px;
        flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 575px) {
  .hotel-gallery-p .gallery-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .hotel-gallery-p .gallery-tabs::-webkit-scrollbar {
    display: none;
  }
  .hotel-gallery-p .gallery-tabs .nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .hotel-gallery-p .gallery-tabs .nav-link {
    padding: 11px 14px;
    font-size: 10px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
  .hotel-gallery-p .gallery-masonry {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .hotel-gallery-p .gallery-item {
    grid-row: auto;
  }
  .hotel-gallery-p .gallery-item:nth-child(n) {
    grid-row: auto;
  }
  .hotel-gallery-p .gallery-card {
    height: auto;
    aspect-ratio: 4/3;
  }
  .hotel-gallery-p .gallery-overlay {
    padding: 18px;
    opacity: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(12, 12, 12, 0.7)), color-stop(48%, rgba(12, 12, 12, 0.18)), color-stop(72%, rgba(12, 12, 12, 0)));
    background: linear-gradient(to top, rgba(12, 12, 12, 0.7) 0%, rgba(12, 12, 12, 0.18) 48%, rgba(12, 12, 12, 0) 72%);
  }
  .hotel-gallery-p .gallery-title {
    max-width: calc(100% - 60px);
    font-size: 20px;
    -webkit-transform: none;
            transform: none;
  }
  .hotel-gallery-p .gallery-zoom {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
    width: 42px;
    height: 42px;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .hotel-gallery-p .gallery-zoom svg {
    width: 19px;
    height: 19px;
  }
  .hotel-gallery-p .gallery-load-more {
    margin-top: 28px;
  }
  .hotel-gallery-p .gallery-load-more .gallery-load-more-btn {
    min-width: 150px;
    padding: 13px 22px;
  }
}