/*
Theme Name: Demo
Description: Tema para WordPress.
Author: SkynetCorp
Author URI: 
version: 2.8.1
Tags: tema
*/
@import url('https://fonts.googleapis.com/css2?family=Spinnaker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
:root {
    --color-1: #000;
    --color-2: #115b79;
    --color-3: #ffffff;
    --color-4: #F4F2F1;
    --color-5: #0A0807;
    --color-6: #d62b5f;
}
*{margin:0; padding:0;}

body{font-family: "Montserrat", sans-serif; font-size: 14px; margin: 0;}
.content {
    width: 1200px;
    margin: auto;
}
.seccion {
    padding: 60px 0;
}
li {
    list-style: none;
    line-height: 30px;
}
a {
    text-decoration: none;
    transition: 0.5s;
}
p {
    line-height: 30px;
}
strong{
    color: var(--color-2);
}
i{
    color: var(--color-2);
}
h2,h3,h4{
    font-family: "Cormorant Garamond", sans-serif;
    color: var(--color-5);
    font-weight: 600;
}
h2{
    line-height: 1.3;
    font-size: 42px;
}
h3 a,
h3{
    color: var(--color-5);
    line-height: 1.2;
    font-size: 26px;
    font-weight: 800;
}
h3 a:hover{
    color: var(--color-2);
}
.textoPrincipalHome2 {
    text-align: center;
    width: 80%;
    margin: 40px auto 20px;
}
.textoPrincipalHome a::before {
    content: ">";
    position: absolute;
    right: 59px;
    top: 51%;
    transform: translate(0, -51%);
    font-size: 16px;
    transition: 0.5s;
}
.textoPrincipalHome a {
    display: block;
    background: var(--color-2);
    width: 90%;
    margin: auto;
    padding: 15px 75px 15px 25px;
    box-sizing: border-box;
    color: var(--color-3);
    font-weight: 600;
    text-align: right;
    position: relative;
    border-radius: 10px;
}
.textoPrincipalHome a:hover::before{
    right: 55px;
}
/* header */
header {
    position: relative;
    z-index: 10;
}
header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.textologo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 180px;
    padding: 10px;
    /* background-color: #1c1c1c; */
}
.textologo li{line-height: 0;background-color: #FFF;border-radius: 30px;}
.textologo a {
    font-size: 35px;
    font-weight: 600;
    color: transparent;
    padding: 15px 15px;
    display: block;
}
.textologo a strong {
    font-weight: 900;
}
nav.menuNavegacionHeader {
    max-width: 1000px;
}
nav.menuNavegacionHeader ul {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 90px;
    position: relative;
}
nav.menuNavegacionHeader ul li {
    /* max-width: 210px; */
    position: relative;
    line-height: 22px;
}
nav.menuNavegacionHeader ul a {
    padding: 0 20px;
    display: flex;
    height: 90px;
    text-align: center;
    align-items: center;
    color: var(--color-3);
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}
nav.menuNavegacionHeader ul a:hover {
    color: var(--color-6) ;
}
nav.menuNavegacionHeader ul li:hover .sub-menu {
    display: block !important;
    animation: aparicion 0.5s;
}
@keyframes aparicion {
    from{
        opacity: 0;
        transform: translate(50%,-20px);
    }
    to{
        opacity: 1;
        transform: translate(50%,0px);
    }
}
nav.menuNavegacionHeader ul.sub-menu {
    display: none !important;
    position: absolute !important;
    top: 70px;
    background: var(--color-3);
    left: 0 !important;
    /* transform: translate(50%,0px); */
    transform: none !important;
    /* flex-direction: column; */
    height: auto !important;
    width: 300px;
    padding: 10px;
    transition: 0.5s;
    border-radius: 5px;
}
ul.sub-menu li{
    max-width: 100% !important;
}
ul.sub-menu a {
    min-height: 40px !important;
    height: auto !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--color-5) !important;
    text-transform: initial !important;
}
ul.sub-menu a:hover {
    color: var(--color-2) !important;
}
/* slider */
section.contenedorSliderHome {
    width: 100%;
    height: 830px;
    margin-top: -166px;
    padding-top: 80px;
    background-color: var(--color-1);
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 0 15px -4px #000;
}
.contenedorBarras span {
    top: 0;
    z-index: -1;
    width: 1px;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    animation: leftRightOne 18s infinite;
}
.bannerPrincipalPage .contenedorBarras span {
    background: rgba(255, 255, 255, 0.10);
}
@keyframes leftRightOne {
    0%,100%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(-100px);
    }
}
.contenedorBarras span:nth-child(1) {left: 10%;}
.contenedorBarras span:nth-child(2) {left: 20%;}
.contenedorBarras span:nth-child(3) {left: 30%;}
.contenedorBarras span:nth-child(4) {left: 40%;}
.contenedorBarras span:nth-child(5) {left: 50%;}
.contenedorBarras span:nth-child(6) {left: 60%;}
.contenedorBarras span:nth-child(7) {left: 70%;}
.contenedorBarras span:nth-child(8) {left: 80%;}
.contenedorBarras span:nth-child(9) {left: 90%;}
.contenedorBarras span:nth-child(10) {left: 100%;}
section.contenedorSliderHome::before {
    position: absolute;
    width: 250px;
    height: 250px;
    z-index: -1;
    content: '';
    right: 15%;
    bottom: 0;
    filter: blur(110px);
    border-radius: 50%;
    background: var(--color-2);
    animation: zoomInOut 8s infinite;
}
section.contenedorSliderHome::after {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: -1;
    content: '';
    right: 25%;
    top: 5%;
    filter: blur(110px);
    border-radius: 50%;
    background: var(--color-2);
    animation: zoomInOut 10s infinite;
    animation-delay: 2s;
}
@keyframes zoomInOut {
    50%{
        width: 350px;
        height: 350px;
    }
}
.mySwiperHome {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.mySwiperHome::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 262px;
    height: 250px;
    border-radius: 0 500px 0 0;
    animation: leftRightOne 18s infinite;
    background: linear-gradient(180deg, rgba(171, 96, 52, 0) 13.33%, rgba(171, 96, 52, 0.2) 100%);
}
.mySwiperHome::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 215px;
    height: 212px;
    border-radius: 0 400px 0 0;
    animation: leftRightOne 18s infinite;
    animation-delay: 1s;
    background: linear-gradient(180deg, rgba(171, 96, 52, 0) 13.33%, rgba(171, 96, 52, 0.2) 100%);
}
.mySwiperHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 1190px;
}
.mySwiperHome .owl-carousel.owl-theme.owl-loaded.owl-drag {
    position: absolute !important;
    width: 66%;
    height: 550px;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
}
.mySwiperHome .owl-dots {
    position: absolute;
    left: -250px;
    bottom: 50px;
}
.textoslider {
    position: absolute;
    top: 50%;
    width: 34%;
    z-index: 10;
    left: 0;
    padding: 3%;
    transform: translateY(-50%);
    box-sizing: border-box;
}
.textoslider h2 {
    font-family: "Playwrite AU SA", cursive;
    color: var(--color-3);
    font-weight: 600;
    font-size: 55px;
    padding-bottom: 20px;
    text-shadow: 1px 2px 5px #000;
}
.textoslider a:hover::before {
    right: 55px;
}
.textoslider a::before {
    content: ">";
    position: absolute;
    right: 50px;
    top: 55%;
    transform: translate(0, -51%);
    font-size: 16px;
    transition: 0.5s;
}
.textoslider p{
    margin: 10px 0;
}
.textoslider a {
    display: block;
    background: var(--color-2);
    width: 200px;
    margin-right: auto;
    padding: 15px 75px 15px 25px;
    box-sizing: border-box;
    color: var(--color-3);
    font-weight: 600;
    text-align: right;
    position: relative;
    border-radius: 10px;
}
.owl-theme .owl-dots .owl-dot.active span{background: var(--color-2) !important;}
.owl-theme .owl-dots .owl-dot:hover span {background: var(--color-6)!important;}
/* general carousel */
.owl-carousel{
    position: relative !important;
}
.owl-stage-outer{
    width: 100% !important;
    height: 100% !important;
}
.owl-item,
.owl-stage{
    height: 100% !important;
}
.item{
    /* width: 100% !important; */
    height: 100% !important;
    display: table;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 10px;
}
.mySwiperHome .item img {
    box-sizing: border-box;
    border-radius: 10px;
}
/*porqueReservarNosotrosHome */
section.porqueReservarNosotrosHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.imagenesPorqueReservarNosotrosHome {
    width: 50%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}
