:root
{
    --color_botones_slider: #DB9A00;
    --color_botones_slider_hover: #1B2B67;
    --color_text_gris: #303030;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    font-size: 16px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
.header_primary
{
    z-index: 4;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
}
.img_logo_header
{
    height: 70px;
}
.boton_header
{
    width: 50px;
    height: 50px;
    border: 3px solid var(--color_botones_slider_hover);
    border-radius: 5px;
    background-color: white;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}
.boton_header i
{
    font-size: 35px;
    color: var(--color_botones_slider_hover);
    transition: all 0.3s ease;
}
.boton_header:hover
{
    border: 3px solid var(--color_botones_slider);
}
.boton_header:hover i
{
    color: var(--color_botones_slider);
}
.menu_desplegable
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.clic_fuera
{
    opacity: 0;
    z-index: 3;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

/*responsive*/
@media (max-width: 840px)
{
    .menu_desplegable
    {
        opacity: 0;
        position: absolute;
        top:75px;
        right:0px;
        width: 250px;
        padding: 10px;
        border-radius: 5px 0 0 5px;
        align-items: flex-start !important;
        padding-left: 10px !important;
        flex-direction: column;
        background-color: white;
    }
    .menu_desplegable li
    {
        width: 100%;
        border-bottom: 1px solid var(--color_botones_slider);
    }
    .boton_header
    {
        display: flex;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.cont_espacio_vacio
{
    width: 100%;
    height: 70px;
}
.img_slider_h
{
    width: 100vw;
    height: 91vh;
    object-fit: cover;
    object-position: center;
}
.cont_filtro_fijo
{
    width: 100%;
    height: 100vh;
    position: absolute;
    top:0px;
    background: linear-gradient(45deg, #1B2B67, #1b2b6700);
    padding:0px 30px;
}
.cont_botones
{
    width: 100%;
    /*border: 1px solid red;*/
    padding: 10px 0;
}
.boton_coustom_prev, .boton_coustom_next
{
    width: 50px;
    height: 50px;
    opacity: 1 !important;
    border: 2px solid white;
    position:static;
    border-radius: 50%;
    margin: 5px;
    background-color: var(--color_botones_slider);
    transition: all 0.3s ease;
}
.boton_coustom_prev:hover, .boton_coustom_next:hover
{
    background-color: var(--color_botones_slider_hover);
}

.transparente
{
    background-color: rgba(240, 240, 240, 0.205) !important;
}
.c_azul
{
    opacity: 1;
    background-color: var(--color_azul_bajo) !important;
}

.cont_video_pt1
{
    width: 100%;
    height: 200px;
    /*border: 1px solid red;*/
    padding-right: 50px;
    padding-bottom: 50px;
}
.cont_completo_boton
{
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.circulo_play
{
    z-index: 1;
    width: 120px;
    height: 120px;
    /*border: 1px solid red;*/
    background-color:var(--color_botones_slider) ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    cursor: pointer;
    transition: all  0.3s ease;
}
.circulo_play:hover
{
    background-color: var(--color_botones_slider_hover);
}
.circulo_play i
{
    font-size: 60px;
    color: white;
}

.cont_circulo_animado
{
    z-index: 0;
    position:absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
    animation: crecerYReducir 3s ease-in-out infinite;
}
.cont_total_video
{
    z-index: 3;
    position: fixed;
    opacity: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.cont_total_video video
{
    width: 70%;
}
#cerrar_video
{
    position: fixed;
    top: 80px;
    right: 20px;
    font-size: 40px;
    color: var(--color_botones_slider);
    cursor: pointer;
    transition: all 0.3s ease;
}
#cerrar_video:hover
{
    color: var(--color_botones_slider_hover);
}

@keyframes crecerYReducir 
{
    0%, 100% 
    {
        width: 110px;
        height: 110px;
    }
    100% 
    {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}
/*responsive*/
@media (max-width: 840px)
{
    .cont_espacio_vacio
    {
        height: 6vh;
    }
    .img_slider_h
    {
        height: 94vh;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.img_fondo_pt2
{
    height: 600px;
    background-image: url(../img/img_nosotros_pt2.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.color_amarillo_custom
{
    color: var(--color_botones_slider);
}
.color_azul_custom
{
    color: var(--color_botones_slider_hover);
}
.img_custom_h
{
    width: 50px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.bg_grey_claro
{
    background-color: rgb(240,240,240);
}
.box_habitaciones
{
    width: 100%;
    height: 60vh;
    /*border: 1px solid red;*/
    cursor: pointer;
    transition: all 0.5s ease;
}
.cont_animado_box_habitacion
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transform: heigt;
    transition: all 0.5s ease;
}
.cont_animado_box_habitacion h3
{
    color: white;
    transition: all 0.3s ease;
}
.cont_animado_box_habitacion p
{
    color: white;
    transition: all 0.3s ease;
}
.box_habitaciones:hover .cont_animado_box_habitacion h3
{
    color: black;
}
.box_habitaciones:hover .cont_animado_box_habitacion p
{
    color: black;
}
.box_habitaciones:hover .cont_animado_box_habitacion
{
    height: 70%;
    background-color: rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
}
.boton_reservar
{
    width: 250px;
    height: 50px;
    border: 2px solid white;
    border-radius: 30px;
    background-color: var(--color_botones_slider_hover);
    font-size: 1.2rem;
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
}
.cont_boton_reservar_izq
{
    width: 80%;
    height: 100%;
}
.cont_boton_reservar_der
{
    width: 20%;
    height: 100%;
}
.cont_boton_reservar_der i
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 35px;
    transition: all 0.8s ease;
}
.box_habitaciones:hover .boton_reservar
{
    opacity: 1;
}
.boton_reservar:hover .cont_boton_reservar_der i
{
    transform: rotate(335deg);
}

.habitacion_1
{
    background-image: url(../img/img_habitacion_1.jpg);
    background-position: center;
    background-size: cover;
}
.habitacion_2
{
    background-image: url(../img/img_habitacion_2.jpg);
    background-position: center;
    background-size: cover;
}
.habitacion_3
{
    background-image: url(../img/img_habitacion_3.jpg);
    background-position: center;
    background-size: cover;
}
.habitacion_4
{
    background-image: url(../img/img_habitacion_4.jpg);
    background-position: center;
    background-size: cover;
}

/*responsive*/
@media (max-width: 840px)
{
    .cont_animado_box_habitacion
    {
        height: 70%;
        background-color: rgba(255, 255, 255, 0.4);
        clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
    }
    .boton_reservar
    {
        opacity: 1;
    }
    .cont_animado_box_habitacion h3
    {
        color: black;
    }
    .cont_animado_box_habitacion p
    {
        color: black;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.img_fondo_pt4
{
    height: auto;
    background-image: url(../img/img_fondo_pt4.jpg);
    background-position: right;
    background-size:cover;
    background-repeat: no-repeat;
}
/*responsive*/
@media (max-width: 840px)
{
    .img_fondo_pt4
    {
        background-image: url(../img/img_fondo_pt4_movil.jpg);
        background-position: bottom;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*quinta parte*/
.img_galeria_pt5
{
    cursor: pointer;
    transition: all 0.3s ease;
}
.img_galeria_pt5:hover
{
    scale: 1.02;
}
.galeria_visualizador
{
    z-index: 4;
    position: fixed;
    opacity: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}
#cerrar_galeria
{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--color_botones_slider);
    cursor: pointer;
    transition: all 0.3s ease;
}
#cerrar_galeria:hover
{
    scale: 1.2;
}

#img_visualizador
{
    width: 60%;
}

/*responsive*/
@media (max-width: 840px)
{
    #img_visualizador
    {
        width: 90%;
    }
}
@media (max-width: 570px)
{
    #img_visualizador
    {
        width: 100%;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.contenedor_footer
{
    width: 100%;
    height: auto;
    background-image: url(../img/neruc_footer.png);
    background-size: cover;
    background-position: bottom;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.filtro_footer
{
    width: 100%;
    height: auto;
    padding-top: 50px;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
    background-color: rgba(38, 47, 78, 0.703);
    display: flex;
    align-items:flex-end;
    justify-content: center;
}
.cont_informacion_footer
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid green; */
}
.cont_logo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    border-bottom: 1px solid white;
    padding: 10px 0;
}
.cont_logo_footer img
{
    height: 80px;
}
.cont_arriba_footer
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content:space-between;
    padding: 10px 0;
}
.cont_izq_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.cont_izq_footer p
{
    font-size: 17px;
    color: white;
    text-align: justify;
}
.cont_der_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    /* border: 1px solid red; */
}
.cont_der_footer h2
{
    font-size: 17px;
    color: white;
    font-weight: 500;
    padding-bottom: 30px;
}
.cont_redes_footer
{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.boton_red_footer
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 10px;
    margin: 2px 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_red_footer:hover
{
    transition: all 0.3s;
    border: 2px solid grey;
}
.boton_red_footer:hover i
{
    transition: all 0.3s;
    color: grey;
}
.boton_red_footer i
{
    font-size: 20px;
    color: white;
}
.cont_abajo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
    padding: 10px 0;
}
.cont_abajo_footer_izq
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer_der
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer h3
{
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    padding-bottom: 10px;
}
.cont_abajo_footer img
{
    height: 40px;
}

.verde
{
    background-color: #12BB18;
}
.azul
{
    background-color: #124dbb;
}
.morado
{
    background-color: #875A7B;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*Responsive*/
@media screen and (max-width:840px){
    /*footer*/
    .cont_arriba_footer
    {
        flex-direction: column;
    }
    .cont_izq_footer
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .cont_der_footer
    {
        width: 100%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*footer*/
    .cont_logo_footer
    {
        justify-content:center;
    }
    .cont_izq_footer p
    {
        text-align: center;
    }
    .cont_abajo_footer
    {
        flex-direction: column;
    }
    .cont_abajo_footer_izq
    {
        padding: 10px 0;
    }
    .cont_abajo_footer_der
    {
        padding: 10px 0;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*footer*/
    .cont_logo_footer img
    {
        height: 60px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}