@font-face {
  font-family: 'roboto';
  /* Nombre que asignas a tu fuente */
  src: url('../../fonts/fonts/Roboto-Medium.ttf') format('truetype');
  /* Ruta a tu archivo .ttf */
  font-weight: normal;
  /* Puedes especificar weight y style si son relevantes */
  font-style: normal;
}

/* inicio slider y menú */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  color: white;
  z-index: 10;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  /* font-family: 'roboto', Arial, sans-serif; */
  font-family: 'Lato-Regular', sans-serif;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: #d5d8dad8;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
  transition: all 0.3s ease;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.current {
  opacity: 1;
}

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

/*Animaciones css menu responsive*/
@keyframes menu-desplegable {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
    height: 100px;
  }
}

.menu-desplegable {
  transform-origin: top;
  height: 70px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .nav-links {
    height: 0px;
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: rgba(90, 162, 168, 0.753);
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px;
    animation: menu-desplegable 0.6s forwards;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  /* .slide img {
    height: auto;
  } */
}

.btn-social {
  font-size: 24px;
  margin-right: 10px;
}

.btn-social:hover {
  opacity: 0.8;
}

.btn-facebook {
  background-color: #3b5998;
  color: #fff;
}

.btn-instagram {
  background-color: #e4405f;
  color: #fff;
}

.btn-youtube {
  background-color: #cd201f;
  color: #fff;
}

/* fin slider y menú */

/* inicio footer */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.m-footer-links__content {
  font-size: 0;
  padding: 32px 0 35px 0;
  position: relative;
}

.m-footer-links__logo {
  /* background-image: url("/static/svg/logo_blanco.svg"); */
  background-position: center;
  width: 118px;
  height: 48px;
  display: inline-block;
}

.m-footer-links__logo2 {
  /* background-image: url("/static/svg/logo_blanco.png"); */
  background-position: center;

  background-size: 100%;
  width: 80px;
  height: 48px;
  display: inline-block;
  margin-left: 20px;
}

.m-footer-links__text {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  color: #FFFFFF;
  /* font-weight: 100; */
  line-height: 1.4;
  padding: 0 20px;
  display: block;
  /* opacity: 0.5; */
}

.m-footer-links__link {
  display: block;
}

.m-footer-links__copy {
  font-size: 12px;
  color: #5aa1a8;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
}

.m-footer-links__list {
  margin: 0 -20px;
  text-align: right;
}

.m-footer-links__item {
  display: inline-block;
  vertical-align: middle;
}

.m-footer-links__item:hover .m-footer-links__text,
.m-footer-links__item:focus .m-footer-links__text {
  color: #fff;
  opacity: 1;
}

.m-footer-links__wrap-logo {
  position: absolute;
  left: 0;
  top: 13px;
}

.m-footer-links__wrap-list {
  padding-left: 300px;
}

.m-footer-links__wrap-copy {
  position: absolute;
  right: 0;
  top: 20px;
}

@media (max-width: 1259px) {
  .m-footer-links__wrap-list {
    padding-left: 235px;
  }

  .m-footer-links__list {
    margin: 0;
  }

}

@media (max-width: 969px) {
  .m-footer-links__content {
    text-align: center;
    padding: 0;
  }

  .m-footer-links__wrap-logo,
  .m-footer-links__wrap-copy {
    position: static;
  }

  .m-footer-links__wrap-logo {
    padding: 30px 0;
  }

  .m-footer-links__wrap-copy {
    padding: 35px 0;
  }

  .m-footer-links__logo {
    margin: 0 auto;
  }

  .m-footer-links__wrap-list {
    padding-left: 0;
    max-width: 505px;
    margin: 0 auto 40px;
  }

  .m-footer-links__list {
    margin: 0 -15px;
  }

  .m-footer-links__item {
    width: 50%;
    padding: 0 15px;
    text-align: center;
  }

  .m-footer-links__item:nth-child(1) .m-footer-links__link,
  .m-footer-links__item:nth-child(2) .m-footer-links__link {
    //border-top: 1px solid rgb(47 181 156 / 80%);;
  }

  .m-footer-links__item:nth-child(1) .m-footer-links__link {
    border-top: 1px solid rgb(47 181 156 / 80%);
    ;
  }

  .m-footer-links__text {
    padding: 15px 0;
  }

  .m-footer-links__link {
    border-bottom: 1px solid rgb(47 181 156 / 80%);
    ;
  }

  .m-footer-links__item {
    display: block;
    width: 100%;
  }

  .m-footer-links__logo2 {
    display: block;
    margin: 20px auto 0;
  }
}

@media (max-width: 599px) {
  .m-footer-links__content {
    padding: 0 30px;
  }

  .m-footer-links__item:nth-child(2) .m-footer-links__link {
    border-top: none;
  }

}

/* inicio footer */
.s-footer-info {
  background: #fff;
  z-index: 1;
  position: relative;
}

.m-footer-info__content {
  font-size: 0;
  margin-top: 50px;
}

.m-footer-info__list {
  margin: 0 -35px;
}

.m-footer-info__item {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  padding: 0 35px;
  position: relative;
}

.m-footer-info .m-footer-info-item {
  //border-top: 1px solid rgba(135,154,115,0.8);
}

.m-footer-info .m-footer-info__item:after {
  content: "";
  width: 1px;
  height: 118px;
  background-color: #5aa1a8;
  position: absolute;
  right: 0;
  top: 90px;
}

.m-footer-info__list .m-footer-info__item:last-child:after {
  content: none;
}

@media (min-width: 1260px) {
  .m-footer-info--hotel .m-footer-info__item {
    width: 20%;
  }

  .m-footer-info--hotel .m-footer-info__item:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100px;
    background-color: rgba(135, 154, 115, 0.8);
    ;
    right: 0;
    top: 95px;
  }

  .m-footer-info--hotel .m-footer-info__item:last-child:after {
    display: none;
  }

  .m-footer-info--hotel .m-footer-info-item {
    border-top: 0;
  }
}

