/*BASE*/
@font-face {
  font-family: "JosefinSans";
  src: url(../fonts/JosefinSans-Light.ttf);
}
@font-face {
  font-family: "forum";
  src: url(../fonts/Safira\ March.otf);
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-family: "JosefinSans" !important;
  color: #161C21;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none !important;
}

.no-padding {
  padding: 0 !important;
}

.subtitle {
  text-align: center;
  font-size: 2.5rem;
  color: #00000033;
}

.btn-style {
  background: #9B934B;
  color: white;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 10px 36px;
  transition: 0.8s;
}
.btn-style:hover {
  background: #00000033;
}

.subtitulo {
  text-align: center;
  padding: 80px 0 60px 0;
}
.subtitulo .icono {
  margin: 0 auto;
  display: flex;
  width: 70px;
  padding: 0 0 15px 0;
}
.subtitulo .icono img {
  object-fit: contain;
  width: 100%;
}
.subtitulo h2 {
  font-size: 32px;
  color: #9B934B;
  font-family: "forum";
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: 0.9em;
  /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  /*
    Let the content set the size of the tooltips
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
  /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

#carousel {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
#carousel div {
  position: absolute;
  transition: transform 1s, left 1s, opacity 1s, z-index 0s;
  opacity: 1;
}
#carousel div img {
  width: 400px;
  height: 250px;
  transition: width 1s;
  object-fit: cover;
}
#carousel div.hideLeft {
  left: 0%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideLeft img {
  width: 200px;
}
#carousel div.hideRight {
  left: 100%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideRight img {
  width: 200px;
}
#carousel div.prev {
  z-index: 5;
  left: 30%;
  transform: translateY(50px) translateX(-50%);
}
#carousel div.prev img {
  width: 300px;
}
#carousel div.prevLeftSecond {
  z-index: 4;
  left: 15%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.prevLeftSecond img {
  width: 200px;
}
#carousel div.selected {
  z-index: 10;
  left: 50%;
  transform: translateY(0px) translateX(-50%);
}
#carousel div.next {
  z-index: 5;
  left: 70%;
  transform: translateY(50px) translateX(-50%);
}
#carousel div.next img {
  width: 300px;
}
#carousel div.nextRightSecond {
  z-index: 4;
  left: 85%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.nextRightSecond img {
  width: 200px;
}

#menu {
  width: 100%;
  position: fixed;
  z-index: 20;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition: 0.9s;
  text-align: center;
  justify-content: center;
}
#menu .menu-section {
  background: #ffffffad;
  display: flex;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  height: auto;
  transition: 0.9s;
  box-shadow: 10px 12px 12px 0px #00000080;
}
#menu .menu-section .logo {
  height: 60px;
  width: 230px;
  display: inline-flex;
  background: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#menu .menu-section .logo img {
  object-fit: contain;
  width: 100%;
}
#menu .menu-section .nav-link {
  color: black;
  transition: 0.7s;
  font-size: 15px !important;
}
#menu .menu-section .nav-link:hover {
  opacity: 0.7;
}
#menu .menu-section .tel {
  margin-right: 20px;
  margin-left: 20px;
  padding: 5px 15px;
  background: #fff;
  border-radius: 5px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  transition: 1s;
}
#menu .menu-section .tel:hover {
  opacity: 0.8;
  background: #9B934B;
}
#menu .menu-section .tel:hover a {
  color: white;
}
#menu .menu-section .tel:hover a b {
  border-right: 2px solid white;
}
#menu .menu-section .tel a {
  display: flex;
  color: #9B934B;
  text-decoration: none;
  font-family: "forum";
  font-size: 18px; 
  padding: 5px;
}
#menu .menu-section .tel a small {
  padding: 0 8px;
  font-size: 17px;
  letter-spacing: 2px;
  font-family: "JosefinSans";
  font-weight: 600;
}
#menu .menu-section .tel a b {
  font-size: 10px;
  border-right: 2px solid #9B934B;
  padding: 0 8px;
}

#menu.sticky {
  border-color: rgba(34, 34, 34, 0.05);
  background-color: #fffffff0;
  top: 0;
}
#menu.sticky .menu-section {
  width: 100%;
  backdrop-filter: blur(8px);
  background: #ffffffad;
  transition: 0.9s;
  border-radius: 0;
  box-shadow: none;
}
#menu.sticky .menu-section .logo {
  background: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#menu.sticky .menu-section .nav-link {
  color: #161C21;
}

/*primera parte*/
#slider_inicio
{
    position: relative;
    overflow: hidden;
}
#progress_bar_container
{
    position: absolute;
    height: 10px;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    top:0;
    z-index: 1;
}
#progress_bar
{
    height: 100%;
    border-radius: o 3px 3px 0;
    transition: width 0.8s;
}
#slideshow
{
    position: relative;
    z-index: 1;
    height: 100vh;
}
#slideshow img
{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
#img2
{
    /*left: 100%;*/
    opacity: 0;
}
.active
{
    /*left: 0 !important;*/
    opacity: 1 !important;
    transition: all 1.5s;
}
#indicadores
{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
    z-index: 1;
}
.circles
{
    border: rgba(255, 255, 255, 0) 2px solid;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 5px 0 5 px;
    background-color: transparent;
    border-radius: 50%;
}
.resaltado
{
    background-color: var(--colorIndicador);
    transition: background-color 0.8s;
}

.cont_filtro_info
{
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.414);
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    flex-direction: column;
}
.cont_titulos_pt1
{
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cont_filtro_info h1
{
  font-size: 35px;
  color: white;
  text-align: center;
  font-family: "forum";
  padding-bottom: 10px;
}
.cont_filtro_info h2
{
  font-size: 35px;
  color: white;
  text-align: center;
  font-family: "forum";
  padding-bottom: 10px;
}
.cont_filtro_info h4
{
  font-size: 25px;
  color: white;
  font-family: "forum";
  padding-bottom: 40px;
}
.boton_reservar
{
  width: 200px;
  height: 45px;
  background-color: white;
  border-radius:10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boton_reservar a
{
  font-size: 10px;
  font-weight: 700;
  color: #9B934B;
  font-family: "forum";
  text-decoration: none;
}
.cont_espacio
{
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content:space-around;
  padding-bottom: 20px;
  /*border: 1px solid red;*/
}
.box_pt1
{
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box_pt1 img
{
  width: 20%;
  padding-bottom: 10px;
}
.box_pt1 h3
{
  font-size: 30px;
  color: white;
}
.box_pt1 p
{
  font-size: 20px;
  color: white;
}
.box_pt1 span
{
  font-weight: 700;
  font-size: 25px;
}
.cont_circulo_play
{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cont_circulo_play i
{
  width: 60px;
  height: 60px;
  font-size: 80px;
  color: white;
  padding-left: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cont_circulo_play:hover
{
  border: 5px solid #9B934B;
  scale: 1.05;
}
.cont_circulo_play:hover i
{
  color: #9B934B;
}
/*video principal*/
.cont_video_mostrar
{
  z-index: 21;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.514);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.cerrar_video
{
  position: absolute;
  top: 100px;
  right: 10px;
  color: #9B934B;
  font-size: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cerrar_video:hover
{
  color: red;
}
.video_principal_estilo
{
  width: 70%;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*responsive*/
@media screen and (max-width:840px)
{
  .cont_filtro_info h1
  {
    font-size: 30px;
  }
  .cont_filtro_info h2
  {
    font-size: 30px;
    border-top: none;
  }
  .cont_filtro_info h4
  {
    font-size: 20px;
  }
  .desaparecer
  {
    display: none;
  }
  #boton_video
  {
    display: flex;
  }
  .video_principal_estilo
  {
    width: 90%;
  }
}
/*---------------------------------*/
@media screen and (max-width:570px)
{
  .cont_filtro_info h1
  {
    font-size: 25px;
  }
  .cont_filtro_info h2
  {
    font-size: 25px;
  }
  .cont_filtro_info h4
  {
    padding-bottom: 17px;
  }
  .video_principal_estilo
  {
    width: 100%;
  }
}
/*---------------------------------*/
@media screen and (max-width:395px)
{
  .cont_filtro_info h1
  {
    font-size: 10px;
  }
  .cont_filtro_info h2
  {
    font-size: 15px;
  }
  .cont_filtro_info h4
  {
    font-size: 15px;
  }
}

#somos .box-img {
  display: flex;
}
#somos .box-img img {
  width: 100%;
  object-fit: contain;
}
#somos .box-text {
  height: 676px;
  display: flex;
  align-items: center;
  padding: 0 70px;
}
#somos .box-text p {
  font-size: 20px;
}
#somos .box-text h2 {
  font-size: 22px;
  color: #9B934B;
  font-family: "forum";
  padding-bottom: 20px;
}

#amenidades {
  padding: 50px 0;
}
#amenidades .box-amenidades {
  display: flex;
  position: relative;
}
#amenidades .box-amenidades img {
  width: 100%;
  object-fit: contain;
}
#amenidades .box-amenidades .box-letra {
  position: absolute;
  bottom: 0;
  right: 15px;
  display: inline-flex;
  color: #fff;
  z-index: 1;
}
#amenidades .box-amenidades .box-letra h3 {
  font-size: 25px;
  font-family: "forum";
  margin-left: 15px;
}
#amenidades .box-amenidades .box-letra .botoncin-out {
  padding: 28px 0 0 0;
}
#amenidades .box-amenidades .box-letra .botoncin-out a {
  padding: 5px 10px;
  display: inline-block;
  align-items: center;
  color: white;
  font-size: 10px;
  border-radius: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-family: "forum";
}
#amenidades .box-amenidades .box-letra .botoncin-out a .botoncin {
  display: flex;
}
#amenidades .box-amenidades .box-letra .botoncin-out a .botoncin .icono {
  width: 20px;
  display: flex;
  margin-right: 10px;
}
#amenidades .box-amenidades .box-letra .botoncin-out a .botoncin .icono img {
  width: 100%;
  object-fit: contain;
}
#amenidades .box-amenidades .box-letra .botoncin-out a:hover {
  background: #0000001a;
}

