@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --fondo: #e3d4c1;
    --beige: #b99b77;
    --cafe: #644b37;
    --verde: #8f917e;
    --verde-oscuro: #252b15;
    --montserrat: "Montserrat", sans-serif;
    --instrument: "Instrument Serif", serif;;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
.top{
    width: 100%;
    height: 120px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-weight: 400;
    background-color: #FFF;
    font-family: var(--montserrat);
    -webkit-font-smoothing:antialiased;
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/*section > *{
    padding-left: 2%;
    padding-right: 2%;
}*/
h1{
    font-size: 4vw;
    font-weight: 400;
    line-height: .75;
    color: #FFF;
    text-align: center;
}
h2{
    font-size: 1.55vw;
    line-height: 1.1;
}
p{
    font-size: .95vw;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF;
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
header > a{
    width: 13%;
    z-index: 13;
}
header img{
	width: 100%;
}

/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 45px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    z-index: 11;
    top: 1vw;
    right: 1%;
    box-sizing: content-box;
    padding: 10px;
}
label span{
    background: #FFF;
    height:6px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(3px,0px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(21px, -4px) rotatez(45deg);
}
.abierto{
    background-color: var(--verde);
}


/*********************
 *        MENU       *
 *********************/
nav{
	position: fixed;
	top: 0px;
	width: 100%;
	height: 100vh;
	background-color: var(--fondo);
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    display: none;
	
}
nav a{
	color: var(--verde-oscuro);
    font-family: var(--instrument);
    text-transform: capitalize;
	font-size: 4vw;
    animation-name: junta;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
nav a:hover{
    animation-name: separa;
}
@keyframes separa{
    from{letter-spacing: 0vw; color: var(--verde-oscuro);}
    to{letter-spacing: .5vw; color: var(--cafe)}
}
@keyframes junta{
    from{letter-spacing: .5vw; color: var(--cafe)}
    to{letter-spacing: 0vw; color: var(--verde-oscuro);}
}

/*********************
 *      INICIO       *
 *********************/
.inicio{
	background-color: var(--fondo);
    padding-left: 3%;
    padding-right: 3%;
	/*padding-top: 10vw;*/
}
.inicio video{
    width: 100%;
    position: absolute;
    bottom: 0px;
}
.inicio > div{
	width: 100%;
	height: 37vw;
	background-image: url(images/banner-principal.png);
	background-position: center center;
	background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*padding-right: 10%;
    padding-left: 10%;*/
}
.inicio > div > h1{
    font-size: 2vw;
    font-weight: 400;
    font-size: 2.7vw;
    text-align: left;
    line-height: 1.1;
    padding-left: 10%;
    text-shadow: 0px 0px 4px rgba(0,0,0,0.6);
}
.inicio > div > h1 > span{
    font-weight: 800;
    font-size: 3.7vw;
}
.inicio > div > p{
    font-size: 1.7vw;
    font-weight: 400;
    text-align: left;
    font-family: var(--instrument);
    padding-left: 10%;
    text-shadow: 0px 0px 4px rgba(0,0,0,0.6);
}
.inicio > aside{
    display: flex;
    width: 100%;
    background-color: #FFF;
}
.inicio > aside > article{
    width: 25%;
    padding: 1vw;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: solid 1px #ccc;
}
.inicio > aside > article > div{
    width: 4vw;
    height: 4vw;
    background-size: 90%;
    background-position: center center;
    background-repeat: no-repeat;
}
.inicio > aside > article:nth-child(1) > div{
    background-image: url(images/icono_restaruante.png);
    background-size: 70%;
}
.inicio > aside > article:nth-child(2) > div{
    background-image: url(images/icono_negocios.png);
}
.inicio > aside > article:nth-child(3) > div{
    background-image: url(images/icono_transporte.png);
}
.inicio > aside > article > h2{
    font-weight: 400;
    font-size: 1.2vw;
    padding-left: 1vw;
    padding-right: 1vw;
    width: calc(100% - 4vw);
}
.inicio > aside > article > h2 > span{
    font-family: var(--instrument);
    font-weight: 400;
    font-size: 1vw;
}
.inicio > aside > article > a{
    background-color: var(--beige);
    color: #FFF;
    font-weight: 700;
    font-size: 1.3vw;
    padding: .5vw;
    padding-right: 2vw;
    padding-left: 2vw;
    border: solid 1px var(--beige);
}
.inicio > aside > article > a:hover{
    background-color: #FFF;
    color: var(--beige);
}

/*********************
 *   QUIENES SOMOS   *
 *********************/
.quienes-somos{
    padding-top: 10vw;
    padding-bottom: 10vw;
}
.quienes-somos h2{
    font-size: 1.5vw;
    color: var(--cafe);
}
.quienes-somos h1{
    font-size: 3.5vw;
    font-family: var(--instrument);
    color: var(--verde);
    margin-top: 1vw;
    margin-bottom: 1vw;
}
.quienes-somos h3{
    font-size: 2.3vw;
    font-family: var(--instrument);
    color: var(--verde);
    margin-top: 6vw;
    margin-bottom: 1vw;
    font-weight: 400;
    text-align: left;
    width: 100%;
}
.quienes-somos p{
    font-size: .9vw;
    color: #000;
    font-weight: 400;
    width: 40%;
    text-align: left;
    margin-right: 60%;
}
.quienes-somos > div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3vw;
}
.quienes-somos > div > img:nth-child(1){
    width: 38%;
    margin-left: 5%;
    margin-top: 1vw;
    margin-bottom: 2vw;
}
.quienes-somos > div > img:nth-child(2){
    width: 45%;
    margin-left: 8%;
    margin-top: 1vw;
}

/*********************
 *     DESCANSO      *
 *********************/
.descanso{
    padding-top: 5vw;
    padding-bottom: 5vw;
    background-color: var(--verde);
    color: #FFF;
}
.descanso img{
    width: 9vw;
    margin-bottom: 5vw;
}
.descanso h1{
    font-size: 3vw;
    line-height: 1.2;
    font-family: var(--instrument);
    font-weight: 400;
}
.descanso p{
    font-size: 1vw;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    padding-top: 7vw;
}

/*********************
 *   HABITACIONES    *
 *********************/
.habitaciones{
    padding-top: 10vw;
    padding-bottom: 7vw;
    background-image: url(images/fondo_1.png);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.habitaciones > aside{
    width: 100%;
    overflow: hidden;
}
.habitaciones > h1{
    font-size: 2.7vw;
    line-height: 1.2;
    font-family: var(--instrument);
    font-weight: 400;
    color: var(--verde);
}
.habitaciones > p{
    color: #000;
    font-size: 1vw;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4vw;
}
.habitaciones> div{
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    justify-content: center;
    width: 100%;
}
.habitaciones a{
    display: block;
    width: 30%;
    margin-left: .65%;
    margin-right: .65%;
}
.habitaciones a > div{
    width: 100%;
    height: 18vw;
    background-size: cover;
    background-position: center center;
}
.habitaciones a > p{
    font-size: .8vw;
    color: #000;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
}
.habitaciones a:nth-child(1) > div, #sencilla-queen{
    background-image: url(images/sencilla-queen.png);
}
.habitaciones a:nth-child(2) > div, #sencilla-king{
    background-image: url(images/sencilla-king.png);
}
.habitaciones a:nth-child(3) > div, #doble-estandar{
    background-image: url(images/doble-estandar.png);
}
.habitaciones a:nth-child(4) > div, #doble-delux{
    background-image: url(images/doble-delux.png);
}
.habitaciones a:nth-child(5) > div, #doble-king{
    background-image: url(images/doble-king.png);
}
.habitaciones a:nth-child(6) > div, #triple-delux{
    background-image: url(images/cuadruple.png);
}
.habitaciones a:nth-child(7) > div, #cuadruple{
    background-image: url(images/cuadruple.jpeg);
}
.habitaciones a:nth-child(8) > div, #triple-estandard{
    background-image: url(images/triple-estandard.png);
}
.habitaciones a:nth-child(9) > div, #ejecutiva{
    background-image: url(images/ejecutiva.png);
}
.habitaciones > a{
    background-color: var(--beige);
    color: #FFF;
    font-weight: 700;
    font-size: 1.3vw;
    padding: .5vw;
    padding-right: 2vw;
    padding-left: 2vw;
    border: solid 1px var(--beige);
    margin-top: 2vw;
    text-align: center;
}
.habitaciones > a:hover{
    background-color: #FFF;
    color: var(--beige);
}
/*********************
 *    AMENIDADES     *
 *********************/