@media (min-width: 1260px) and (max-width: 1389px) {
  .m-footer-info--hotel .m-footer-info__list {
    margin: 0 -30px;
  }

  .m-footer-info--hotel .m-footer-info__item {
    padding: 0 30px;
  }
}

@media (max-width: 1259px) {
  .m-footer-info__list {
    margin: 0 -24px;
  }

  .m-footer-info__item {
    padding: 0 24px;
  }
}

@media (min-width: 970px) and (max-width: 1259px) {
  .m-footer-info--hotel .m-footer-info__content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .m-footer-info--hotel .m-footer-info__list {
    margin: 0 -30px;
  }

  .m-footer-info--hotel .m-footer-info__item {
    width: 33.3333%;
    padding: 0 30px;
  }

  .m-footer-info--hotel .m-footer-info__item:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100px;
    background-color: rgba(135, 154, 115, 0.8);
    ;
    right: 0;
    top: 95px;
  }

  .m-footer-info--hotel .m-footer-info__item:nth-child(3):after {
    display: none;
  }

  .m-footer-info--hotel .m-footer-info__item:nth-child(4):before {
    content: '';
    display: block;
    position: absolute;
    width: calc(300% - 60px);
    height: 1px;
    background-color: rgba(135, 154, 115, 0.8);
    ;
    left: 30px;
    top: 0;
  }

  .m-footer-info--hotel .m-footer-info__item:nth-child(4),
  .m-footer-info--hotel .m-footer-info__item:nth-child(5) {
    margin-top: 20px;
  }

  .m-footer-info--hotel .m-footer-info-item {
    border-top: 0;
  }
}