#line {
  background: #F2F2F2;
}
#line .box-line {
  text-align: center;
  padding: 30px 0;
}
#line .box-line img {
  height: 60px;
}
#line .box-line h4 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: lighter;
}

#pet {
  margin-bottom: 100px;
}
#pet .imagen {
  height: 50vh;
  display: flex;
}
#pet .imagen img {
  width: 100%;
  object-fit: cover;
}
#pet .textin {
  height: 50vh;
  padding: 40px 60px;
  text-align: center;
}
#pet .textin h2 {
  font-size: 30px;
  color: #9B934B;
}
#pet .textin p {
  font-size: 24px;
}
#pet .box-outside {
  padding: 0 0 40px 100px;
}
#pet .box-outside .box-pet {
  position: relative;
  height: auto;
  background: #F2F2F2;
}
#pet .box-outside .box-pet .texto {
  padding: 40px 0 40px 60px;
}
#pet .box-outside .box-pet .texto h3 {
  font-size: 15px;
  font-family: "forum";
  color: #9B934B;
}
#pet .box-outside .box-pet .texto h4 {
  font-size: 24px;
  color: #9B934B;
}
#pet .box-outside .box-pet .texto ul {
  margin-top: 20px;
  color: #9B934B;
  list-style: circle;
}
#pet .box-outside .box-pet .texto ul p {
  font-size: 22px;
  color: #9B934B;
  font-weight: bold;
  margin-bottom: 5px;
}
#pet .box-outside .box-pet .texto ul small {
  font-size: 24px;
  font-weight: bold;
  color: #161C21;
}
#pet .box-outside .box-pet .texto ul span {
  font-size: 22px;
  font-weight: lighter;
}
#pet .box-outside .box-pet .imagen {
  position: absolute;
  top: -60px;
  right: 50px;
  width: 500px;
  height: 500px;
  display: flex;
}
#pet .box-outside .box-pet .imagen img {
  object-fit: contain;
  width: 100%;
}