.amenidades{
    padding-top: 10vw;
    padding-bottom: 7vw;
}
.amenidades > aside{
    width: 100%;
    overflow: hidden;
}
.amenidades > h1{
    font-size: 2.7vw;
    line-height: 1.2;
    font-family: var(--instrument);
    font-weight: 400;
    color: var(--verde);
    text-align: left;
    width: 97%;
    padding-bottom: 2vw;
}
/*.amenidades > div{
    display: flex;
    flex-wrap: wrap;
}*/
.amenidades .swiper-slide{
    width: 33%;
}
.amenidades .swiper-slide > div{
    width: 100%;
    height: 18vw;
    background-size: cover;
    background-position: center center;
    background-image: url(images/habitacion2.png);
}
.amenidades .swiper-slide:nth-child(1) > div{
    background-image: url(images/108.png);
}
.amenidades .swiper-slide:nth-child(2) > div{
    background-image: url(images/52.png);
}
.amenidades .swiper-slide:nth-child(3) > div{
    background-image: url(images/87.png);
}
.amenidades .swiper-slide:nth-child(4) > div{
    background-image: url(images/49.png);
}
.amenidades .swiper-slide > article{
    display: flex;
    align-items: center;
}
.amenidades .swiper-slide > article > aside{
    width: 4vw;
    height: 4vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 65%;
}
.amenidades .swiper-slide > article > h2{
    font-size: 1.1vw;
    font-weight: 400;
    padding-left: 2%;
    width: 9vw;
}
.amenidades .swiper-slide > article > h2 > span{
    font-style: italic;
    font-family: var(--instrument);
    font-weight: 400;
}
.amenidades .swiper-slide p{
    font-size: .8vw;
    color: #000;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-right: 30%;
    padding-left: 2%;
    padding-right: 5%;
    text-align: right;
    width: 14vw;
}
.amenidades .swiper-slide:nth-child(1) > article > aside{
    background-image: url(images/icono_negocios.png);
    background-size: 85%;
}
.amenidades .swiper-slide:nth-child(2) > article > aside{
    background-image: url(images/icono_alberca.png);
    background-size: 85%;
}
.amenidades .swiper-slide:nth-child(3) > article > aside{
    background-image: url(images/icono_restaruante.png);
}
.amenidades .swiper-slide:nth-child(4) > article > aside{
    background-image: url(images/icono-gym.png);
    background-size: 90%;
}