@media (max-width: 969px) {
  .m-footer-info__content {
    text-align: center;
    max-width: 505px;
    margin: 0 auto;
  }

  .m-footer-info__list {
    margin: 0;
  }

  .m-footer-info__item {
    width: 50%;
    padding: 0;
    border-top: 1px solid rgba(135, 154, 115, 0.8);
    ;
    position: relative;
  }

  .m-footer-info__item:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 150px;
    background-color: rgba(135, 154, 115, 0.8);
    ;
    right: 0;
    top: 70px;
  }

  .m-footer-info__item:nth-child(1),
  .m-footer-info__item:nth-child(2) {
    border-top: 0;
  }

  .m-footer-info__item:nth-child(2):after,
  .m-footer-info__item:last-child:after {
    display: none;
  }

  .m-footer-info .m-footer-info-item {
    border-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 969px) {
  .m-footer-info--hotel .m-footer-info__item:nth-child(4):after {
    display: none;
  }

  .m-footer-info--hotel .m-footer-info__item:last-child {
    width: 100%;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .m-footer-info--hotel .m-footer-info__item:nth-child(4):after {
    display: none;
  }

  .m-footer-info--hotel .m-footer-info__item:last-child {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .m-footer-info__item {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(135, 154, 115, 0.8);
    ;
    border-top: 0;
  }

  .m-footer-info__item:after {
    display: none;
  }

  .m-footer-info__item:last-child {
    border-bottom: 0;
  }
}

.m-footer-info-item {
  max-width: 250px;
}

.m-footer-info-item__content {
  padding-top: 10px;
  padding: 10px 0 35px 0;
}

.m-footer-info-item__title {
  font-size: 14px;
  color: #5aa1a8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Lato-Regular', sans-serif;
  line-height: 1.4;
}

.m-footer-info-item__wrap-title {
  padding: 30px 0;
  position: relative;
}

.m-footer-info-item__wrap-title:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #9BBDA7;
  font-size: 18px;
}

.m-footer-info-item__text,
.m-footer-info-item p {
  font-size: 13px;
  color: #171420;
  line-height: 21px;
  font-weight: 400;
}

.m-footer-info-item__wrap-btn {
  height: 28px;
  margin-top: 25px;
}

.m-footer-info-item__wrap-btn .btn-circle--plus {
  border-color: #9BBDA7;
}

.m-footer-info-item__wrap-btn .btn-circle--plus:after {
  color: #5aa1a8;
}

.m-footer-info-item__wrap-btn .btn-main {
  display: none;
  min-width: 160px;
}

.m-footer-info-item:hover .m-footer-info-item__wrap-btn .btn-main,
.m-footer-info-item:focus .m-footer-info-item__wrap-btn .btn-main {
  display: inline-block;
}

.m-footer-info-item:hover .m-footer-info-item__wrap-btn .btn-circle,
.m-footer-info-item:focus .m-footer-info-item__wrap-btn .btn-circle {
  display: none;
}

.m-footer-info-item--location .m-footer-info-item__wrap-title:after {
  content: '\e907';
}

.m-footer-info-item--faq .m-footer-info-item__wrap-title:after {
  //content: '\e90c';
}

.m-footer-info-item--follow .m-footer-info-item__wrap-links {
  padding-top: 15px;
}

.m-footer-info-item--follow .m-footer-info-item__wrap-title:after {
  content: '\e904';
}

.m-footer-info-item--partners .m-footer-info-item__wrap-title:after {
  content: '\e906';
}

.m-footer-info-item--certificate .m-footer-info-item__wrap-title:after {
  content: '\e910';
}

@media (max-width: 969px) {
  .m-footer-info-item {
    margin: 0 auto;
  }

  .m-footer-info-item__content {
    padding: 40px 0;
  }

  .m-footer-info-item__wrap-text {
    max-width: 180px;
    margin: 0 auto;
  }

  .m-footer-info-item__wrap-title:after {
    right: 50%;
    top: 3px;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .m-footer-info-item__wrap-btn .btn-main {
    display: inline-block;
  }

  .m-footer-info-item__wrap-btn .btn-circle {
    display: none;
  }
}

.m-footer-info-slider {
  max-width: 152px;
  margin: 0 auto;
}

.m-footer-info-slider__content {
  font-size: 0;
}

.m-footer-info-slider__wrap-img {
  width: 150px;
  height: 125px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.m-footer-info-slider__wrap-img:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.m-footer-info-slider__img {
  display: inline-block !important;
  vertical-align: middle;
}

.m-footer-info-slider__wrap-controls {
  text-align: center;
  padding: 14px 0;
}

.m-footer-info-slider .btn-circle {
  margin: 0 4px;
}

.m-social-links__content {
  font-size: 0;
}

.m-social-links__list {
  margin: -6px;
}

.m-social-links__item {
  display: inline-block;
  vertical-align: middle;
  padding: 3px;
}

@media (max-width: 1259px) {
  .m-footer-info .m-social-links {
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
  }

  .m-footer-info .m-social-links__item {
    width: 50%;
  }
}

@media (min-width: 1260px) and (max-width: 1389px) {
  .m-footer-info--hotel .m-social-links {
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
  }

  .m-footer-info--hotel .m-social-links__item {
    width: 50%;
  }
}

.m-footer-hotel-info__content {
  font-size: 0;
}

.m-footer-hotel-info__wrap-title {
  padding: 70px 0 20px 0;
}

.m-footer-hotel-info__title {
  font-size: 30px;
  text-transform: uppercase;
  font-family: 'Lato-Light', sans-serif;
  color: #5aa1a8;
}

.m-footer-hotel-info__list {
  margin: 0 -35px;
}

.m-footer-hotel-info__item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  padding: 0 35px;
}

@media (max-width: 1259px) {
  .m-footer-hotel-info__list {
    margin: 0 -24px;
  }

  .m-footer-hotel-info__item {
    padding: 0 24px;
  }
}

@media (max-width: 969px) {
  .m-footer-hotel-info__content {
    max-width: 505px;
    margin: 0 auto;
  }

  .m-footer-hotel-info__wrap-title {
    padding-top: 0;
    border-bottom: 1px solid rgba(135, 154, 115, 0.8);
    ;
    text-align: center;
    padding-bottom: 40px;
  }

  .m-footer-hotel-info__list {
    margin: 0;
  }

  .m-footer-hotel-info__item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(135, 154, 115, 0.8);
    ;
  }

  .m-footer-info .m-social-links__item {
    width: 33.333%;
  }

  .m-footer-info .m-social-links {
    max-width: 150px;
  }
}

@media (max-width: 599px) {
  .m-footer-hotel-info__title {
    line-height: 1.3;
    font-size: 28px;
  }
}

.m-footer-hotel-info-item {
  max-width: 190px;
}

.m-footer-hotel-info-item__content {
  font-size: 0;
  padding-bottom: 35px;
}

.m-footer-hotel-info-item__title {
  font-size: 16px;
  color: #171420;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.2px;
  padding: 25px 0;
}

.m-footer-hotel-info-item__text,
.m-footer-hotel-info-item p {
  font-size: 13px;
  color: #171420;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

.m-footer-hotel-info-item__wrap-btn {
  height: 28px;
  margin-top: 25px;
}

.m-footer-hotel-info-item .btn-main {
  display: none;
  min-width: 160px;
}

.m-footer-hotel-info-item:hover .btn-main,
.m-footer-hotel-info-item:focus .btn-main {
  display: inline-block;
}

.m-footer-hotel-info-item:hover .btn-circle,
.m-footer-hotel-info-item:focus .btn-circle {
  display: none;
}

@media (max-width: 969px) {
  .m-footer-hotel-info-item {
    max-width: 100%;
  }

  .m-footer-hotel-info-item__content {
    padding-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .m-footer-hotel-info-item__wrap-title {
    position: relative;
    cursor: pointer;
  }

  .m-footer-hotel-info-item__wrap-title:after {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e90b';
    font-size: 20px;
    color: #171420;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
  }

  .m-footer-hotel-info-item__wrap-text {
    display: none;
    padding-bottom: 20px;
  }

  .m-footer-hotel-info-item__text,
  .m-footer-hotel-info-item__wrap-btn {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
  }

  .m-footer-hotel-info-item__wrap-btn {
    margin: 0;
    text-align: right;
  }

  .m-footer-hotel-info-item .btn-circle {
    display: none;
  }

  .m-footer-hotel-info-item .btn-main {
    display: inline-block;
  }

  .m-footer-hotel-info-item.active .m-footer-hotel-info-item__wrap-text {
    display: block;
  }

  .m-footer-hotel-info-item.active .m-footer-hotel-info-item__wrap-title:after {
    content: '\e908';
  }
}

@media (max-width: 599px) {
  .m-footer-hotel-info-item__title {
    font-size: 15px;
  }

  .m-footer-hotel-info-item__text,
  .m-footer-hotel-info-item__wrap-btn {
    display: block;
    width: 100%;
  }

  .m-footer-hotel-info-item__wrap-btn {
    text-align: left;
    padding-top: 20px;
    height: auto;
  }
}

.m-floating {
  max-width: 410px;
}

.m-floating__content {
  font-size: 0;
}

.m-floating__item {
  padding: 5px 10px;
  height: 170px;
}

.m-floating__item:after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  background-color: #00f;
  vertical-align: middle;
}

.m-floating__item .m-floating-item {
  display: inline-block;
  vertical-align: middle;
  margin-top: 30px;
}

.m-floating-item {
  max-width: 380px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  width: 100%;
  background-color: #fff;
}

.m-floating-item__wrapper {
  display: table;
  width: 100%;
  min-height: 100px;
}

.m-floating-item__content {
  font-size: 0;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  padding: 15px 50px 15px 15px;
  position: relative;
}

.m-floating-item__title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(135, 154, 115, 0.7);
  line-height: 1.4;
}

.m-floating-item__text {
  font-size: 15px;
  color: #5aa1a8;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.4px;
  padding: 3px 0;
  font-weight: 400;
}

.m-floating-item__icon {
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}

.m-floating-item__icon:before {
  position: absolute;
  font-family: 'c2t' !important;
  left: 50%;
  top: 50%;
  font-size: 45px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: rgba(135, 154, 115, 0.3);
}

.m-floating-item__wrap-icon {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
}

.m-floating-item__wrap-text {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 50px);
  padding-left: 20px;
}