#restaurante .galeria {
  padding: 0 30px;
}
#restaurante .texto {
  height: 50vh;
  text-align: center;
  padding: 0 40px;
}
#restaurante .texto .logo {
  height: 120px;
  display: flex;
  margin: 0 auto;
}
#restaurante .texto .logo img {
  object-fit: contain;
  width: 100%;
}
#restaurante .texto h2 {
  font-size: 12px;
  color: #9B934B;
  font-family: "forum";
}
#restaurante .texto p {
  font-size: 22px;
}
#restaurante .texto span {
  font-size: 21px;
  color: #00000033;
  font-weight: bold;
  font-style: italic;
}
#restaurante .texto small {
  font-size: 18px;
  color: #00000033;
  font-weight: bold;
  font-style: italic;
}
#restaurante .cont_espacio_boton
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
#restaurante .boton_resta
{
  width: 300px;
  height: 50px;
  /*border: 1px solid red;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9B934B;
  border-radius: 10px;
  cursor: pointer;
}
#restaurante .boton_resta a
{
  text-decoration: none;
  color: white;
  font-size: 20px;
}

#spa {
  padding: 40px 0 40px 100px;
  margin-bottom: 100px;
}
#spa .box-spa {
  position: relative;
  height: auto;
  background: #F2F2F2;
}
#spa .box-spa .texto {
  padding: 40px 0 40px 60px;
}
#spa .box-spa .texto h3 {
  font-size: 15px;
  font-family: "forum";
  color: #9B934B;
  padding-bottom: 10px;
}
#spa .box-spa .texto h4 {
  font-size: 24px;
  color: #9B934B;
}
#spa .box-spa .texto ul {
  margin-top: 20px;
  color: #9B934B;
  list-style: circle;
}
#spa .box-spa .texto ul p {
  font-size: 22px;
  color: #9B934B;
  font-weight: bold;
  margin-bottom: 5px;
}
#spa .box-spa .texto ul small {
  font-size: 24px;
  font-weight: bold;
  color: #161C21;
}
#spa .box-spa .imagen {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 570px;
  height: 570px;
  display: flex;
}
#spa .box-spa .imagen img {
  object-fit: contain;
  width: 100%;
}

#banner {
  background: url(../img/banner.jpg);
  background-position: center;
  background-size: cover;
  height: 60vh;
}
#banner .texto {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
}
#banner .texto h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  padding: 30px 0;
}
#banner .texto .logo {
  width: 150px;
  display: flex;
}
#banner .texto .logo img {
  object-fit: contain;
  width: 100%;
}
#banner .texto .decoracion {
  width: 70px;
  display: flex;
}
#banner .texto .decoracion img {
  object-fit: contain;
  width: 100%;
}

#habitaciones .foto {
  height: 70vh;
  display: flex;
}
#habitaciones .foto img {
  object-fit: cover;
  width: 100%;
}
#habitaciones .room {
  position: relative;
  margin-bottom: 80px;
}
#habitaciones .room .ficha-room {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 820px;
  right: 0;
  background-color: #F2F2F2;
  z-index: 10;
}
#habitaciones .room .ficha-room .texto {
  padding: 40px 80px;
}
#habitaciones .room .ficha-room .texto h2 {
  font-size: 20px;
  color: #9B934B;
  font-family: "forum";
  padding-bottom: 10px;
}
#habitaciones .room .ficha-room .texto h3 {
  font-size: 24px;
  color: #9B934B;
  margin-bottom: 15px;
}
#habitaciones .room .ficha-room .texto span {
  font-size: 22px;
  color: #9B934B;
  margin-bottom: 15px;
  font-weight: lighter;
}
#habitaciones .room .ficha-room .texto hr {
  margin: 10px 0;
}
#habitaciones .room .ficha-room .texto .price {
  display: flex;
  align-items: baseline;
}
#habitaciones .room .ficha-room .texto .price h4 {
  font-size: 28px;
  color: #9B934B;
  font-weight: bold;
  padding-right: 10px;
}
#habitaciones .room .ficha-room .texto .price p {
  font-size: 18px;
  color: #9B934B;
  font-weight: bold;
  padding-right: 15px;
}
#habitaciones .room .ficha-room .texto .price small {
  font-size: 20px;
  font-weight: bold;
}
#habitaciones .room .ficha-room .texto hr {
  border: 1px solid #d4d4d4;
}
#habitaciones .room .ficha-room .texto h5 {
  font-size: 22px;
  color: #9B934B;
  font-weight: 600;
}
#habitaciones .room .ficha-room .texto .comodidades {
  padding: 10px 0;
}
#habitaciones .room .ficha-room .texto .comodidades .item-plus {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#habitaciones .room .ficha-room .texto .comodidades .item-plus p {
  font-size: 18px;
  margin: 0;
}
#habitaciones .room .ficha-room .texto .comodidades .item-plus .icon {
  width: 24px;
  height: 20px;
  display: flex;
  margin-right: 5px;
}
#habitaciones .room .ficha-room .texto .comodidades .item-plus .icon img {
  width: 100%;
  object-fit: contain;
}
#habitaciones .room .ficha-room-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 820px;
  left: 0;
  background-color: #F2F2F2;
  z-index: 2;
}
#habitaciones .room .ficha-room-side .texto {
  padding: 40px 80px;
}
#habitaciones .room .ficha-room-side .texto h2 {
  font-size: 20px;
  color: #9B934B;
  font-family: "forum";
  padding-bottom: 10px;
}
#habitaciones .room .ficha-room-side .texto h3 {
  font-size: 24px;
  color: #9B934B;
  margin-bottom: 15px;
}
#habitaciones .room .ficha-room-side .texto span {
  font-size: 22px;
  color: #9B934B;
  margin-bottom: 15px;
  font-weight: lighter;
}
#habitaciones .room .ficha-room-side .texto hr {
  margin: 10px 0;
}
#habitaciones .room .ficha-room-side .texto .price {
  display: flex;
  align-items: baseline;
}
#habitaciones .room .ficha-room-side .texto .price h4 {
  font-size: 28px;
  color: #9B934B;
  font-weight: bold;
  padding-right: 10px;
}
#habitaciones .room .ficha-room-side .texto .price p {
  font-size: 18px;
  color: #9B934B;
  font-weight: bold;
  padding-right: 15px;
}
#habitaciones .room .ficha-room-side .texto .price small {
  font-size: 20px;
  font-weight: bold;
}
#habitaciones .room .ficha-room-side .texto hr {
  border: 1px solid #d4d4d4;
}
#habitaciones .room .ficha-room-side .texto h5 {
  font-size: 22px;
  color: #9B934B;
  font-weight: 600;
}
#habitaciones .room .ficha-room-side .texto .comodidades {
  padding: 10px 0;
}
#habitaciones .room .ficha-room-side .texto .comodidades .item-plus {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#habitaciones .room .ficha-room-side .texto .comodidades .item-plus p {
  font-size: 18px;
  margin: 0;
}
#habitaciones .room .ficha-room-side .texto .comodidades .item-plus .icon {
  width: 24px;
  height: 20px;
  display: flex;
  margin-right: 5px;
}
#habitaciones .room .ficha-room-side .texto .comodidades .item-plus .icon img {
  width: 100%;
  object-fit: contain;
}

#galeria .galeria {
  padding: 0 50px;
}

#eventos {
  margin-bottom: 100px;
}
#eventos .imagen {
  height: 50vh;
  display: flex;
}
#eventos .imagen img {
  width: 100%;
  object-fit: cover;
}
#eventos .textin {
  height: 50vh;
  padding: 40px 60px;
  text-align: center;
}
#eventos .textin h2 {
  font-size: 28px;
  color: #9B934B;
}
#eventos .textin p {
  font-size: 24px;
}
#eventos .box-outside {
  padding: 0 0 40px 100px;
}
#eventos .box-outside .box-pet {
  position: relative;
  height: auto;
  background: #F2F2F2;
}
#eventos .box-outside .box-pet .texto {
  padding: 40px 0 40px 60px;
}
#eventos .box-outside .box-pet .texto h3 {
  font-size: 15px;
  font-family: "forum";
  color: #9B934B;
}
#eventos .box-outside .box-pet .texto h4 {
  font-size: 24px;
  color: #9B934B;
}
#eventos .box-outside .box-pet .texto ul {
  margin-top: 20px;
  color: #9B934B;
  list-style: circle;
}
#eventos .box-outside .box-pet .texto ul p {
  font-size: 22px;
  color: #9B934B;
  font-weight: bold;
  margin-bottom: 5px;
}
#eventos .box-outside .box-pet .texto ul small {
  font-size: 24px;
  font-weight: bold;
  color: #161C21;
}
#eventos .box-outside .box-pet .texto ul span {
  font-size: 22px;
  font-weight: lighter;
}
#eventos .box-outside .box-pet .texto h2 {
  font-size: 15px;
  color: #9B934B;
  font-family: "forum";
  padding: 20px 0 0 0;
  margin: 0;
  padding-bottom: 10px;
}
#eventos .box-outside .box-pet .texto a {
  text-decoration: none;
  font-size: 24px;
  transition: 0.3s;
  color: #161C21;
  padding: 0 0 20px 0;
}
#eventos .box-outside .box-pet .texto a:hover {
  color: #9B934B;
}
#eventos .box-outside .box-pet .texto a i {
  font-size: 18px;
  color: #9B934B;
  font-weight: bold;
}
#eventos .box-outside .box-pet .imagen {
  position: absolute;
  top: -60px;
  right: 50px;
  width: 500px;
  height: 500px;
  display: flex;
}
#eventos .box-outside .box-pet .imagen img {
  object-fit: contain;
  width: 100%;
}

#contacto {
  height: auto;
}
#contacto .imagen {
  height: 100%;
  display: flex;
}
#contacto .imagen img {
  width: 100%;
  object-fit: cover;
}
#contacto .texto-box {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
#contacto .texto-box .siguenos {
  display: flex;
  color: #161C21;
  font-family: "forum";
  align-items: center;
  padding-bottom: 30px;
}
#contacto .texto-box .siguenos h3 {
  margin-right: 20px;
  font-size: 15px;
}
#contacto .texto-box .siguenos .icono {
  width: 50px;
  height: 50px;
  display: flex;
  margin-left: 20px;
}
#contacto .texto-box .siguenos .icono img {
  width: 100%;
  object-fit: contain;
}
#contacto .texto-box h2 {
  font-size: 15px;
  color: #9B934B;
  font-family: "forum";
  padding: 20px 0;
}
#contacto .texto-box .tels {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
#contacto .texto-box .tels .tel {
  padding: 5px 10px;
  display: inline-block;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 10px;
}
#contacto .texto-box .tels .tel a {
  text-decoration: none;
  font-size: 28px;
  transition: 0.3s;
  color: #161C21;
}
#contacto .texto-box .tels .tel i {
  font-size: 24px;
  color: #9B934B;
  font-weight: bold;
}
#contacto .texto-box .tels .tel:hover {
  background: #0000001a;
}
#contacto .texto-box .boton-out {
  padding: 20px 0;
}
#contacto .texto-box .boton-out a {
  padding: 5px 10px;
  display: inline-block;
  align-items: center;
  color: #9B934B;
  font-size: 14px;
  border-radius: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-family: "forum";
}
#contacto .texto-box .boton-out a .boton {
  display: flex;
}
#contacto .texto-box .boton-out a .boton .icono {
  width: 20px;
  display: flex;
  margin-right: 10px;
}
#contacto .texto-box .boton-out a .boton .icono img {
  width: 100%;
  object-fit: contain;
}
#contacto .texto-box .boton-out a:hover {
  background: #0000001a;
}
#contacto .mapa {
  height: 250px;
  width: 100%;
  padding: 0;
}

footer {
  background: #9B934B;
  color: white;
  padding: 20px 0;
}

/* de telefono a tablet */
@media (max-width: 850px) {
  body {
    width: 100%;
  }

  .subtitle {
    font-size: 2.4rem;
  }

  #menu {
    top: 0;
  }
  #menu .menu-section {
    width: 100%;
    border-radius: 0;
  }
  #menu .menu-section .tel {
    margin: 0;
  }
  #menu .box-nav {
    display: flex;
  }
  #menu .box-nav button {
    height: 40px;
    margin-top: 7px;
  }
  #menu .box-nav button i {
    color: black;
  }

  #menu.sticky .box-nav i {
    color: white;
  }

  #principal {
    background-attachment: initial;
  }
  #principal .box-title h1 {
    font-size: 10px;
  }
  #principal .box-title h2 {
    font-size: 35px;
  }
  #principal .box-title small {
    font-size: 27px;
  }
  #principal .box-square {
    display: none;
  }

  #somos .box-text {
    height: auto;
    padding: 40px 30px;
  }
  #somos .box-text h2
  {
    font-size: 15px;
  }

  #amenidades .box-amenidades .box-letra {
    position: initial;
    color: #9B934B;
  }
  #amenidades .box-amenidades .box-letra h3 {
    font-size: 15px;
  }
  #amenidades .box-amenidades .box-letra .botoncin-out {
    padding: 25px 0 0 0;
  }
  #amenidades .box-amenidades .box-letra .botoncin-out a {
    color: #9B934B;
    font-size: 8px;
    line-height: 20px;
    text-decoration: underline;
  }
  #amenidades .box-amenidades .box-letra .botoncin-out a .botoncin {
    display: flex;
  }
  #amenidades .box-amenidades .box-letra .botoncin-out a .botoncin .icono {
    display: none;
  }

  #pet {
    margin-bottom: 50px;
  }
  #pet .textin {
    height: auto;
  }
  #pet .box-outside {
    padding: 0;
  }
  #pet .box-outside .box-pet {
    height: auto;
  }
  #pet .box-outside .box-pet .texto {
    padding: 40px 30px;
  }
  #pet .box-outside .box-pet .imagen {
    position: static;
    width: 100%;
    height: 500px;
  }
  #pet .box-outside .box-pet .imagen img {
    object-fit: cover;
  }
  #pet .box-outside .box-pet .texto h3
  {
    font-size: 10px;
  }

  #restaurante .texto {
    height: auto;
  }

  #spa {
    padding: 0;
    margin-bottom: 50px;
  }
  #spa .box-spa {
    height: auto;
  }
  #spa .box-spa .texto {
    padding: 40px 30px;
  }
  #spa .box-spa .imagen {
    transform: translateY(0);
    position: static;
    right: 50px;
    width: 100%;
    height: 350px;
    padding: 20px 0;
  }

  #banner {
    height: auto;
  }
  #banner .texto {
    padding: 40px 20px;
    height: auto;
  }

  #habitaciones .foto {
    height: 27vh;
    display: flex;
  }
  #habitaciones .foto img {
    object-fit: contain;
    width: 100%;
  }
  #habitaciones .room {
    margin-bottom: 80px;
  }
  #habitaciones .room .ficha-room {
    position: relative;
    width: 100%;
  }
  #habitaciones .room .ficha-room .texto {
    padding: 30px;
  }
  #habitaciones .room .ficha-room-side {
    position: relative;
    width: 100%;
  }
  #habitaciones .room .ficha-room-side .texto {
    padding: 30px;
  }

  #galeria .galeria {
    padding: 0 50px;
  }

  #eventos {
    margin-bottom: 50px;
  }
  #eventos .textin {
    height: auto;
  }
  #eventos .box-outside {
    padding: 0;
  }
  #eventos .box-outside .box-pet {
    height: auto;
  }
  #eventos .box-outside .box-pet .texto {
    padding: 40px 30px;
  }
  #eventos .box-outside .box-pet .texto a {
    font-size: 20px;
  }
  #eventos .box-outside .box-pet .imagen {
    position: static;
    width: 100%;
    height: 500px;
  }
  #eventos .box-outside .box-pet .imagen img {
    object-fit: cover;
  }
  #eventos .box-outside .box-pet .texto h3
  {
    font-size: 10px;
  }

  #contacto {
    height: auto;
  }
  #contacto .imagen {
    height: 100%;
    display: flex;
  }
  #contacto .imagen img {
    width: 100%;
    object-fit: cover;
  }
  #contacto .texto-box {
    padding: 30px;
  }
  #contacto .texto-box .icono {
    padding: 0;
    margin-left: 8px;
  }
  #contacto .texto-box .icono img {
    width: 100%;
    object-fit: contain;
  }
  #contacto .mapa {
    height: 450px;
    width: 100%;
    padding: 0;
  }

  #carousel {
    height: 30vh;
  }
}
/* --------------------------------------------------- GRACIAS -----------------------------------------------------------------------  */
.nav-gracias {
  background: white;
}

