@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Cirka';
    src: url('fonts/Cirka-Bold.woff2') format('woff2'),
        url('fonts/Cirka-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cirka';
    src: url('fonts/Cirka-Light.woff2') format('woff2'),
        url('fonts/Cirka-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cirka';
    src: url('fonts/Cirka-Regular.woff2') format('woff2'),
        url('fonts/Cirka-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --dorado: #d8c7a3;
    --gris-oscuro: #171717;
    --gris: #3c3c3c;
    --naranja: #f67711;
    --gris-claro: #eaeaea;
    --raleway: "Raleway", sans-serif;
    --cirka: 'Cirka';
}

/*********************
 * ESTILOS GENERALES *
 ********************/
.top{
    width: 100%;
    height: 120px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--raleway);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
    color: var(--gris-oscuro);
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 8vw;
    padding-bottom: 8vw;
    padding-right: 5%;
    padding-left: 5%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
	display: flex;
	justify-content: center;
	align-items: center;
}
h1{
    font-size: 3.7vw;
    font-family: var(--cirka);
    line-height: .9;
    width: 100%;
}
h2{
    font-size: 1vw;
    width: 100%;
    font-weight: 400;
    letter-spacing: .2vw;
}
h3{
    font-size: 5vw;
    font-family: var(--cirka);
}
p{
    font-size: 1.1vw;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}
.tope{
    position: relative;
    width: 100%;
    height: 110px;
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
    height: 110px;
    top: 5vw;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 16;
    /*background-color: rgba(255,255,255,1);*/
    /* box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
    /*background-color: var(--gris-oscuro);*/
}
header > nav{
    width:735px;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}
header > nav > a{
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
    border-radius: 30px;
    color: #FFF;
}
header > nav > a:hover{
    background-color: var(--gris-oscuro);
    color: #FFF;
    background-color: #FFF;
    color: var(--gris-oscuro);
}
header > div{
    width: 100px;
    height: 110px;
}

/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 26px;
    z-index: 20;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: #fff;
    height:2px;
    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(2px,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(12px, -4px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

/*********************
 *      INICIO       *
 ********************/
.inicio{
    height: 60vw;
    justify-content: flex-end;
    align-items: flex-start;
}
.inicio > h1{
    color: #FFF;
    font-weight: 700;
    width: 48%;
    padding-left: 5%;
    padding-bottom: 11vw;
    text-align: left;
}
.inicio > h1 > span{
    color: var(--dorado);
    font-size: 4.2vw;
}
.inicio > div{
    position: absolute;
    width: 90%;
    height: 80%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3vw;
}
.inicio > div > article{
    position: absolute;
    bottom: -4vw;
    right: -2vw;
    width: 36%;
    background-color: var(--gris-oscuro);
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4vw;
    border-radius: 3vw;
}
.inicio > div > article > h1{
    font-size: 3vw;
    color: var(--dorado);
    padding-top: 1vw;
    padding-bottom: 1vw;
}
.inicio > div > article > a{
    border: solid 1px #FFF;
    border-radius: 2vw;
    font-size: 1.2vw;
    padding: .3vw;
    padding-left: 1vw;
    padding-right: 1vw;
    margin-top: 1vw;
    margin-left: 55%;
}
/*********************
 *   NOSOTROS HOME   *
 ********************/
.nosotros-home{
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 2vw;
    padding-bottom: 0px;
    z-index: 2;
}
.nosotros-home > h1{
    color: var(--dorado);
    width: 50%;
    padding-left: 5%;
}
.nosotros-home > h1 > span{
    color: var(--gris-oscuro);
}
.nosotros-home > p{
    padding-left: 5%;
    padding-right: 3%;
    width: 50%;
    font-family: var(--raleway);
    font-size: 1.4vw;
}
.nosotros-home > article{
    width: 23%;
    margin: 1%;
    height: 29vw;
    padding-top: 2vw;
    padding-left: 2.5%;
    padding-right: 2.5%;
    border-radius: 3vw;
    background-color: var(--gris-claro);
    margin-top: 8.5vw;
}
.nosotros-home > article > div{
    width: 100%;
    height: 16vw;
    background-size: cover;
    background-position: center center;
    border-radius: 2vw 2vw 0px 0px;
}
.nosotros-home > article:nth-child(3) > div{
    background-image: url(images/URVE-06.webp);
}
.nosotros-home > article:nth-child(4) > div{
    background-image: url(images/URVE-07.webp);
}
.nosotros-home > article:nth-child(5) > div{
    background-image: url(images/URVE-08.webp);
}
.nosotros-home > article:nth-child(6) > div{
    background-image: url(images/URVE-09.webp);
}
.nosotros-home > article > h2{
    font-family: var(--cirka);
    font-size: 2.2vw;
    padding-top: 3vw;
    font-weight: 700;
    letter-spacing: 0px;
    text-align: center;
    line-height: 1;
}

/*********************
 *  DESCANSO HOME   *
 ********************/
.descanso-home{
    z-index: 1;
    margin-top: -5vw;
    padding-top: 15vw;
    background-color: var(--gris-oscuro);
}
.descanso-home *{
    text-align: center;
}
.descanso-home > h1{
    font-size: 4vw;
    color: #FFF;
}
.descanso-home > h1 > span{
    font-size: 4.5vw;
    color: var(--dorado);
}
.descanso-home > p{
    font-weight: 500;
    font-size: 1.4vw;
    padding-top: 2vw;
    color: #FFF;
}
.descanso-home > img{
    width: 70%;
    margin-top: 2vw;
}
.descanso-home > img:nth-child(1){
    position: absolute;
    width: 20%;
    z-index: 0;
    right: 16vw;
    top: 22vw;
    opacity: .1;
}
.descanso-home > img:nth-child(2){
    position: absolute;
    width: 20%;
    z-index: 2;
    left: 5vw;
    top: 46vw;
}
/*********************
 *   PROYECTOS HOME  *
 ********************/
.proyectos-home{
    padding-top: 15vw;
    padding-bottom: 10vw;
    background-color: var(--gris);
}
.proyectos-home > aside{
    width: 100%;
    overflow: hidden;
}
.proyectos-home article > a{
    width: 100%;
    height: 30vw;
    display: block;
    border-radius: 2vw;
    overflow: hidden;
}
.proyectos-home article > a:hover{
    border: solid 1px #FFF;
}
.proyectos-home article > a > div{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}
.proyectos-home article > h2{
    font-size: 1.5vw;
    font-weight: 600;
    padding-top: 1vw;
    color: #FFF;
}

/*********************
 *     CONTACTO      *
 ********************/
.contacto{
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 9vw;
    padding-bottom: 2vw;
    flex-direction: row;
}
.contacto > div{
    width: 45%;
    height: 45vw;
    /*border-radius: 4vw;*/
    background-image: url(images/WEB_URVE.webp);
    background-position: left center;
    background-size: cover;
}
.contacto > form{
    width: 55%;
    padding-left: 8%;
    padding-right: 8%;
}
.contacto > form > h1{
    color: var(--dorado);
}
.contacto > form > h1 > span{
    color: var(--gris-oscuro);
}
.contacto > form > p{
    font-weight: 700;
    font-size: 1.7vw;
    padding-top: 1.5vw;
    padding-bottom: 2vw;
}
.contacto > form > input, .contacto > form > textarea{
    width: 100%;
    background-color: var(--gris-claro);
    font-size: 1.7vw;
    border: 0px;
    padding: 1vw;
    margin-bottom: 1.5vw;
    font-family: var(--raleway);
}
.contacto > form > div{
    width: 100%;
    justify-content: flex-end;
    display: flex;
}
.contacto > form > div > input[type=submit]{
    background-color: var(--gris-oscuro);
    color: #FFF;
    font-size: 1.3vw;
    font-weight: 500;
    border: 0px;
    padding: .5vw;
    width: 8vw;
    border-radius: 2vw;
    margin-top: 1vw;
    cursor: pointer;
}
/*********************
 *       FOOTER      *
 ********************/
footer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 7vw;
    padding-bottom: 0vw;
    z-index: 3;
}
footer > div{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 8%;
    padding-right: 8%;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}
footer > div > h2{
    font-weight: 700;
    font-size: 1.5vw;
    padding-bottom: 2vw;
}
footer > div > h3{
    width: 10%;
    font-size: 1.5vw;
}
footer > div > p{
    width: 90%;
    font-size: 1.4vw;
    font-weight: 500;
    margin-bottom: 1.5vw;
}
footer > aside{
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
    display: flex;
    padding-top: 5vw;
}
footer > aside > div{
    width: 10%;
    /*background-color: #FA0;*/
}
footer > aside > div > svg .st4{
    fill:var(--gris-oscuro);
}
footer > aside > article{
    width: 90%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    /*background-color: #F00;*/
}
footer > aside > article > nav{
    width: 100%;
    display: flex;
    height: 35px;
    justify-content: flex-end;
    /*background-color: #F0a;*/
}
footer > aside > article > nav > a{
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 500;
    line-height: 35px;
    cursor: pointer;
    border-radius: 30px;
    display: inline-flex;

}
footer > aside > article > nav > a:hover{
    background-color: var(--gris-oscuro);
    color: #FFF;
}
footer > aside > article > a{
    font-size: 18px;
    margin-right: 10px;
}
footer > a{
    position: fixed;
    /*bottom: 25vw;*/
    bottom: 5vw;
    right: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer > a > div{
    display: flex;
    width: 80px;
    height: 80px;
    background-color: var(--gris-oscuro);
    border-radius: 70px;
    border:solid 5px #FFF;
    color: #FFF;
    z-index: 2;
    justify-content: center;
    align-items: center;
    font-size: 48px;
}
footer > a > p{
    display: flex;
    width: 250px;
    height: 60px;
    background-color: var(--gris-oscuro);
    border-radius: 70px;
    border:solid 3px #FFF;
    border-left: 0px;
    color: #FFF;
    margin-left: -45px;
    z-index: 1;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    padding-left: 40px;
}


/*********************
 *     NOSOTROS      *
 ********************/
.banner-nosotros > div{
    background-image: url(images/URVE_2.webp);
}
.nosotros-entrada{
    padding-bottom: 10vw;
}


/*********************
 *     CONTAMOS      *
 ********************/
.contamos{
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0px;
    z-index: 2;
}
.contamos > div{
    width: 30%;
    height: 45vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-position: center center;
    background-size: auto 110%;
}
.contamos > div > *{
    color: #FFF;
    text-align: center;
}
.contamos > div:nth-child(1){
    border-radius: 0vw 5vw 5vw 0vw;
    background-image: url(images/WEB_URVE-15.webp);
}
.contamos > div:nth-child(2){
    width: 37%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    background-color: var(--gris-oscuro);
    border-radius: 5vw;
}
.contamos > div:nth-child(3){
    border-radius: 5vw 0vw 0vw 5vw;
    background-image: url(images/WEB_URVE-16.webp);
}
.contamos > div > p{
    font-size: 1.5vw;
    font-weight: 500;
}
.contamos > div > h2{
    font-size: 5vw;
    font-family: var(--cirka);
    font-weight: 700;
}
.contamos > div > h2:nth-child(4){
    font-size: 4vw;
}
.contamos > div > h1{
    font-size: 17vw;
    font-family: var(--cirka);
    font-weight: 700;
    color: var(--dorado);
}

.proyectos-nosotros{
    margin-top: -5vw;
}


/*********************
 *     PROYECTO      *
 ********************/
.inicio > h1 > span.grande{
    font-size: 6vw;
    font-weight: 400;
}
.inicio > div > article.naranja{
    background-color: var(--naranja);
}
.inicio > div > article.naranja > h1{
    color: var(--gris-oscuro);
    /*font-weight: 400;*/
}
.inicio > div > article.naranja > h4{
    color: var(--gris-oscuro);
    font-weight: 400;
    font-size: 3vw;
    font-family: var(--cirka);
    /*color: var(--dorado);*/
    padding-top: 1vw;
    padding-bottom: 1vw;
}
.inicio > div > aside.terminado{
    position: absolute;
    right: -2vw;
    width: 36%;
    bottom: 24vw;
    background-color: var(--gris-oscuro);
    color: var(--dorado);
    display: flex;
    flex-direction: row;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5vw;
    border-radius: 3vw;
    font-family: var(--cirka);
    font-size: 1.8vw;
}

.inicio > div > aside.preventa{
    position: absolute;
    right: 11vw;
    width: 21%;
    bottom: 24vw;
    background-color: var(--naranja);
    color: #FFF;
    display: flex;
    flex-direction: row;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3vw;
    border-radius: 3vw;
    font-family: var(--cirka);
    font-size: 2.5vw;
}

.modelos .sold-out {
    position: absolute;
    background-color: var(--naranja);
    color: #FFF;
    display: flex;
    flex-direction: row;
    flex-direction: column;
    align-items: center;
    padding: 1.3vw;
    border-radius: 3vw;
    font-family: var(--cirka);
    font-size: 2.5vw;
    width: 20vw;
    height: 6vw;
    z-index: 2;
    transform: rotate(-33deg);
}

/*********************
 * NOSOTROS PROYECTO *
 ********************/
.nosotros-proyecto{
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 2vw;
    padding-bottom: 5vw;
    z-index: 2;
}
.nosotros-proyecto > h1{
    color: var(--gris-oscuro);
    width: 50%;
    padding-left: 5%;
}
.nosotros-proyecto > h1 > span{
    color: var(--naranja);
}
.nosotros-proyecto > p{
    padding-left: 5%;
    padding-right: 3%;
    width: 50%;
    font-family: var(--raleway);
    font-size: 1.4vw;
}

/*********************
 *      VENTAJAS     *
 ********************/
.ventajas{
    flex-direction: row;
    padding-left: 10%;
    padding-right:10%;
    flex-wrap: wrap;
    padding-bottom: 5vw;
    padding-top: 0vw;
}
.ventajas > img{
    width: 46%;
    margin-left: 4%;
}
.ventajas > aside{
    width: 50%;
    padding-right: 5%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.ventajas > aside > div{
    width: 15%;
    height: 5vw;
    background-position: center center;
    background-size: auto 100%;
    margin-bottom: 1vw;
}
.ventajas > aside > p{
    width: 85%;
    padding-left: 5%;
    font-size: 1.4vw;
    margin-bottom: 1vw;
}
.ventajas > aside > div:nth-child(1){
    background-image: url(images/web-2-25.svg);
}
.ventajas > aside > div:nth-child(3){
    background-image: url(images/web-2-26.svg);
}
.ventajas > aside > div:nth-child(5){
    background-image: url(images/web-2-27.svg);
}
.ventajas > aside > div:nth-child(7){
    background-image: url(images/web-2-28.svg);
}


/*********************
 *       BANNER      *
 ********************/
.banner{
    padding: 0px;
    height: 40vw;
    padding-bottom: 3vw;
}
.banner > div{
    width: 85%;
    height: 90%;
    background-position: center center;
    background-size: cover;
    border-radius: 5vw;
}

/*********************
 *      GALERIA      *
 ********************/
.galeria{
    background-color: var(--gris-claro);
    padding-right: 0px;
    height: 50vw;
    padding-left: 0px;
}
.slider-galeria article{
    /*background-color: #FA0;*/
}
.galeria > aside{
    width: 100%;
    /*background-color: #F00;*/
    overflow: hidden;
}
.galeria .swiper-wrapper{
    align-items: center;
}
.galeria article{
    border-radius: 3vw;
}
.galeria .swiper-slide > div {
      width: 100% !important;
      height: 23vw !important;
      opacity: 1 !important;
      opacity: 0.6;
      /*transform: scale(1);*/
      z-index: 2;
      border-radius: 2vw;
      transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
      background-size: cover;

}
.galeria .swiper-slide-active > div {
      width: 100% !important;
      height: 33vw !important;
      opacity: 1 !important;
      transform: scale(1) !important;
      z-index: 2;
      border-radius: 3vw;
}
.galeria-prev, .galeria-next{
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-color: var(--naranja);
    color: #FFF;
    text-align: center;
    line-height: 50px;
    right: 30%;
    cursor: pointer;
}
.galeria-prev{
    left: 30%;
}

/*********************
 *      MODELOS      *
 ********************/
.modelos{
    padding-left: 10%;
    padding-right: 10%;
}
.modelos > aside{
    width: 100%;
    overflow: hidden;
}
.slider-modelos article {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.slider-modelos article > aside{
    width: 33%;
    /*padding-left: 5%;*/
}
.slider-modelos article > aside > h2{
    font-size: 3.5vw;
    font-family: var(--cirka);
    color: var(--naranja);
}
.slider-modelos article > aside > h1{
    font-size: 6vw;
    font-weight: 400;
    font-family: var(--cirka);
}
.slider-modelos article > aside > h3{
    font-size: 2vw;
    font-weight: 700;
    font-family: var(--raleway);
    margin-top: 8vw;
    margin-bottom: 2vw;
}
.slider-modelos article > aside > p{
    font-size: 1.4vw;
}
.slider-modelos article > aside li{
    margin-top: .75vw;
    margin-bottom: .75vw;
}
.slider-modelos article > div{
    width: 65%;
    height: 45vw;
    display: flex;
    align-items: center;
}
.slider-modelos article > div > img{
    width: 49%;
    margin-left: .5%;
    margin-right: .5%;
}
.slider-modelos article > img{
    width: 33%;
}
.modelos-prev, .modelos-next{
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-color: #000;
    color: #FFF;
    text-align: center;
    line-height: 50px;
    right: 5%;
    cursor: pointer;
}
.modelos-prev{
    left: 5%;
}
/*********************
 *     AMENIDADES    *
 ********************/
.amenidades{
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0px;
    padding-right: 0px;
    background-color: var(--gris-claro);
}
.amenidades > h1{
    color: var(--gris-oscuro);
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-bottom: 3vw;
}
.amenidades > h1 > span{
    color: var(--naranja);
}
.amenidades > article{
    width: 16vw;
    margin: 1vw;
    height: 16vw;
    border:solid 1px var(--naranja);
    border-radius: 3vw
}
.amenidades > article > div{
    width: 100%;
    height: 11vw;
    background-position: center center;
    background-size: auto 130%;
    background-repeat: no-repeat;
}
.amenidades > article:nth-child(2) > div{
    background-image: url(images/URVE-10.svg);
}
.amenidades > article:nth-child(3) > div{
    background-image: url(images/URVE-11.svg);
}
.amenidades > article:nth-child(4) > div{
    background-image: url(images/URVE-12.svg);
}
.amenidades > article:nth-child(5) > div{
    background-image: url(images/URVE-14.svg);
}
.amenidades > article:nth-child(6) > div{
    background-image: url(images/URVE-13.svg);
}
.amenidades > article > h2{
    width: 100%;
    text-align: center;
    font-size: 1.1vw;
}

/*********************
 *     SERVICIOS     *
 ********************/
.servicios{
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0px;
    padding-right: 0px;
}
.servicios > h1{
    color: var(--gris-oscuro);
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-bottom: 3vw;
}
.servicios > h1 > span{
    color: var(--naranja);
}
.servicios > article{
    width: 21vw;
    margin: 1vw;
    height: 21vw;
    border:solid 1px var(--gris-oscuro);
    border-radius: 3vw
}
.servicios > article > div{
    width: 100%;
    height: 16vw;
    background-position: center center;
    background-size: auto 90%;
    background-repeat: no-repeat;
}
.servicios > article:nth-child(2) > div{
    background-image: url(images/URVE-06.svg);
}
.servicios > article:nth-child(3) > div{
    background-image: url(images/URVE-07.svg);
}
.servicios > article:nth-child(4) > div{
    background-image: url(images/URVE-08.svg);
}
.servicios > article:nth-child(5) > div{
    background-image: url(images/URVE-09.svg);
}
.servicios > article > h2{
    width: 100%;
    text-align: center;
    font-size: 1.3vw;
    padding-left: 5%;
    padding-right: 5%;
}

.preventa{

}

.gracias{
    height: 35vw;
    padding-left: 10%;
    padding-right: 10%;
    align-content: center;
    justify-content: center;
}
.gracias *{
    text-align: center;
}
.gracias h2{
    margin-top: 1vw;
}

@media (max-width: 480px){
    h1{
        font-size: 10vw;
    }
    h2{
        font-size: 4vw;
    }
    p{
        font-size: 4vw;
    }
    h3{
        font-size: 5vw;
    }
    header{
        height: 80px;
    }
    header > div{
        height: 60px;
        width: 160px;
    }
    header > nav > a:nth-child(1){
        display: none;
    }
    header > nav > a{
        padding-left: 12px;
        padding-right: 12px;
    }
    section{
        padding-top: 15vw !important;
        padding-bottom: 15vw !important;
    }
    .inicio{
        padding-top: 4vw;
        padding-bottom: 4vw;
        height: 140vw;
    }
    .inicio > div{
        height: 85%;
    }
    .inicio > h1{
        width: 80%;
        padding-bottom: 65vw;
        padding-left: 10%;
        line-height: .8;
    }
    .inicio > h1 > span{
        font-size: 7vw;
    }
    .inicio > h1 > span.grande{
        font-size: 8vw;
    }
    .inicio > div > article{
        width: 80%;
    }
    .inicio > div > article > h1{
        font-size: 8vw;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }
    .inicio > div > article > p{
        margin-bottom: 3vw;
    }
    .inicio > div > article > a{
        font-size: 4vw;
        margin-left: 50%;
        margin-top: 3vw;
        padding: 2vw;
    }
    .nosotros-home{
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 10vw !important;
    }
    .nosotros-home > h1{
        width: 100%;
        padding-left: 0px;
        font-size: 9vw;
    }

    .nosotros-home > p{
        width: 100%;
        padding: 0px;
        font-size: 4vw;
        margin-top: 4vw;
    }
    .nosotros-home > article{
        width: 48%;
    }
    .nosotros-home > article > div{
        height: 32vw;
    }
    .nosotros-home > article > h2{
        font-size: 4vw;
    }
    .nosotros-home > article{
        height: 44vw;
    }
    .descanso-home {
        padding-left: 10%;
        padding-right: 10%;
    }
    .descanso-home > h1{
        font-size: 10vw;
    }
    .descanso-home > h1 > span{
        font-size: 7vw;
    }
    .descanso-home > p{
        font-size: 4vw;
    }
    .proyectos-home article > a{
        height: 50vw;
    }
    .proyectos-home article > h2{
        font-size: 5vw;
        padding-top: 3vw;
    }
    .contacto{
        padding-bottom: 5vw !important;
        flex-direction: column;
    }
    .contacto > form {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }
    .contacto > div{
        width: 85%;
        height: 50vw;
        margin-top: 7vw;
    }
    .contacto > form {
        margin-bottom: 5vw;
    }
    .contacto > form > p{
        font-size: 4vw;
        margin-bottom: 5vw;
        margin-top: 3vw;
    }
    .contacto > form > input{
        font-size: 4vw;
        margin-bottom: 4vw;
    }
    .contacto > form > div > input[type=submit]{
        font-size: 4vw;
        padding: 1.5vw;
        width: 20vw;
        margin-top: 2vw;
    }
    .contacto > form > h1{
        line-height: .7;
    }
    .contacto > form > h1 > span{
        font-size: 7vw;
    }
    footer{
        padding-bottom: 5vw;
    }
    footer > div{
        width: 100%;
        margin-top: 6vw;
    }
    footer > aside{
        align-items: center;
        padding-left: 6%;
        padding-right: 6%;
    }
    footer > aside > div{
        width: 20%;
    }
    footer > div > h2{
        font-size: 6vw;
    }
    footer > div > h3{
        font-size: 4vw;
        width: 8%;
    }
    footer > div > p{
        font-size: 4vw;
    }
    footer > aside > article > nav{
        display: none;
    }
    footer > a {
        position: fixed;
        bottom: 20vw;
        right:-8%;
        scale: .6;
    }
    .contamos{
        padding-top: 0px !important;
    }
    .inicio > div > article.naranja > h4{
        font-size: 5vw;
    }
    .nosotros-proyecto{
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
    .nosotros-proyecto > h1{
        width: 100%;
        padding: 0px;
    }
    .nosotros-proyecto > p {
        padding-left: 0%;
        padding-right: 0%;
        width: 100%;
        font-family: var(--raleway);
        font-size: 4vw;
        margin-top: 4vw;
    }
    .ventajas{
        padding-left: 10% !important;
        padding-right: 10% !important;
        padding-top: 0px !important;
    }
    .ventajas > aside{
        width: 100%;
        padding: 0px;
    }
    .ventajas > aside > div{
        height: 15vw;
    }
    .ventajas > aside > p{
        font-size: 4vw;
        margin-bottom: 5vw;
    }
    .ventajas > img {
        width: 100%;
        margin-left: 0%;
        margin-top: 5vw;
    }
    .slider-modelos article > aside > h2{
        font-size: 7vw;
    }
    .slider-modelos article > aside > h1{
        font-size: 11vw;
    }
    .slider-modelos article > aside > h3{
        font-size: 5vw;
    }
    .slider-modelos article{
        flex-direction: column;
    }
    .slider-modelos article > aside{
        width: 100%;
        padding: 0px;
        margin: 0px;
        margin-bottom: 4vw;
        padding-left: 15%;
        padding-right: 15%;
    }
    .slider-modelos article > img{
        width: 70%;
        margin-left: 15%;
    }
    .modelos-prev, .modelos-next{
        scale: .7;
    }
    .amenidades > article > h2{
        font-size: 4vw;
    }
    .amenidades > article {
        width: 27vw;
        margin: 2vw;
        height: 24vw;
        padding-top: 2vw;
    }
    .servicios > h1{
        margin-bottom: 6vw;
    }
    .servicios > article > h2{
        font-size: 4vw;
    }
    .servicios > article {
        width: 40vw;
        margin: 2vw;
        height: 32vw;
        border-radius: 3vw;
    }
    .banner{
        height: 54vw;
        padding-top: 0px !important;
    }
    .galeria{
        height: 85vw;
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
    .galeria-prev, .galeria-next{
        scale: .7;
    }
    .galeria-prev{
        left: 5%;
    }
    .galeria-next{
        right: 5%;
    }
    .galeria .swiper-slide-active > div, .galeria .swiper-slide > div{
        height: 50vw !important;
    }
    .banner-nosotros > h1{
        padding-bottom: 42vw;
    }
    .descanso-home > img:nth-child(2){
        top: 75vw;
    }
    .descanso-home > img:nth-child(1){
        right: 7vw;
        top: 40vw;
    }
    .modelos .sold-out{
        font-size: 5vw;
        width: 40vw;
        height: 10vw;
        border-radius: 6vw;
        top: 40vw;
    }
}