.itemImgSobreNosotros {
    width: 50%;
}
.itemImgSobreNosotros img{
    width: 100%;
    object-fit: cover;
    background-color: #FFF;
    box-shadow: 0 0 8px -2px #b4b4b4;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
}
.itemImgSobreNosotros:nth-child(1) {
    width: 70%;
}
.itemImgSobreNosotros:nth-child(2) {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: left;
    display: none;
}
.itemImgSobreNosotros:nth-child(2) i {
    font-size: 60px;
    background: var(--color-2);
    color: var(--color-3);
    padding: 25px;
    border-radius: 50%;
    margin: 20px;
    /* box-shadow: 1px 1px 64px 2px var(--color-6); */
}
.itemImgSobreNosotros:nth-child(3) {
    width: auto;
    min-width: 140px;
    height: 70px;
    padding: 10px 50px;
    box-sizing: border-box;
    background: var(--color-6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 20px 120px;
    z-index: 5;
    color: var(--color-3);
    border-radius: 5px;
}
.itemImgSobreNosotros:nth-child(3) a {
    font-family: "Cormorant Garamond", sans-serif;
    color: var(--color-3);
    font-size: 25px;
    font-weight: 600;
    display: block;
    padding: 10px 0;
}
.itemImgSobreNosotros:nth-child(3) i {
    font-size: 32px;
    color: var(--color-3);
    margin-right: 10px;
    vertical-align: middle;
}
.itemImgSobreNosotros:nth-child(4) {
    position: absolute;
    bottom: 0%;
    width: 378px;
    right: 0;
}
.textoPorqueReservarNosotrosHome {
    width: 50%;
    padding: 25px;
    box-sizing: border-box;
}
.textoPorqueReservarNosotrosHome h1 {
    margin-bottom: 15px;font-size: 35px;
}
.textoPorqueReservarNosotrosHome strong {
    color: var(--color-5);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.textoPorqueReservarNosotrosHome ul {
    width: 100%;
    background: var(--color-4);
    margin: 20px 0;
    padding: 25px 15px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.textoPorqueReservarNosotrosHome ul li {
    width: 50%;
    padding: 10px 15px 15px 50px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}
.textoPorqueReservarNosotrosHome ul li::before {
    content: '\2713';
    position: absolute;
    top: 15px;
    left: 10px;
    color: var(--color-2);
    font-size: 35px;
    font-weight: 900;
}
/* tours - rooms  Home */
section.contenedorToursHome.seccion {
    position: relative;
    z-index: 5;
    padding-top: 0;
}
.textoPrincipalHome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px;
}
.textoPrincipalHome li:nth-child(1) {
    width: 55%;
}
.textoPrincipalHome li:nth-child(2) {
    width: 20%;
}
.ToursHome {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* overflow: hidden; */
}
.itemsTourHome {
    width: 31.3333%;
    margin: 10px 1%;
    padding: 10px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0 0 8px -2px #b4b4b4;
    border-radius: 10px;
}
.itemsTourHome .botonImagen {
    width: 100%;
    display: block;
    overflow: hidden;
}
.itemsTourHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.informacionGeneralTour {
    padding: 35px 15px 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background-color: var(--color-3);
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    border-radius: 0 0 10px 10px;
}
.informacionGeneralHabitacion {
    background: var(--color-4);
}
.datos1TourHome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
}
.datos1TourHome p{
    padding-right: 15px;
}
.datos2TourHome {
    padding: 10px 0;
}
.precioTourHome {
    padding: 15px 0;
    min-height: auto !important;
}
.precioTourHome strong {
    font-size: 25px;
}
p#tipoHabitacion {
    position: absolute;
    top: 20px;
    background: var(--color-2);
    height: 40px;
    padding: 5px 15px;
    left: 0;
    box-sizing: border-box;
    text-transform: uppercase;
    color: var(--color-3);
    font-weight: 600;
}
a.botom {
    display: block;
    text-align: center;
    padding: 20px 15px;
    box-sizing: border-box;
    background: var(--color-2);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-3);
    border-radius: 10px;
}
.ToursHome a.botom {background: var(--color-6);color: var(--color-4);border-radius: 10px;}
a.botom:hover{
    background-color: var(--color-1);
    color: var(--color-3);
}
.ToursHome a.botom:hover {background: var(--color-2);color: var(--color-3);}
/* Datos Estadisticos y Nuestras ventajas */
section.datosEstadisticosHome {
    padding-top: 550px;
    margin-top: -500px;
    position: relative;
    width: 100%;
    background-color: var(--color-1);
    z-index: 1;
}
.datosEstadisticosHome::before {
    position: absolute;
    width: 250px;
    height: 250px;
    z-index: -1;
    content: '';
    right: 15%;
    top: 0;
    filter: blur(110px);
    border-radius: 50%;
    background: var(--color-2);
    animation: zoomInOut2 8s infinite;
}
@keyframes zoomInOut2 {
    50%{
        width: 550px;
        height: 550px;
    }
}
.datosEstadisticosHome2{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.datosEstadisticosHome2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 597px;
    height: 550px;
    border-radius: 0 700px 0 0;
    animation: leftRightOne 18s infinite;
    background: linear-gradient(180deg, rgba(171, 96, 52, 0) 13.33%, rgba(171, 96, 52, 0.2) 100%);
}
.datosEstadisticosHome2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 494px;
    height: 480px;
    border-radius: 0 600px 0 0;
    animation: leftRightOne 18s infinite;
    animation-delay: 1s;
    background: linear-gradient(180deg, rgba(171, 96, 52, 0) 13.33%, rgba(171, 96, 52, 0.2) 100%);
}
.itemsDatosEstadisticosHome {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.itemDatoEstadistico {
    width: 20%;
    background: var(--color-2);
    text-align: center;
    margin: 15px 30px;
    border-radius: 10px;
    overflow: hidden;
}
.itemDatoEstadistico p {
    padding: 10px 15px;
    color: var(--color-3);
}
.itemDatoEstadistico strong:nth-child(1) {
    color: var(--color-3);
    font-size: 50px;
    font-weight: 800;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    font-family: "Cormorant Garamond",sans-serif;
}
.itemDatoEstadistico p:last-child {
    padding: 10px 15px;
    background-color: var(--color-3);
    color: var(--color-5);
    font-weight: 600;
    font-size: 16px;
}
.contenedorNuestrasVentajasHome {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0 90px 0;
}
.itemNuestraVentaja {
    width: 22%;
    margin: 15px;
    color: var(--color-3);
    text-align: center;
}
.itemNuestraVentaja h3 {
    color: var(--color-3);
    padding: 5px 0;
}
.itemNuestraVentaja i {
    font-size: 35px;
    color: var(--color-3);
}
.qrwhatsapp {
    margin-top: 50px;
    border: 2px solid #5af38f;
    padding: 20px;
    line-height: 0;
    font-size: 23px;
    border-radius: 10px;
}
.qrwhatsapp p{line-height: 0 !important}
.qrwhatsapp p strong{
    display: block;
    line-height: 35px;
    padding-bottom: 5px;
}
/* MAs Habitaciones Home */
.habitacionHome .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.habitacionHome .item img {
    width: 50% !important;
    height: 400px;
    object-fit: cover;
}
.informacionGeneralHabitacion {
    width: 50%;
    padding: 25px 15px;
    box-sizing: border-box;
}
.mapa {
    padding: 70px 20px;
    text-align: center;
}

.mapa h2 {
    padding-bottom: 20px;
}

.mapa .gmp_map_opts {
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 8px -2px #b4b4b4;
}
/* Blogs */
section.contenedorBlogsHome.seccion {
    background: var(--color-4);
    padding: 30px 0 60px;
}
.BlogsHome {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}
.itemsBlogsHome {
    width: 380px;
    margin: 15px auto;
    overflow: hidden;
    box-shadow: 0 0 8px -2px #b4b4b4;
    border-radius: 10px;
}
.datosItemsBlogHome {
    padding: 15px;
    background-color: var(--color-3);
    border: 1px solid #DDD;
    border-radius: 0 0 10px 10px;
}
.datosItemsBlogHome p {
    padding: 10px 0;
}
.itemsBlogsHome .botonImagen {
    width: 100%;
    height: 250px;
    display: block;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    background-color: #FFF;
    border: 1px solid #DDD;
    border-radius: 10px 10px 0 0;
}
.itemsBlogsHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* footer */
footer {
    padding-top: 0;
    position: relative;
    background-color: var(--color-1);
    z-index: 0;
}
footer .suscribirseForm h2{
    font-size: 25px;
}
footer input {
    margin: 10px 0;
    color: var(--color-6);
    padding: 15px 20px;
    box-sizing: border-box;
    width: 100%;
}
footer input#enviarForm {
    background: var(--color-6);
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--color-3);
    cursor: pointer;
}
footer li ,
footer h3 ,
footer h2 ,
footer p ,
footer a {
    color: var(--color-3);
}
footer a:hover {
    color: var(--color-2);
}
footer h3{
    padding: 10px 0;
}
footer::before {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: -1;
    content: '';
    right: 10%;
    bottom: 0;
    filter: blur(110px);
    border-radius: 50%;
    background: var(--color-2);
    animation: zoomInOut2 8s infinite;
}
footer::after {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: -1;
    content: '';
    right: 40%;
    top: 5%;
    filter: blur(110px);
    border-radius: 50%;
    background: var(--color-2);
    animation: zoomInOut 10s infinite;
    animation-delay: 2s;
}
@keyframes zoomInOut2 {
    50%{
        width: 250px;
        height: 250px;
    }
}
section.columnasFooter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0 40px;
}
section.columnasFooter strong{color: #FFF}
section.columnasFooter li {
    width: 23%;
    padding: 15px 10px;
    box-sizing: border-box;
}
section.columnasFooter li#text-5 {width: 31%;}
section.columnasFooter li li {
    width: 100%;
    padding: 5px 0;
    line-height: 22px;
}
#text-5 i{color: var(--color-3)}
section.columnasFooter li li a {
    display: block;
    padding: 0;
}
section.columnasFooter li li a:hover {color: var(--color-6);}
section.columnasFooter li#text-3 ul {display: flex;padding-top: 20px}
section.columnasFooter li#text-3 li {width: initial;font-size: 28px;padding-right: 20px;}
section.columnasFooter li#text-3 li i {color: var(--color-3);transition: 0.3s;}
section.columnasFooter li#text-3 li i:hover {color: var(--color-2);}
.copyright {
    background: var(--color-5);
}
.copyright p{
    color: var(--color-3);
    padding: 15px;
}
/* Pagina Room Page */
section.contenidoPrincipalRoomPage {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}
.descripcionRoomPage {
    width: 60%;
    padding: 10px 15px;
    box-sizing: border-box;
}

.datosDescripcionRoomPage {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}
.datosDescripcionRoomPage p {
    padding-right: 20px;
}
.datosDescripcionRoomPage i{color: var(--color-6)}
.detallesHabitacionPage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.itemDetalleHabitacion {
    width: 50%;
    display: flex;
    padding: 15px;
    box-sizing: border-box;
}
.textoGeneralPage .itemDetalleHabitacion p {
    text-align: left;
}
.itemDetalleHabitacion i {
    font-size: 30px;
    color: var(--color-6);
}
.itemDetalleHabitacion p {
    padding: 5px !important;
    font-weight: 500;
}
.adicionalesRoomPage {
    margin: 20px 0;
}
.formularioFormRoomPage {
    background: var(--color-4);
    padding-top: 20px;
}
.contenidoAdicionalRoomPage {
    width: 40%;
    padding: 10px 15px;
    box-sizing: border-box;
}
/* Pagina Blog */
section.contenidoPrincipalBlogPage {
    width: 70%;
    margin: 40px auto;
}
.masBlogRecientesPage {
    margin: 20px 0;
}
.masBlogRecientesPage h2{
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-2);
}
.BlogRecientesHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.itemsBlogsRecienteHome {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--color-2);
}
.datosItemsRecienteBlogHome h3 a {
    font-size: 20px;
    font-weight: 800;
}
a.botonImagenReciente {
    width: 40%;
}
a.botonImagenReciente img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.datosItemsRecienteBlogHome {
    width: 60%;
    padding: 15px;
    box-sizing: border-box;
}
/*texto general Page */
.textoGeneralPage h2 {
    font-size: 35px;
    padding: 15px 0;
}
.textoGeneralPage h3 {
    padding: 5px 0;
}
.textoGeneralPage p{
    text-align: justify;
    padding: 5px 0;
}
.textoGeneralPage .tarifasRoooms p {
    text-align: center;
}
.textoGeneralPage img{
    width: 100%;
    padding: 5px 0;
}
.textoGeneralPage strong{
    color: var(--color-5);
}
.textoGeneralPage a{
    color: var(--color-2);
}
.textoGeneralPage a:hover{
    color: var(--color-5);
}
.textoGeneralPage ol,
.textoGeneralPage ul{
    padding: 10px;
    margin-left: 20px;
}
.textoGeneralPage li{
    padding: 5px;
    text-align: justify;
    list-style: disc;
}
.textoGeneralPage blockquote::before {
    content: "";
    width: 3px;
    height: 100%;
    background: var(--color-2);
    position: absolute;
    left: 0;
    top: 0;
}
.textoGeneralPage blockquote {
    position: relative;
    padding: 15px 0;
    padding-left: 25px;
    margin: 15px 0;
    font-weight: 600;
}
/* contact form 7*/
.formBookingHome {
    width: 80%;
    margin: auto;
}
input#reservarForm {
    width: 100% !important;
    background: var(--color-2);
    color: var(--color-3);
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
}
input#reservarForm:hover{
    background: var(--color-3);
    color: var(--color-5);
}
.textoDeContacto input,
.formBookingHome select,
.formBookingHome input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    font-size: 15px;
}
.itemContactForm7 p:first-child {
    padding: 15px 0 5px;
    color: var(--color-5);
    font-weight: 600;
}
.contatcFormStyle h2 {
    text-align: center;
    color: var(--color-2);
}
.contatcFormStyle {
    background: var(--color-4);
    margin: 25px 0;
    padding: 15px 25px;
    border-radius: 10px;
}
input#textNombreForm, textarea#textareaForm, input#emailForm, input#telForm, textarea#mensajeForm, input#textPersonasForm, input#dateForm, input#textTourForm {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid var(--color-7);
    border-radius: 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}