.btn-style {
  background: #9B934B;
  color: #fff;
}

#hero .box-text {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
#hero .backgroung-img {
  background: linear-gradient(270deg, rgba(117, 204, 224, 0), rgba(224, 238, 241, 0)), url(../img/back2.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: 24px;
  height: calc(100vh - 24px);
  background-size: contain;
}

#hero::after {
  content: "";
  height: 700px;
  width: 700px;
  background: url(../LP/img/icono.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

#gracias {
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.8));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0.8));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0.8));
  position: relative;
  background-attachment: fixed;
}
#gracias .title {
  text-align: center;
  padding-top: 110px;
  font-size: 140px;
  font-weight: bolder;
  color: #9B934B;
  font-size: 60px;
}
#gracias .box-video video {
  width: 100%;
  height: 100%;
}

#clientes img {
  filter: grayscale(1);
}

/* de telefono a tablet */
@media (max-width: 450px) {
  #gracias .title {
    font-size: 28px;
    padding-top: 85px;
  }
}
/* whatsapp */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
#whats {
  z-index: 999;
}
#whats .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
#whats .nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 10000000000000001000000000000000000000000000000000000000000000000000000000000000;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}
#whats .whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 10000000000000001000000000000000000000000000000000000000000000000000000000000000;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #25d366;
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  display: flex;
  align-items: center;
  justify-content: center;
}
#whats .whatsapp-button:focus {
  outline: none;
}
#whats .whatsapp-button:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  background: red;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 0;
}
#whats .whatsapp-button i {
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
#whats .circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
}
#whats .title {
  background: #095e54;
  color: white;
  padding: 25px;
  width: 100%;
  margin: 0 !important;
  line-height: 2px;
  border-radius: 9px 9px 0 0;
}
#whats .title small {
  font-weight: 100;
}
#whats .title small:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background: #2bd32b;
  position: absolute;
  left: 84px;
  top: 42px;
  z-index: 0;
}
#whats .popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  bottom: 85px;
  right: 25px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #f1f1f1;
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
  border: 1px solid #f1f1f1;
  z-index: 1000000000000000000000000000000000000000000000000000000000;
}