/*********************
 *    SALONES     *
 *********************/
.salones{
    padding-top: 10vw;
    padding-bottom: 7vw;
}
.salones > aside{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.salones > h1{
    font-size: 2.7vw;
    line-height: 1.2;
    font-family: var(--instrument);
    font-weight: 400;
    color: var(--verde);
    text-align: left;
    width: 97%;
    padding-bottom: 2vw;
}
.salones aside > div{
    width: 45%;
    margin: 1.5vw;
}
.salones aside > div > div{
    width: 100%;
    height: 28vw;
    background-size: cover;
    background-position: center center;
    background-image: url(images/habitacion2.png);
}
.salones aside > div:nth-child(1) > div{
    background-image: url(images/emilio.png);
}
.salones aside > div:nth-child(2) > div{
    background-image: url(images/ricardo.png);
}
.salones aside > div:nth-child(3) > div{
    background-image: url(images/terraza.png);
}
.salones aside > div:nth-child(4) > div{
    background-image: url(images/anexo.png);
}
.salones aside > div > article{
    display: flex;
    align-items: center;
}
.salones aside > div > article > h2{
    font-size: 1.8vw;
    font-weight: 400;
    padding-left: 2%;
    width: 9vw;
}
.salones aside > div > article > h2 > span{
    font-style: italic;
    font-family: var(--instrument);
    font-weight: 400;
}
.salones aside > div > article > ul{
    font-size: 1.1vw;
    padding-top: 1vw;
}
.salones aside > div > article > ul > li{
    margin-top: .5vw;
}
/*********************
 *    HABITACION     *
 *********************/
.banner{
    width: 100%;
    height: 34vw;
    background-image: url(images/habitacion2.png);
    background-position: center center;
    background-size: cover;
}
.habitacion{
    flex-direction: row;
    padding-top: 5vw;
    padding-bottom: 4vw;
}
.habitacion > aside{
    width: 50%;
    margin-left: 5%;
}
.habitacion > aside > h1{
    font-weight: 700;
    color: var(--verde);
    font-size: 2.5vw;
    width: 60%;
    text-align: left;
    line-height: 1.2;
}
.habitacion > aside > h2{
    font-size: 2.5vw;
    font-family: var(--instrument);
    font-weight: 400;
    color: var(--verde);
    margin-top: 1vw;
}
.habitacion > aside > div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 3vw;
}
.habitacion > aside > div > article{
    display: flex;
    width: 50%;
    align-items: center;
    margin-bottom: 2vw;
}
.habitacion > aside > div > article > img{
    width: 12%;
    display: none;
}
.habitacion > aside > div > article > p{
    width: 80%;
    margin-left: 2%;
    font-size: 1.1vw;
    color: var(--cafe);
}
.habitacion > aside > div > article > p::before{
    content:"> ";
}
.habitacion > div{
    width: 45%;
}
.habitacion > div > img{
    width: 100%;
}
.habitacion > div > a{
    display: block;
    background-color: var(--beige);
    padding: .5vw;
    margin-top: 1vw;
    color: #FFF;
    font-weight: 700;
    font-size: 1.3vw;
    width: 40%;
    text-align: center;
    margin-left: 60%;
    border: solid 1px var(--beige);
}
.habitacion > div > a:hover{
    background-color: #FFF;
    color: var(--beige);
}