p.textoContactForm {
    font-weight: 600;
    padding: 15px 0;
}
input#reservarForm {
    border: none;
    margin: 25px auto 10px;
    width: 80%;
}
/* banner Paginas */
.bannerPrincipalPage {
    width: 100%;
    /* height: 550px; */
    margin-top: -184px;
    position: relative;
    z-index: 1;
}
.bannerPrincipalPage img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 720px;
    object-fit: cover;
    filter: brightness(0.5);
    position: relative;
    z-index: -1;
}
.tituloBannerPage {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}
.tituloBannerPage h1,
.tituloBannerPage p {
    text-align: center;
    font-size: 40px;
    color: var(--color-3);
    font-weight: 700;
    word-spacing: 10px;
    line-height: 1.2;
    text-shadow: 0 1px 5px #444;
    letter-spacing: 2px;
    font: 60px "Playwrite AU SA", cursive;
}
/* categorias */
.contentCategoria {
    margin: 30px auto;
}
.navigation {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}
ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
}
.page-numbers a {
    padding: 10px;
    background: var(--color-4);
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-6);
}
.navigation span {
    background: var(--color-2);
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-5);
    cursor: pointer;
    transition-duration: 0.85s;
}
.navigation span:hover {
    color: var(--color-6);
}
.page-numbers a:hover {
    color: var(--color-2);
}
/*Pagina Generales */
article.contenidoPaginasGenerales {
    padding: 30px 15px;
}
.paginaGaleriaPage .responsive-tabs .responsive-tabs__panel {
    border: none !important;
}
.paginaGaleriaPage .responsive-tabs .responsive-tabs__list__item--active, .responsive-tabs .responsive-tabs__list__item--active:hover {
    background: var(--color-2) !important;
    color: var(--color-3) !important;
}
.paginaGaleriaPage .responsive-tabs ul.responsive-tabs__list {
    display: flex;
    width: 100%;
    justify-content: center;
}
.paginaGaleriaPage .responsive-tabs .responsive-tabs__list__item {
    font-weight: 600 !important;
}
.paginaGaleriaPage img{
    transition: 0.5s;
}
.paginaGaleriaPage img:hover{
    rotate:0.5deg;
    filter: saturate(2);
}
.dobleColumnasPage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    padding: 5px 0;
    border-top: 1px solid var(--color-2);
    border-bottom: 1px solid var(--color-2);
}
.columnaPage {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}
.textoDeContacto ul {
    margin: 15px 0;
}
.textoDeContacto li {
    padding: 20px 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}