@media (max-width: 360px) {
  #whats .nav-bottom {
    width: 320px;
  }
}
@media (max-width: 680px) {
  #whats .popup-whatsapp p {
    font-size: 0.9em;
  }
}
#whats .popup-whatsapp > div {
  margin: 5px;
}

#whats .popup-whatsapp > .content-whatsapp.-top {
  display: -webkit-inline-box;
  flex-direction: column;
  cursor: auto;
  /*background: #e6ddd4;*/
  background: linear-gradient(rgba(230, 221, 212, 0.9), rgba(230, 221, 212, 0.9)), url(../img/whatsapp.webp);
  margin: 0;
  padding: 15px;
}

#whats .popup-whatsapp > .content-whatsapp.-top p {
  width: 215px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1em;
  margin-right: 16px;
  margin-top: 3px;
  background: #fff;
  color: #2f4e6f;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0 15px 15px;
  cursor: auto;
}

#whats .popup-whatsapp > .content-whatsapp.-top p:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 7px solid #fff;
  border-bottom: 12px solid transparent;
  position: absolute;
  left: 8px;
  top: 90px;
  cursor: auto;
}

#whats .popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}
#whats .popup-whatsapp > .content-whatsapp.-bottom .button-send {
  padding: 2px 15px;
  border-radius: 25px;
  background: white;
  width: 250px;
  text-align: center;
  text-decoration: none;
  color: #161C21;
}