/*********************
 *     UBICACION     *
 *********************/
.ubicacion{
    padding-bottom: 10vw;
    flex-direction: row;
    align-items: center;
}
.ubicacion > aside{
    width: 70%;
    height: 50vw;
    background-size: 95%;
    background-image: url(images/mapa.png);
    background-position: left center;
    background-repeat: no-repeat;
}
.ubicacion > div{
    width: 30%;
}
.ubicacion > div > p{
    font-size: 1.2vw;
    font-weight: 400;
    color: var(--verde);
}
.ubicacion > div > p > span{
    font-weight: 600;
}
.ubicacion > div > form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.ubicacion > div > form > p{
    font-size:.9vw;
    font-weight: 600;
    color: var(--verde);
    margin-top: 5vw;
    margin-bottom: 1vw;
}
.ubicacion > div > form > input, .ubicacion > div > form > textarea{
    border:solid 1px var(--verde);
    margin-bottom: .4vw;
    font-size: 1vw;
    padding: .2vw;
    padding-left: 5%;
    font-family: var(--montserrat);
    font-weight: 500;
    width: 90%;
}
.ubicacion > div > form > input, .ubicacion > div > form > article{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ubicacion > div > form > input[type=submit]{
    background-color: transparent;
    border: 0px;
}
/*#ubicacion{
    background-image: url(images/banner-ubicacion.png);
    height: 32vw;
}*/

/*********************
 *      FOOTER       *
 *********************/
footer{
    background-color: var(--verde-oscuro);
     display: flex;
     padding-top: 4vw;
     padding-bottom: 4vw;
     padding-left: 3%;
     padding-right: 3%;
     align-items: flex-end;
}
footer > aside{
        display: flex;
    flex-direction: column;
    width: 45%;
    padding-left: 10%;
    padding-right: 5%;
}
footer > aside > form > p{
    font-size: .8vw;
    margin-bottom: .5vw;
}
footer > aside > form > div{
    display: flex;
}
footer input{
    border: solid 1px #FFF;
    background-color: transparent;
    padding: .3vw;
    width: 70%;
    -webkit-appearance: none;
    font-family: var(--montserrat);
    border-radius: 0px;
}
footer input[type=submit]{
    width: 30%;
    background-color: #FFF;
    font-weight: 600;
    -webkit-appearance: none;
    color: #000;
    border-radius: 0px;
}
footer h2{
    font-size: 1vw;
    color: #FFF;
    font-weight: 700;
    margin-top: 5vw;
}
footer > aside > aside{
    display: flex;
    color: #FFF;
}
footer > aside > aside > a{
    width: 2vw;
    height: 2vw;
    margin-top: 1vw;
    margin-right: 1vw;
    text-align: center;
    font-size: 1.5vw;
}
footer > div{
    width: 28%;
    padding-left: 8%;
    padding-right: 8%;
}
footer > div > img{
    width: 90%;
    margin-bottom: 2vw;
}
footer > div > p{
    font-weight: 700;
    line-height: 2;
}
footer > p{
    width: 22%;
}

@media (max-width: 480px){
    nav a{
        font-size: 12vw;
    }
    header{
        background-color: var(--fondo);
    }
    header > a{
        width: 30%;
        margin-right: 60%;
    }
    label{
        top: 5vw;
        right: 4%;
    }
    .inicio{
        padding-left: 5%;
        padding-right: 5%;
    }
    .inicio > div{
        height: 65vw;
    }
    .inicio > div > h1{
        font-size: 7vw;
    }
    .inicio > div > h1 > span{
        font-size: 9vw;
    }
    .inicio > div > p{
        font-size: 5vw;
    }
    .inicio > aside{
        flex-wrap: wrap;
    }
    .inicio > aside > article{
        width: 100%;
        border:0px;
    }
    .inicio > aside > article > h2{
        font-size: 5vw;
        width: calc(100% - 12vw);
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .inicio > aside > article > h2 > span{
        font-size: 4vw;
    }
    .inicio > aside > article > div{
        height: 12vw;
        width: 12vw;
    }
    .inicio > aside > article{
        padding-top: 5vw;
        padding-bottom: 5vw;
    }
    .inicio > aside > article > a{
        font-size: 4vw;
        padding: 1vw;
        padding-right: 5vw;
        padding-left: 5vw;
    }
    .quienes-somos, .descanso, .habitaciones, footer{
        padding-top: 20vw;
        padding-bottom: 20vw;
    }
    .quienes-somos h2{
        font-size: 7vw;
        padding-bottom: 1vw;
    }
    .quienes-somos h1{
        font-size: 7vw;
    }
    .quienes-somos h3{
        font-size: 6vw;
        width: 100%;
        text-align: center;
    }
    .quienes-somos p{
        width: 100%;
        margin: 0px;
        font-size: 3.5vw;
        padding-bottom: 10vw;
    }
    .quienes-somos > div{
        flex-direction: column;
    }
    .quienes-somos > div > img:nth-child(1){
        width: 100%;
        margin: 0px;
    }
    .quienes-somos > div > img:nth-child(2){
        width: 100%;
        margin: 0px;
        margin-top: 5vw;
    }
    .descanso img{
        width: 30vw;
    }
    .descanso h1{
        font-size: 6vw;
    }
    .descanso p, .habitaciones > p{
        font-size: 4vw;
    }
    .habitaciones > h1{
        font-size: 8vw;
    }
    .habitaciones a{
        width: 100%;
        margin: 0px;
    }
    .habitaciones > div{
        margin-top: 5vw;
    }
    .habitaciones a > div{
        height: 55vw;
    }
    .habitaciones a > p{
        font-size: 3.5vw;
        padding-top: 4vw;
        padding-bottom: 4vw;
        font-weight: 400;
    }
    .habitaciones > a{
        font-size: 5vw;
    }
    .amenidades > h1, .salones > h1{
        font-size: 8vw;
    }
    .amenidades a, .salones aside > div{
        width: 100%;
        margin: 0px;
    }
    .salones aside > div > article{
        padding-top: 3vw;
    }
    .salones aside > div{
        margin-bottom: 10vw;
    }
    .salones aside > div > div{
        height: 50vw;
    }
    .salones aside > div > article > h2{
        font-size: 5vw;
        width: 25vw;
    }
    .salones aside > div > article > ul{
        font-size: 3vw;
    }
    .salones aside > div > article > ul > li{
        margin-bottom: 3vw;
    }
    .amenidades > div{
        margin-top: 5vw;
    }
    .amenidades a > div{
        height: 55vw;
    }
    .amenidades a > p{
        font-size: 3.5vw;
        padding-top: 4vw;
        padding-bottom: 4vw;
        font-weight: 400;
        padding-right: 2%;
    }
    .amenidades a > article{
        padding-top: 3vw;
    }
    .amenidades a > article > aside{
        width: 15vw;
        height: 15vw;
    }
    .amenidades a > article > h2{
        font-size: 5vw;
    }
    .amenidades .swiper-slide > div{
        height: 55vw;
    }
    .amenidades .swiper-slide > article > h2{
        font-size: 5vw;
        width: 28vw;
    }
    .amenidades .swiper-slide p{
        font-size: 3.5vw;
        width: 52vw;
    }
    .amenidades .swiper-slide > article > aside{
        width: 12vw;
        height: 12vw;
    }
    footer{
        flex-direction: column;
    }
    footer > aside{
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    footer > aside > form > p {
        font-size: 4vw;
        margin-bottom: 2vw;
    }
    footer input{
        padding: 1vw;
        font-size: 4vw;
    }
    footer h2{
        font-size: 5vw;
    }
    footer > aside > aside > a {
        width: 10vw;
        height: 10vw;
        margin-top: 2vw;
        margin-right: 5vw;
        text-align: center;
        font-size: 7vw;
    }
    footer > div {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    footer > div > img{
        display: none;
    }
    footer > div > p{
        font-size: 4vw;
        padding-top: 5vw;
        padding-bottom: 5vw;
    }
    footer > p {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 4vw;
    }
    /*#ubicacion{
        height: 90vw;
        background-position: -50vw;
    }*/
    .ubicacion{
        flex-direction: column;
    }
    .ubicacion > aside{
        width: 100%;
        background-size: 100%;
        height: 75vw;
    }
    .ubicacion > div{
        width: 100%;
    }
    .ubicacion > div > p{
        font-size: 4vw;
    }
    .ubicacion > div > form > p{
        font-size: 4vw;
        margin-top: 12vw;
        margin-bottom: 5vw;
    }
    .ubicacion > div > form > input, .ubicacion > div > form > textarea{
        margin-bottom: 2vw;
        font-size: 4vw;
        padding: 1vw;
        width: 100%;
    }
    .ubicacion > div > form > input[type=submit]{
        color: #000;
    }
    .banner{
        height: 70vw;
    }
    .habitacion{
        flex-direction: column;
        padding-top: 15vw;
        padding-bottom: 10vw;
    }
    .habitacion > aside, .habitacion > div {
        width: 100%;
        margin-left: 0%;
    }
    .habitacion > aside > h1{
        font-size: 7vw;
        width: 80%;
    }
    .habitacion > aside > h2{
        font-size: 6vw;
    }
    .habitacion > aside > div{
        margin-top: 5vw;
    }
    .habitacion > aside > div > article > img{
        width: 25%;
    }
    .habitacion > aside > div > article > p{
        font-size: 4vw;
    }
    .habitacion > aside > div > article{
        margin-bottom: 7vw;
    }
    .habitacion > div > a{
        padding: 1vw;
        margin-top: 4vw;
        font-size: 5vw;
        width: 70%;
        margin-left: 15%;
    }
}


a{
	text-decoration: none;
	color: inherit;
	line-height: 1.5;
}


