/* .single-hoteles .lineBox:before {
  top: 22vh;
  z-index: 9;
  width: 37%;
  right: 0;
  animation: moveX-right 5s linear infinite;
}

.single-hoteles .bannerDestiny:before {
  top: 12vh;
  right: 0px;
  width: 90%;
  z-index: 9;
  animation: moveX-right 4s linear infinite;
}

@keyframes moveX-right {
  0% {
    transform: translateX(0); 
  }
  50% {
    transform: translateX(
      6%
    ); 
  }
  100% {
    transform: translateX(
      0%
    ); 
  }
}
@keyframes moveX-left {
  0% {
    transform: translateX(0); 
  }
  50% {
    transform: translateX(
      -6%
    ); 
  }
  100% {
    transform: translateX(
      0%
    ); 
  }
}

.single-hoteles .bannerDestiny:after {
  bottom: 13vh;
  left: 0;
  width: 50%;
  z-index: 9;
  animation: moveX-left 5s linear infinite;
}

.single-hoteles .lineBox:before,
.single-hoteles .bannerDestiny:after,
.single-hoteles .bannerDestiny:before {
  content: "";
  background: var(--color-l-blue);
  position: absolute;
  height: 0px;
}

.single-hoteles .circle:before {
  content: "";
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: absolute;
  bottom: 62px;
  right: 40px;
  border: 1px dashed white;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg); 
  }
  100% {
    transform: rotate(
      360deg
    ); 
  }
} */

.single-hoteles .boxTitleDestiny .title {
  max-width: 800px;
}

p.p1 {
  margin-bottom: 0;
}

/* CAROUSEL HABITACIONES */
.swiperGalleryRooms.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiperGalleryRooms .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.swiperGalleryRooms .swiper-slide img {
  display: block;
  width: 100%;
}

.swiperGalleryRooms .swiper-slide.swiper-slide-active img,
.swiperGalleryRooms .swiper-slide.swiper-slide-prev img,
.swiperGalleryRooms .swiper-slide.swiper-slide-next img {
  object-fit: cover;
  transition: 0.3s;
}

.swiperGalleryRooms .swiper-slide.swiper-slide-active img {
  height: 400px;
}
.swiperGalleryRooms .swiper-slide.swiper-slide-prev img {
  height: 350px;
  margin-top: 8%;
}
.swiperGalleryRooms .swiper-slide.swiper-slide-next img {
  height: 220px;
  margin-top: 32%;
}

#rooms .slick-arrow {
  background: #6d813b80 !important;
  line-height: 1;
  margin: 0;
  border-radius: 50px;
  height: auto;
  width: auto;
  text-align: center;
  padding: 19px 20px;
}
#rooms .slick-prev:before,
#rooms .slick-next:before {
  opacity: 1;
  font-size: 2.4rem !important;
  font-family: sans-serif !important;
  position: absolute;
  color: var(--color-white);
}
#rooms .slick-prev:before {
  content: "«";
  top: -3px;
  left: 8px;
}
#rooms .slick-next:before {
  content: "»";
  top: -3px;
  left: 10px;
}

.rooms .col-b {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boxContentRoom {
  position: relative;
}
.boxContentRoom:before {
  content: "";
  background: #cee7db;
  height: 100%;
  width: 70%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.boxContentRoom .extract a.read-more,
.boxContentRestaurant .extract a.read-more {
  display: none;
}
.rooms .col-b .readmore a:hover,
.restaurants .readmore a:hover,
.boxServiceHotels .readmore a:hover,
.boxContentOtherHotels .readmore a:hover {
  transition: 0.2s;
  color: var(--color-black) !important;
}
.boxContentOtherHotels .stars {
  color: var(--color-yellow);
  text-align: center;
  font-size: 24px;
  letter-spacing: 5px;
}
/* END CAROUSEL HABITACIONES */

/* RESPONSIVE */
@media (max-width: 599px) {
  #rooms .slick-arrow {
    top: 490px;
    width: fit-content;
    background: none !important;
  }
  .swiperGalleryRooms > .swiper-wrapper {
    padding-bottom: 50px;
  }
  #rooms .slick-next {
    right: calc(50% - 50px);
  }

  #rooms .slick-prev {
    left: calc(50% - 50px);
  }
  #rooms .slick-next:before,
  #rooms .slick-prev:before {
    color: var(--color-green) !important;
  }
}
@media (max-width: 767px) {
  .single-hoteles .swiper-button-prev,
  .single-hoteles .swiper-button-next {
    margin-top: -60px;
  }

  .single-hoteles .boxTitleDestiny h1 {
    font-size: 3rem !important;
    line-height: 1.2;
  }

  .single-hoteles .circle:before {
    width: 26vw;
    height: 26vw;
  }

  .single-hoteles .boxTitleDestiny {
    padding: 0 10px;
  }
}
@media screen and (min-width: 992px) {
  #rooms .slick-arrow {
    top: 50%;
  }
  #rooms .slick-carousel .slick-prev,
  .single-hoteles .swiper-button-prev {
    left: 0;
  }
  #rooms .slick-carousel .slick-next,
  .single-hoteles .swiper-button-next {
    right: 0;
  }
}