#whats .closePopup {
  position: absolute;
  right: 15px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  /*margin: 0px 0px 15px 0px;*/
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer !important;
  background-color: #f1f1f1;
  color: #2f4e6f;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  cursor: auto;
}

#whats .closePopup:hover {
  background-color: #f1f1f1;
  transition: 0.3s;
  cursor: auto;
}

#whats .send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  border: 1px solid #25d366;
  cursor: auto !important;
}

#whats .send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
  cursor: auto;
}

#whats .send-msPopup:focus {
  outline: none;
  cursor: auto;
}

#whats .send-msPopup:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #f1f1f1;
  position: absolute;
  bottom: -11px;
  left: 10px;
}

#whats .is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
  cursor: auto;
}

#whats input.whats-input[type=text] {
  width: 200px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s;
  cursor: auto;
}

@media (max-width: 420px) {
  #whats input.whats-input[type=text] {
    width: 225px;
    cursor: auto;
  }
}
#whats input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
  cursor: auto;
}

#whats input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
  cursor: auto;
}

#whats .icon-whatsapp-small {
  width: 24px;
  height: 24px;
  cursor: auto;
}

#whats .icon-whatsapp {
  width: 45px;
  height: 45px;
}

#whats .icon-font-color {
  color: #ffffff;
}