.textoDeContacto i {
    font-size: 40px;
    color: var(--color-3);
    border-radius: 50%;
    background: var(--color-2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-right: 15px;
}
/* pagina de tarifas */
.contenidoTarifasGeneral {
    background: url(https://www.skynetcorp.pe/clientes/hospedajelamontana/wp-content/uploads/2023/10/fondoo.png) 50% 50%;
    background-color: var(--color-5);
    background-size: 100%;
    position: relative;
    z-index: 0;
}
.tarifasRoooms {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #FFF;
    text-align: center;
}
.itemTarifaRooms {
    width: 100%;
    margin: 15px;
    color: var(--color-3);
    background: var(--color-1);
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}
.itemTarifaRooms li {
    list-style: none;
}
.itemTarifaRooms h2{
    color: var(--color-3);
    font-size: 30px;
}
.itemTarifaRooms ul {
    margin: 0 25px 25px;
    text-align: left;
    padding: 0;
}
.itemTarifaRooms ul li:before {
    content: '\2713';
    padding-right: 10px;
    color: var(--color-2);
    font-size: 16px;
    font-weight: 900;
}
.itemTarifaRooms ul li {
    position: relative;
    padding: 5px 0;
    text-align: center;
}
.itemTarifaRooms h3 {
    color: var(--color-3);
    font-size: 60px;
}
.itemTarifaRooms h3 strong{
    color: var(--color-3);
}
.itemTarifaRooms a {
    display: block;
    background: var(--color-2);
    color: var(--color-3);
    text-align: center;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.itemTarifaRooms a:hover {
    background: var(--color-3);
    color: var(--color-2);
}
.mob-icon-menu:before {
    content: '\e9d6';
    color: var(--color-2);
    background: var(--color-3);
    border-radius: 50%;
}
.mob-menu-left-bg-holder, .mob-menu-right-bg-holder, .mob-menu-cart-bg-holder {
    background-color: #c73333;
}
.mobmenu-content i ,
.mobmenu-content a {
    color: #f5f5f5 !important;
}
.fixwhatsapp{position:fixed;bottom: 5px;right: 20px;text-align:center;z-index:100;animation: movi infinite 6s;}
.fixwhatsapp a{background-color: #009aff;color:#FFF;font-size: 40px;border-radius: 50%;height: 60px;width: 60px;text-align: center;display: flex;justify-content: center;align-items: center;box-shadow: 1px 1px 5px -1px #000;margin-bottom: 15px}
.fixwhatsapp a:hover {background-color: #31cbff;text-decoration:none;}
.fixwhatsapp a+a{background-color:#17A43B;}
.fixwhatsapp a+a:hover {background-color: #17d648;}
.fixwhatsapp i{color:#FFF;}
@keyframes movi {
  from,to {transform: translate3d(0, 0, 0);}
  10%,30%,50%,70%,90% {transform: translate3d(0, -2px, 0);}
  20%,40%,60%,80% {transform: translate3d(0, 2px, 0);}
}
@media(max-width:768px){
    .content{
        width: 100%;
    }
    .ofertasRooms .itemsTourHome {
        width: 100%;
    }
    nav.menuNavegacionHeader {
        display: none;
    }
    header .content {
        justify-content: center;
    }
    section.contenedorSliderHome{
    margin: 0;
    height: 550px;
    padding-top: 0;
    background-color: #FFF;
    box-shadow: none;
    }
    .contenedorSliderHome{
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;}
    .textoslider {
    width: 60%;
    }
    .textoslider {
    width: 100%;
    padding: 10px 10px 0;
    box-sizing: border-box;
    text-align: center;
    }
    .textoslider
    a{
    margin: auto;
}
    .mySwiperHome .owl-carousel.owl-theme.owl-loaded.owl-drag {
    width: 100%;
    filter: brightness(0.6);
    right: 0;
    }
    .textoslider
    h2 {
        font-size: 42px;
    }
    .mySwiperHome .owl-dots {
    left: -150px;
    }
    .textoPorqueReservarNosotrosHome {
    width: 100%;
    }
    .textoPorqueReservarNosotrosHome
    ul li {
        width: 100%;
    }
    .textoPorqueReservarNosotrosHome
    ul li {
        width: 100%;
    }
    .imagenesPorqueReservarNosotrosHome {
    display: none;
    }
    .textoPrincipalHome {
    width: 90%;
    margin: auto;
    flex-direction: column;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    }
    .textoPrincipalHome
    li:nth-child(1) {
        width: auto;
    }
    .textoPrincipalHome
    li:nth-child(2) {
        width: 30%;
    margin: 10px auto;
    }
    .itemsTourHome {
    width: 48%;
    }
    .itemDatoEstadistico {
    width: 40%;
    }
    .itemNuestraVentaja {
    width: 42%;
    }
    .itemsBlogsHome {
    width: 48%;
    }
    section.contenidoPrincipalBlogPage {
        width: 95%;
    }
    .descripcionRoomPage {
    width: 100%;
    }
    .contenidoAdicionalRoomPage {
    width: 100%;
    }
    .columnaPage {
    width: 100%;
    padding: 0 10px;
    }
    .itemTarifaRooms {
    width: 45%;
    }
    section.columnasFooter li, section.columnasFooter li#text-5 {
        width: 85%;
    margin: auto;
    text-align: center;
    }

.fixwhatsapp {
    right: 15px;
    bottom: 0;
}
.fixwhatsapp
    a {
    height: 44px;
    width: 44px;
    margin-bottom: 10px;
    font-size: 28px;
}
}
@media(max-width:480px){
    
    header .content {
        padding-top: 0;
    }
    .textoslider h2{font-size:40px;}
    
    .mySwiperHome .owl-dots {
        position: relative;
        left: 0;
        bottom: 0;
    }
    .textoPrincipalHome li:nth-child(2) {
        width: 52%;
    }
    .itemsTourHome {
        width: 95%;
    }
    section.datosEstadisticosHome{padding-top: 450px;}
    .itemDatoEstadistico {
        width: 40%;
        margin: 10px;
    }
    .itemDatoEstadistico strong:nth-child(1) {
        font-size: 35px;
    }
    .itemDatoEstadistico p:last-child {
        font-size: 12px;
    }
    .itemNuestraVentaja p:last-child{
        display: none;
    }
    .itemsBlogsHome {
        width: 95%;
    }
    .itemDetalleHabitacion {
        width: 50%;
    }
    .tituloBannerPage {
        width: 95%;
        top: initial;
        bottom: 10px;
    }
    
    .tituloBannerPage h1, .tituloBannerPage p {
        font-size: 35px;
    }
    .itemsBlogsRecienteHome {
        width: 100%;
    }
    .paginaGaleriaPage .responsive-tabs ul.responsive-tabs__list {
        display: flex;
        flex-wrap: wrap;
        margin: 20px auto;
    }
    .itemTarifaRooms {
        width: 100%;
    }
    .habitacionHome .item {
    flex-direction: column-reverse;
    padding: 0 10px;
    box-sizing: border-box;
}

.habitacionHome .item img, .informacionGeneralHabitacion {
    width: 100% !important;
}
section.columnasFooter{padding-bottom: 20px;}
.copyright p {
    font-size: 13px;
    text-align: center;
    line-height: 22px;
}
}