.m-floating-item__wrap-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) translateZ(0);
  -moz-transform: translateY(-50%) translateZ(0);
  -o-transform: translateY(-50%) translateZ(0);
  -ms-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
}

.m-floating-item__wrap-btn:hover .m-floating-item__tooltip,
.m-floating-item__wrap-btn:focus .m-floating-item__tooltip {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  top: -36px;
}

.m-floating-item__tooltip {
  font-size: 11px;
  text-transform: uppercase;
  background-color: #5aa1a8;
  color: #fff;
  letter-spacing: 0.8px;
  font-weight: 400;
  line-height: 25px;
  padding: 0 15px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
  -moz-transform: translateX(-50%) translateZ(0);
  -o-transform: translateX(-50%) translateZ(0);
  -ms-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  top: -26px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.m-floating-item__tooltip:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: #5aa1a8 transparent transparent transparent;
  left: calc(50% - 5px);
}

.m-banner-item {
  display: block;
  margin-top: 80px;
}

.m-banner-item__content {
  position: relative;
}

.m-banner-item__wrap-img {
  width: 100%;
  height: 440px;
}

.m-banner-item__img {
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.m-banner-item__title {
  font-size: 57px;
  font-family: 'Lato-Light', sans-serif;
  font-weight: 100;
  line-height: 66px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.m-banner-item__title.verde {
  color: #4D692F;
  margin-bottom: 25px;
}

.m-banner-item__subtitle {
  font-family: 'Lato-Regular', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 19px;
  letter-spacing: 1px;
  font-weight: normal;
  padding: 5px 0;
  color: #fff;
}

.m-banner-item__subtitle.verde {
  color: #4D692F;
}

.m-banner-item__wrap-btn {
  padding-top: 25px;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: opacity 0.3s, margin 0.3s;
  -moz-transition: opacity 0.3s, margin 0.3s;
  -o-transition: opacity 0.3s, margin 0.3s;
  -ms-transition: opacity 0.3s, margin 0.3s;
  transition: opacity 0.3s, margin 0.3s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  visibility: hidden;
  margin-top: 20px;
}

.m-banner-item__wrap-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
  -moz-transform: translateY(-50%) translateZ(0);
  -o-transform: translateY(-50%) translateZ(0);
  -ms-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
  left: 68px;
}

.m-banner-item .btn-main--default {
  display: none;
}

.m-banner-item__wrap-btn.verde .btn-main--transparent {
  border-color: #115939;
  opacity: 1;
}

.m-banner-item__wrap-btn.verde .btn-main--transparent .btn-main__text {
  color: #4D692F;
}

.m-banner-item__wrap-btn.verde .btn-main--transparent:hover {
  background-color: #5aa1a8;
  opacity: 1;
  border-color: #5aa1a8;
}

.m-banner-item__wrap-btn .btn-main--transparent:hover {
  background-color: #5aa1a8;
  opacity: 1;
  border-color: #5aa1a8;
}

.m-banner-item__wrap-btn .btn-main--transparent:hover .btn-main__text {
  color: #fff;
}

@media (min-width: 970px) {

  .m-banner-item:hover .m-banner-item__wrap-btn,
  .m-banner-item:focus .m-banner-item__wrap-btn {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    visibility: initial;
    margin-top: 0;
  }
}

@media (max-width: 1389px) {
  .m-banner-item__title {
    font-size: 55px;
  }
}

@media (max-width: 1259px) {
  .m-banner-item__wrap-img {
    width: 100%;
    height: 380px;
  }
}

@media (max-width: 969px) {
  .m-banner-item__title {
    font-size: 40px;
    color: #5aa1a8;
    font-family: 'Lato-Light', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 10px 0;
    max-width: 390px;
    margin: 0 auto;
  }

  .m-banner-item__title br {
    display: none;
  }

  .m-banner-item__subtitle {
    font-size: 14px;
    color: #5aa1a8;
    max-width: 390px;
    margin: 0 auto;
  }

  .m-banner-item__cover {
    padding: 20px 40px;
    border: 1px solid rgba(135, 154, 115, 0.8);
    ;
    border-top: 0;
    text-align: center;
  }

  .m-banner-item__wrap-text {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    position: static;
    padding: 0 80px;
  }

  .m-banner-item__wrap-btn {
    position: static;
    visibility: initial;
    opacity: 1;
    -ms-filter: none;
    filter: none;
    margin: 0;
    padding: 30px 0 10px 0;
  }

  .m-banner-item .btn-main--transparent {
    display: none;
  }

  .m-banner-item .btn-main--default {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .m-banner-item__wrap-img {
    width: 100%;
    height: 290px;
  }

  .m-banner-item__wrap-text {
    padding: 0 40px;
  }
}

@media (max-width: 599px) {
  .m-banner-item__wrap-img {
    width: 100%;
    height: 180px;
  }

  .m-banner-item__title {
    font-size: 35px;
  }

  .m-banner-item__subtitle {
    padding: 5px 20px;
  }

  .m-banner-item__cover {
    padding: 20px 15px;
  }

  .m-banner-item__wrap-text {
    padding: 0 20px;
  }

  .m-banner-item__wrap-btn {
    padding-top: 15px;
  }
}

.m-offer-small {
  max-width: 184px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.m-offer-small__content {
  padding: 8px;
  text-align: center;
  position: relative;
}

.m-offer-small__subtitle {
  font-family: 'Lato-Light', sans-serif;
  font-size: 10px;
  color: #9BBDA7;
  text-transform: uppercase;
  line-height: 12px;
  letter-spacing: 0.4px;
  padding-bottom: 5px;
}

.m-offer-small__title {
  font-size: 16px;
  color: #869971;
  line-height: 19px;
  font-family: 'Lato-Light', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  margin: 5px 0 9px 0;
}

.m-offer-small__title:after,
.m-offer-small__title:before {
  content: '';
  display: block;
  position: absolute;
  width: 74px;
  height: 1px;
  background-color: #9BBDA7;
  ;
  left: calc(50% - 37px);
}

.m-offer-small__title:after {
  top: 0;
}

.m-offer-small__title:before {
  bottom: 0;
}

.m-offer-small__wrap-img {
  width: 100%;
  height: 130px;
}

.m-offer-small__img {
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.m-offer-small__wrap-btn-close {
  position: absolute;
  bottom: 100%;
  margin-bottom: -8px;
  right: 8px;
  width: 140px;
  text-align: right;
}

.m-offer-small__wrap-btn {
  padding-top: 9px;
}

.m-offer-small__wrap-text {
  padding: 9px;
}

.m-offer-small__wrap-price {
  padding: 2px 0;
}

.m-offer-small .btn-main {
  min-width: 120px;
  border: 0;
}

.m-offer-small .btn-main:hover {
  opacity: 0.7;
}

.m-price {
  display: inline-block;
  vertical-align: middle;
}

.m-price__content {
  text-align: center;
  padding: 10px;
  border: 1px solid #fff;
  min-width: 84px;
}

.m-price__since {
  font-size: 10px;
  font-family: 'Lato-light', sans-serif;
  text-transform: uppercase;
  color: #9BBDA7;
  letter-spacing: 0.4px;
  line-height: 12px;
}

.m-price__value {
  font-size: 62px;
  font-family: 'BodoniMT', sans-serif;
  font-weight: 600;
  line-height: 27px;
  color: #5aa1a8;
}

.m-price__currency {
  font-size: 10px;
  font-family: 'Lato-light', sans-serif;
  text-transform: uppercase;
  color: #9BBDA7;
  letter-spacing: 0.4px;
  line-height: 12px;
}

.m-price--small-offer .m-price__content {
  border: 0;
  min-width: 75px;
  padding: 0;
}

.m-price--small-offer .m-price__since {
  color: #9BBDA7;
}

.m-price--small-offer .m-price__value {
  line-height: 57px;
  color: #5aa1a8;
  font-size: 62px;
}

.m-price--small-offer .m-price__currency {
  color: #9BBDA7;
}

.m-price--percent .m-price__content {
  min-height: 112px;
  padding: 7px;
  padding-top: 30px;
}

.m-price--percent .m-price__value {
  line-height: 1.25;
}

.m-price--percent .m-price__value span {
  font-size: 28px;
}

.m-price--percent .m-price__text {
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.m-price--offer-card .m-price__content {
  min-width: 120px;
  padding: 20px 10px;
  border-color: rgba(135, 154, 115, 0.5);
}

.m-price--offer-card .m-price__value {
  font-size: 60px;
  color: #5aa1a8;
  ;
  line-height: 1.2;
}

.m-price--offer-card .m-price__currency,
.m-price--offer-card .m-price__since {
  color: rgba(135, 154, 115, 0.5);
  font-size: 13px;
}

.m-home-hotel-slider__item {
  border: 1px solid #fff;
}

.m-home-hotel-slider .btn-slide-control {
  position: absolute;
  z-index: 1;
  top: calc(50% - 88px);
  margin-top: -35px;
}

.m-home-hotel-slider .btn-slide-control--prev {
  right: 0;
}

.m-home-hotel-slider .btn-slide-control--next {
  left: 0;
}

.m-home-hotel-slider .btn-slide-control__btn:after {
  color: #9BBDA7;
}

.m-home-hotel-item {
  display: block;
  cursor: pointer;
  margin: 0 auto;
}

.m-home-hotel-item__content {
  text-align: center;
}

.m-home-hotel-item__wrap-img {
  position: relative;
  padding-top: 92.85714285714286%;
}

.m-home-hotel-item__img {
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.m-home-hotel-item__wrap-icon {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -21.5px;
  margin-top: -21.5px;
}

.m-home-hotel-item__wrap-text {
  padding: 15px 5px;
}

.m-home-hotel-item__title {
  font-size: 25px;
  color: #5aa1a8;
  font-family: 'Lato-Light', sans-serif;
  text-transform: uppercase;
  padding: 8px 0;
}

.m-home-hotel-item__subtitle {
  font-family: 'Lato-Light', sans-serif;
  font-size: 15px;
  color: #171420;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.m-home-hotel-item__wrap-btn {
  padding-top: 20px;
  position: relative;
  top: -20px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.m-home-hotel-item .btn-main {
  min-width: 170px;
}

.m-home-hotel-item:hover .m-home-hotel-item__wrap-btn,
.m-home-hotel-item:focus .m-home-hotel-item__wrap-btn {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  top: 0;
}

.m-home-hotel-item:hover .m-home-hotel-item__wrap-btn .btn-main {
  border: 1px solid #5aa1a8;
  opacity: 1;
  min-width: 120px;
}

@media (max-width: 969px) {
  .m-home-hotel-item__wrap-btn {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    top: 0;
  }
}

.m-hotel-map--bahia-san-antonio {
  background-image: url("/static/img/sprite.png");
  background-position: 0px 0px;
  width: 220px;
  height: 148px;
}

.m-hotel-map--santa-eulalia-rio {
  background-image: url("/static/img/sprite.png");
  background-position: 0px -148px;
  width: 202px;
  height: 137px;
}

.m-hotel-map--santa-eulalia {
  background-image: url("/static/img/sprite.png");
  background-position: -220px 0px;
  width: 219px;
  height: 137px;
}

/* Sections */
.s-main-container--home {
  height: 100%;
}

.s-main-container--site {
  //padding-top: 86px;
  padding-top: 75px;
}

@media (max-width: 1259px) {
  .s-main-container--site {
    padding-top: 75px;
  }
}

.s-cookies {
  position: fixed;
  z-index: 50;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.s-cookies.active {
  display: none;
}

.s-nav {
  z-index: 30;
  width: 100%;
  top: 0;
  left: 0;
}

.s-nav--home {
  position: absolute;
  /* background: -moz-linear-gradient(top, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0) 100%);  
background: -webkit-linear-gradient(top, rgba(0,0,0,0.60) 0%,rgba(0,0,0,0) 100%);  
background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%,rgba(0,0,0,0) 100%);  
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );  
*/
}

.s-nav--site {
  position: fixed;
}

@media (max-width: 969px) {
  .s-nav {
    position: absolute;
  }
}

.s-hotel-nav {
  z-index: 20;
  width: 100%;
  top: 86px;
  left: 0;
  position: fixed;
}

@media (max-width: 1259px) {
  .s-hotel-nav {
    top: 75px;
  }
}

@media (max-width: 969px) {
  .s-hotel-nav {
    position: static;
  }
}

.s-main-slider--home {
  height: 100%;
}

.s-main-slider--home .wrapper,
.s-main-slider--home .container {
  height: 100%;
}

.s-main-slider--hotel {
  //padding-top: 60px;
  position: relative;
}

.s-main-slider .m-floating {
  position: absolute;
  top: 60px;
  left: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.s-main-slider .btn-floating-toggle {
  position: absolute;
  top: 194px;
  left: 0px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.s-main-slider.active-advantages .m-floating {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.s-main-slider.active-advantages .btn-floating-toggle {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

@media (max-width: 1259px) {
  .s-main-slider .m-floating {
    left: 20px;
  }

  .m-book-toggle__text {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

@media (max-width: 969px) {
  .s-main-slider--home {
    height: auto;
  }

  .s-main-slider--hotel {
    padding-top: 0;
  }

  .s-main-slider .btn-floating-toggle,
  .s-main-slider .m-floating {
    display: none;
  }
}

@media (min-width: 970px) and (max-width: 1259px) {
  .site.s-book-form .container {
    height: auto !important;
    position: static !important;
    opacity: 1;
    -ms-filter: none;
    filter: none;
    width: 100%;
  }

  .site.s-book-form .m-book-form {
    position: static !important;
    margin-top: auto !important;
    display: none;
  }

  .site.s-book-form .m-book-toggle {
    display: block;
  }

}

@media (max-width: 969px) {
  .site.s-book-form .m-book-form {
    display: none;
  }

  .site.s-book-form .m-book-toggle {
    display: block;
  }

}

.s-book-form .wrapper {
  position: relative;
  //max-width: 100%;
}

.s-book-form .container {
  position: absolute;
  right: 0;
  width: 230px;
  z-index: 10;
  -webkit-transition: opacity 1.5s;
  -moz-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  -ms-transition: opacity 1.5s;
  transition: opacity 1.5s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.s-book-form .m-book-form {
  position: fixed;
  top: 50%;
}

.s-book-form .m-book-form.stuck-down {
  position: absolute;
  bottom: 0;
  top: auto;
}

.s-book-form .m-book-toggle {
  display: none;
}

@media (max-width: 1259px) {
  .s-book-form .m-book-form {
    position: absolute;
  }

  .s-book-form .m-book-form.stuck-down {
    bottom: auto;
    top: 50%;
  }

  .s-book-form.no-slider {
    padding-top: 60px;
  }

  .s-book-form.active .m-book-form {
    display: block;
  }

  .s-book-form.active .m-book-toggle {
    display: none;
  }
}

@media (max-width: 969px) {
  .s-book-form .container {
    height: auto !important;
    position: static !important;
    width: 100%;
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  .s-book-form .m-book-form {
    position: static !important;
    margin-top: auto !important;
  }

  .s-book-form.no-slider {
    padding-top: 0;
  }
}

/*@media (min-width: 970px) {*/
/*  .s-welcome .container {*/
/*    padding-top: 60px;*/
/*  }*/
/*}*/
.s-home-description {
  /*background-image: url("/static/img/home/bg-description.jpg");*/
  background-position: left center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.s-home-description:before {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #fff;
  display: inline-block;
  top: 0;
  left: 0;
}

.s-home-description:after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #fff;
  display: inline-block;
  bottom: 0;
  left: 0;
}

@media (max-width: 1259px) {
  .s-home-description {
    background-image: none;
  }
}

.s-home-more-info {
  display: none;
}

.active-home-more-info .m-home-description__wrap-btn {
  display: none;
}

.active-home-more-info .s-home-more-info {
  display: block;
}

.s-footer {
  background-color: #5aa1a8;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
  /* Evita el desplazamiento horizontal */
}

.s-footer .wrapper {
  padding-right: 0;
}

@media (max-width: 1499px) {
  .s-footer .wrapper {
    padding-right: 35px;
    padding-left: 35px;
  }
}

@media (max-width: 1389px) {
  .s-footer .wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1259px) {
  .s-footer .wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1499px) {

  .s-back-top .wrapper,
  .s-footer-info .wrapper {
    padding-right: 35px;
    padding-left: 35px;
  }
}

@media (max-width: 1389px) {

  .s-back-top .wrapper,
  .s-footer-info .wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1259px) {

  .s-back-top .wrapper,
  .s-footer-info .wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

.s-hotel-footer-info .wrapper {
  padding-right: 0;
}

.s-hotel-footer-info .container {
  padding-top: 20px;
}

.s-gallery .container {
  padding-top: 80px;
}

@media (max-width: 1259px) {
  .s-gallery .container {
    padding-top: 10px;
  }
}


//* GLOBAL BOX *//
/* pagina interface 50% */
.half-page {
  padding-top: 70px;
  background-color: #212121;

  .wrap-halfpage {
    position: relative;
    min-height: 100%;
    padding-bottom: 32px;

    .half-img {
      position: fixed;
      top: 70px;
      left: 0;
      bottom: 0;
      width: 50%;
      height: calc(100% - 100px);
      overflow: hidden;

      .half-slider {
        width: 100%;
        height: 100%;

        .btn-slide-square {
          background-color: rgba(#333333, 0.6);

          @include hovers {
            &:hover {
              background-color: rgba(#ffffff, 0.6);
            }
          }
        }

        .half-slide {
          position: relative;
          overflow: hidden;

          img {
            position: absolute;
            top: 0;
            left: 50%;
            @include transform(translateX(-50%));
            width: auto;
            height: 100%;
          }
        }
      }

      .half-text-slider {
        position: absolute;
        pointer-events: none;
        max-width: 130px;
        left: 50%;
        bottom: 70px;
        @include transform(translateX(-50%));

        .text-slide {
          text-align: center;

          .slide-title {
            padding-bottom: 15px;
            border-bottom: 1px solid $corp-basic;
            font-family: $corp-font1;
            font-size: 15px;
            color: $corp-basic;
            @include space(50em);
            text-transform: uppercase;
          }

          .slide-subtitle {
            padding-top: 15px;
            font-family: $corp-font1;
            font-size: 15px;
            color: $corp-basic;
            @include space(50em);
            text-transform: uppercase;
          }
        }
      }
    }

    .half-text {
      padding-left: 50%;

      .wrap-half-text {
        position: relative;
        padding: 300px 45px 0;
        max-width: calc(590px + 90px);
        margin: 0 auto;

        .back-mandala {
          position: absolute;
          top: 140px;
          right: 50%;
          width: 465px;
          height: 465px;
          opacity: 0.5;
          transform-origin: right;
          @include transform(translateX(50%) translateZ(0));
          background-image: url("/static/img/mandala.png");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: 50% 50%;

          &.inblog {
            width: 300px;
            height: 320px;
          }
        }

        .half-page-end {
          position: relative;
          padding-top: 75px;

          .btn-top {
            display: none;
            position: absolute;
            right: 20px;
            top: 50px;
            opacity: 0.5;
            width: 28px;
            height: 28px;

            &:after {
              content: '\e316';
              font-family: 'icomoon';
              font-size: 10px;
            }

            .top-text {
              position: absolute;
              top: -25px;
              left: 50%;
              @include transform(translateX(-50%) translateZ(0));
              font-family: "TradeGothic18", sans-serif;
              font-size: 13px;
              text-transform: uppercase;
              letter-spacing: 0.05em;
            }
          }

          .end-mandala {
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 135px;
            overflow: hidden;

            img {
              display: block;
              width: 340px;
              height: auto;
              margin: 0 auto;
              opacity: 0.5;
            }
          }
        }
      }
    }
  }

  @include full-desktop {
    .wrap-halfpage {
      .half-text {
        .wrap-half-text {
          padding: 260px 45px 0;
        }
      }
    }
  }

  @include medium-desktop {
    .wrap-halfpage {
      .half-text {
        .wrap-half-text {
          padding: 260px 90px 0;
        }
      }
    }
  }

  @include small-desktop {
    .wrap-halfpage {
      height: auto;

      .half-img {
        position: relative;
        top: 0;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 490px;
        overflow: hidden;

        .half-slider {
          .half-slide {
            img {
              top: 50%;
              @include transform(translateX(-50%) translateY(-50%));
              min-width: 100%;
              height: 100%;
            }
          }
        }

        .half-text-slider {
          bottom: 30px;
        }
      }

      .half-text {
        padding-left: 0;
        overflow: hidden;
        position: relative;

        .wrap-half-text {
          padding: 70px 45px 0;

          .back-mandala {
            width: 365px;
            height: 365px;
            top: 0;
            right: 50%;
            @include transform(translateX(50%) translateY(-60%));
          }
        }
      }
    }
  }

  @include full-tablet {
    .wrap-halfpage {
      padding-bottom: 0;

      .half-img {
        height: 512px;
      }

      .half-text {
        .wrap-half-text {
          .half-page-end {
            padding-top: 100px;

            .btn-top {
              display: block;
            }
          }
        }
      }
    }
  }

  @include medium-tablet {
    .wrap-halfpage {
      .half-img {
        height: 360px;

        .half-text-slider {
          .text-slide {
            .slide-title {
              padding-bottom: 0;
              border: none;
            }

            .slide-subtitle {
              display: none;
            }
          }
        }
      }

      .half-text {
        .wrap-half-text {
          padding: 70px 40px 0;
        }
      }
    }
  }

  @include small-tablet {
    .wrap-halfpage {
      .half-img {
        height: 250px;
      }

      .half-text {
        .wrap-half-text {
          padding: 35px 50px 0;

          .back-mandala {
            width: 255px;
            height: 255px;
          }

          .half-page-end {
            .btn-top {
              right: 10px;
            }

            .end-mandala {
              height: 80px;

              img {
                width: 250px;
              }
            }
          }
        }
      }
    }
  }

  @include mobile {
    .wrap-halfpage {
      .half-img {
        height: 215px;
      }

      .half-text {
        .wrap-half-text {
          padding: 70px 25px 0;
        }
      }
    }
  }
}

.m-footer-info-item__title2 {
  font-size: 14px;
  color: #5aa1a8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Lato-Regular', sans-serif;
  line-height: 1.4;
}

.m-footer-info-item__wrap-title2 {
  padding: 30px 0;
  position: relative;
}

/* inicio centrar iconos favicon */
.m-footer-info-item__wrap-links1 {
  display: flex;
  justify-content: center;
  /* Centrar horizontalmente */
  align-items: center;
  /* Centrar verticalmente */
  text-align: center;
  padding: 20px;
  /* Añade espacio alrededor */
}

.m-social-links__list {
  display: flex;
  justify-content: space-between;
  /* justify-content: center;  */
  /* Centrar horizontalmente */
  gap: 10px;
  /* Espacio entre los íconos */
  padding: 0;
  margin: 0;
  list-style: none;
  /* Eliminar viñetas de la lista */
}

.m-social-links__item {
  display: inline-block;
}

.btn-social {
  font-size: 24px;
  /* Tamaño del ícono */
  color: #000;
  /* Color del ícono, puedes ajustarlo según necesites */
  text-decoration: none;
  /* Eliminar subrayado del enlace */
  transition: color 0.3s;
  /* Transición suave para cambio de color */
  width: 50px;
  /* Ancho del contenedor del ícono */
  height: 50px;
  /* Altura del contenedor del ícono */
  border-radius: 50%;
  /* Hacer el contenedor circular */
  display: flex;
  /* Usar flexbox para centrar el ícono */
  justify-content: center;
  /* Centrar horizontalmente el ícono */
  align-items: center;
  /* Centrar verticalmente el ícono */
  background-color: #f0f0f0;
  /* Fondo del círculo */
  margin: 0;
  /* Eliminar cualquier margen adicional */
}

.btn-facebook:hover {
  color: #3b5998;
  /* Color de Facebook al pasar el cursor */
}

.btn-instagram:hover {
  color: #e4405f;
  /* Color de Instagram al pasar el cursor */
}

.btn-youtube:hover {
  color: #c4302b;
  /* Color de YouTube al pasar el cursor */
}

/* final centrar iconos favicon */

/* Estilos del popup */
.popup {
  position: absolute;
  /* Cambiado a absolute para posicionamiento relativo al contenedor padre */
  z-index: 2000;
  right: 20px;
  /* Posiciona el popup 20px del borde derecho */
  top: 50%;
  /* Ajustado según tu preferencia */
  transform: translateY(-50%);
  width: 286px;
  /* Ancho fijo del popup */
  max-width: calc(100% - 40px);
  /* Ancho máximo ajustado para mantener el margen */
  background-color: #5aa2a8cc;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Sombra para efecto de elevación */
}


.close {
  color: #000000;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup h2 {
  margin-bottom: 10px;
  text-align: center;
}

.popup img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn-reserva {
  display: block;
  width: 100%;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  transition: background-color 0.3s;
}


.centrar {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Estilos para móviles y tabletas */
@media (max-width: 768px) {
  .popup {
    width: 100%;
    /* Ancho completo en dispositivos móviles */
    max-width: none;
    left: 0;
    /* Posiciona el popup a la izquierda */
    right: 0;
    top: 79vh;
    margin: 0;
    border-radius: 0;
    /* Quita el borde redondeado en dispositivos móviles */
  }
}


/* fin popup */

/* inicio pequeño slider */

/* Estilos para el slider */
#services-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.service-item {
  flex: 0 0 auto;
  text-align: center;
  padding: 10px;
  scroll-snap-align: start;
}

.service-item img {
  max-width: 50px;
  /* Ajustar tamaño del icono según necesidades */
  max-height: 50px;
}

.service-item span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  /* Ajustar según necesidades */
}

.contenido-especial {
  margin-left: 10px;

}

/* login  */
.login-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.login-card h2 {
  margin-top: 0;
  font-weight: 400;
  text-align: center;
  color: #333;
}

.login-card form {
  margin-bottom: 0;
}

.login-card .form-group {
  margin-bottom: 20px;
}

.login-card .checkbox {
  margin-bottom: 20px;
  font-weight: normal;
}

.login-card .btn {
  font-size: 16px;
  font-weight: bold;
  /* background-color: #5cb85c;
  border-color: #4cae4c; */
}

/* .login-card .btn:hover {
  background-color: #4c8fae;
  border-color: #398439;
} */

/* .login-card a {
  color: #5cb85c;
}

.login-card a:hover {
  color: #3b8e3b;
} */

.container-login {
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  padding-top: 14rem;
}

.auth-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-top: 14rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.signup-button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.signup-button:hover {
  background-color: #0056b3;
}

.center {
  text-align: center;
}

.m-footer-links__logo>img {
  width: 145px;
}



a:hover {
  text-decoration: none !important;
  /* Asegura que no haya subrayado al pasar el mouse */
}

.wrapper1 {
  margin: 0.2rem;
}

/* Estilo para móviles y tablets */
@media (max-width: 768px) {
  .popup-content>img {
    width: 100px;
  }
}

/* modal-admin */
/* Estilos para el modal */
/* .admin-login-modal {
            position: absolute;
            top: 50%;
            right: -120px; 
            transform: translateY(-50%);
            width: 150px; 
            height: 50px; 
            background-color: #333;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: right 0.3s ease;
            cursor: pointer;
            border-radius: 5px 0 0 5px;
        }

       
        .admin-login-modal:hover {
            right: 0;
        }

        .admin-login-link {
            color: #fff;
            text-decoration: none;
        }

        .admin-login-link:hover {
          color: gainsboro;
        }

        .margin {
          padding-top: 14rem;
        }

        .panel_admin {
          color: #ffffff !important;
          text-decoration: none !important;
        } */

/* Estilos para el modal */
.container-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Estilos para el modal */
.admin-login-modal {
  position: absolute;
  top: 50%;
  right: -120px;
  /* Ajusta este valor según el ancho del modal menos la parte visible */
  transform: translateY(-50%);
  width: 150px;
  /* Ancho del modal */
  height: 50px;
  /* Alto del modal */
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  z-index: 1000;
  /* Asegura que esté por encima del resto del contenido */
  transition: right 0.3s ease;
  pointer-events: auto;
  /* Permitir eventos de clics cuando está activo */
}

/* Parte visible del modal */
.admin-login-modal.active {
  right: 0;
}

.admin-login-link {
  color: #fff;
  text-decoration: none;
}

.admin-login-link:hover {
  color: gainsboro;
}

.margin {
  padding-top: 14rem;
}

.panel_admin {
  color: #ffffff !important;
  text-decoration: none !important;
}