#whats .icon-font-color--black {
  color: #333333;
}

#whats .send-msPopup i {
  cursor: auto !important;
}

/* End whatsapp */

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

/*sección de preguntas frecuentes*/
#Preguntas_frecuentes .contenedor_preguntas_frecuentes
{
  width: 100%;
  padding: 50px 0;
  /*border: 1px solid red;*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(240, 240, 240);
}
#Preguntas_frecuentes .contenedor_preguntas_frecuentes h2
{
  font-size: 35px;
  font-family: "forum";
  color: #9B934B;
  padding-top: 20px;
  text-align: center;
}
#Preguntas_frecuentes .contenedor_preguntas_frecuentes .contenedor_preguntas_todas
{
  width: 100%;
  padding: 30px 0;
  /*border: 1px solid red;*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#Preguntas_frecuentes .contenedor_preguntas_frecuentes .contenedor_preguntas_todas .cont_pregunta
{
  width: 90%;
  /*border: 1px solid green;*/
  display: flex;
  align-items:flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 30px;
}
.cont_pregunta h3
{
  font-size: 25px;
  color: #9B934B;
}
.cont_pregunta p
{
  font-size: 25px;
  color: #161C21;
}
.cont_pregunta a
{
  text-decoration: none;
  font-size: 30px;
  color: #9B934B;
  font-weight: 700;
}
#icono_preguntas
{
  width: 70px;
}

.t_custom
{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:840px)
{

}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
  #Preguntas_frecuentes .contenedor_preguntas_frecuentes .contenedor_preguntas_todas .cont_pregunta
  {
    width: 95%;
    padding-left: 10px;
  }
  #Preguntas_frecuentes .contenedor_preguntas_frecuentes h2
  {
    font-size: 15px;
  }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{

}