*{
    margin: 0;
    padding: 0;
}



/*------------------header------------------------*/
.nav-header{
    padding: 10px;
    background-color: #8C52FF;
    font-family: 'Balsamiq Sans', cursive;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
}
nav ul{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    justify-items: center;
    align-items: center;
    list-style-type: none;
}
a{
    color: aliceblue;
    text-decoration: none;
}
@media (max-width: 500px){
    .nav-header{
        justify-content: center;
        font-size: 1.8vh;
    }
    nav ul{
        width: 100%;
    }
}
@media (min-width: 501px) and (max-width: 900px){
    .nav-header{
        justify-content: center;
    }
    nav ul{
        width: 100%;
    }
}

/*----------------fin header-----------------------*/

/*--------------------- PORTADA --------------------*/
.portada{
    width: 100%;
    height: 35%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.titulo, .logo{
    width: 50%;
    background-color: #8C52FF;
    font-family: 'League Spartan', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: space-evenly;
}
.titulo-sub{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
#logo img{
    border-radius: 0%;
    padding: 10%;
    animation: bounceInLeft;
    animation-duration: 2s;
}
.titulo p{
    font-size: 15vh;
    color: aliceblue;
    animation: bounceInRight;
    animation-duration: 2s;
}
#t1{
    width: auto;
    height: 10%;
}
#t1 p{
    background-color: #F62AA0;
}
#t2{
    width: 70%;
    height: 10%;
    margin-top: 20px;
}
@media (max-width: 500px){
    .portada{
        flex-direction: column;
        align-items: center;
    }
    .titulo,.logo{
        width: 100%;
        padding: 5vh;
    }
    .titulo-sub{
        align-items: center;
        padding: 0 0 7vh 0;
    }
    .titulo p{
        font-size: 8vh;
    }
    #t1,#t2{
        width: 100%;
        display: flex;
        margin-top: 5%;
        justify-content: center;
        align-items: center;
    }
    
}
@media (min-width: 501px) and (max-width: 700px){
    #logo img{
        padding: 0%;
        width: 60%;
    }
    .portada{
        flex-direction: column;
        align-items: center;
    }
    .titulo,.logo{
        width: 100%;
        align-items: center;
    }
    .titulo{
        padding-bottom: 5vh;
    }
    .titulo-sub{
        align-items: center;
    }
    .titulo p{
        font-size: 10vh;
    }
    #t1,#t2{
        display: flex;
        margin-top: 5px;
        justify-content: center;
        align-items: center;
    }
}
@media (min-width: 701px) and (max-width:1000px){
    .titulo p{
        font-size: 8vh;
    }
    .titulo p{
        font-size: 10vh;
    }
}
/*---------------------- FIN PORTADA -----------------*/

/*---------------------IMAGES-----------------*/
.images{
    background-color: #F62AA0;
    padding: 15vh 0 15vh 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.images img{
    width: 90%;
    height: 50%;
    border-radius: 10%;
}
.img-1,.img-2,.img-3{
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 80vh;
    justify-content: center;
    align-items: center;
}
.img-1,.img-3{
    justify-content: flex-start;
}
.img-2{
    justify-content: flex-end;
}
@media (max-width: 500px){
    .images{
        flex-direction: column;
        justify-content: center;
    }
    .images img{
        width: 60%;
        height: 90%;
        border-radius: 5%;
    }
    .img-1,.img-2,.img-3{
        width: 100%;
        height: 30vh;
        justify-content: center;
    }
}
@media (min-width: 501px) and (max-width: 900px){
    .images img{
        width: 100%;
        height: 50%;
    }
}
/*-------------------FIN IMAGES---------------------*/

/*---------------------NOSOTROS-----------------------*/
.nosotros{
    background-color: #0BB1D3;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 15vh 0 15vh 0;
}
.texto{
    font-family: 'League Spartan', sans-serif;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    padding-left: 5vh;
    margin-top: 10vh;
}
.titulo-nos{
    font-size: 12vh;
    margin-bottom: 5vh;
}
.subtitulo-nos{
    width: 60%;
    font-size: 3vh;
    font-family: 'Balsamiq Sans', cursive;
    margin-bottom: 10vh;
}
@media (max-width: 500px){
    .nosotros{
        flex-direction: column;
        padding: 0;
    }
    .titulo-nos{
        font-size: 6vh;
    }
    .subtitulo-nos{
        width: 90%;
        font-size: 2.5vh;
        margin-bottom: 5vh;
    }
    .img-nosotros{
        display: flex;
        justify-content: center;
    }
    .img-nosotros img{
        width: 80%;
        height: 10%;
    }
}
@media (min-width: 501px) and (max-width:1000px){
    .texto{
        width: 60%;
    }
    .titulo-nos{
        width: 100%;
        font-size: 8vh;
        margin-bottom: 5vh;
    }
    .img-nosotros{
        display: flex;
        align-items: center;
    }
    .img-nosotros img{
        width: 100%;
        height: 80%;
    }
    .subtitulo-nos{
        width: 90%;
        font-size: 3vh;
    }
}
/*-------------------FIN NOSOTROS----------------------*/

/*----------- SERVICIOS---------------*/
#servicios{
    background-color: #8C52FF;
    color: aliceblue;
    padding: 5vh 0 10vh 0;
}
.hacer{
    font-size: 8vh;
    display: flex;
    justify-content: center;
    font-family: 'League Spartan', sans-serif;
    padding: 0 0 5vh 0;
}
.cajas-hacer,.cajas-hacer1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Balsamiq Sans', cursive;
    font-size: 2vh;
}
.img{
    width: 50px;
    height: 50px;
    border-radius: 15%;
    display: flex;
    padding: 2vh 0 1vh 0;
}
.caja{
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 2vh 0 2vh;
    background-color: #F62AA0;
    border-radius: 100%;
    border-style: solid;
    border-color: black;
}
.caja1{
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 2vh 0 2vh;
    background-color: #0BB1D3;
    border-radius: 100%;
    border-style: solid;
    border-color: black;
}
#icono{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    
}
.icono-texto{
    width: 85%;
    text-align:center;
    padding: 1vh 0 2vh 0;
}
.icono-titulo{
    color: black;
    text-align: center;
    font-size: 2.5vh;
}
.icono-texto p{
    padding: 1vh;
}
@media (max-width: 500px){
    .hacer{
        font-size: 5vh;
        padding: 2vh;
        text-align: center;
    }
    .cajas-hacer,.cajas-hacer1{
        flex-direction: column;
    }
    .caja,.caja1{
        font-size: 2vh;
        padding: 1vh 0 1vh 0;
        margin: 2vh;
        width: 200px;
        height: 200px;
        justify-content: space-around;
    }
    .img{
        width: 50px;
        padding: 1vh 0 1vh 0;
    }
}
@media (min-width: 501px) and (max-width: 900px){
    .hacer{
        font-size: 7vh;
        text-align: center;
    }
    .cajas-hacer,.cajas-hacer1{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .caja, .caja1{
        font-size: 2vh;
        padding: 1vh 0 1vh 0;
        margin: 2vh;
        width: 230px;
        height: 230px;
        justify-content: space-around;
    }
    .img{
        width: 20%;
    }
}
@media (min-width: 701px) and (max-width: 900px){
    .caja1, .caja2, .caja3{
        font-size: 3vh;
    }
}
/*-----------FIN SERVICIOS----------------*/
/*----------------CONTACTO---------------*/
#contacto{
    background-color: #F62AA0;
    color: aliceblue;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
}
.img-contacto{
    width: 40%;
}
.img-contacto img{
    width: 100%;
    height: 100%;
    display: flex;
}
.contacto-texto{
    width: 60%;
    padding: 0 10vh 0 10vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.titulo-contacto{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5vh 2vh 2vh 2vh;
}
.hablemos{
    font-size: 10vh;
    font-family: 'League Spartan', sans-serif;
    margin: 5vh 0 0 0;
    display: flex;
    text-align: center;
}
.contacto-texto img{
    width: 6vh;
}
.div-datos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 2vh 0 2vh 0;
}
.mail, .ubicacion{
    padding: 2vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-family: 'Balsamiq Sans', cursive;
    font-size: 2vh;
    align-items: center;
}
.mail-in, .ubicacion-in{
    padding: 3vh;
}
.mail-in p{
    padding: 1vh;
}
.redes{
    background-color: #F62AA0;
    justify-content: end;
}
h2{
    margin-bottom: 1em;
}
.form-container{
    font-family: 'Balsamiq Sans', cursive;
    width: 100%;
    margin: 1vh;
    padding: 2vh 0 2vh 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.form-group{
    width: 100%;
    color: white;
    padding: 3vh;
}
.formulario{
    display: grid;
    gap: .5em;
}
.form-input{
    border: none;
    background: none;
    font-size: 1rem;
    padding: .3em .3em;
    outline: none;
    border-bottom: 1px solid white;
}
textarea{
    background-color: #F62AA0;
    border-color: white;
    padding: 1rem;
}
button{
    font-family: 'Balsamiq Sans', cursive;
    width: 15%;
    background-color: aliceblue;
    color: #F62AA0;
    border: 3px;
    border-color: #F62AA0;
    padding: 5px;
}
@media (max-width: 500px){
    #contacto{
        justify-content:center;
    }
    .img-contacto{
        display: none;
    }
    .hablemos{
        padding: 0 0 1vh 0;
        font-size: 6vh;
    }
    .contacto-texto{
        width: 90%;
        padding: 1vh;
        justify-content: center;
    }
    .titulo-contacto{
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }
    .form-container{
        width: 100%;
        margin: 0;
        padding: 0;
        justify-content: center;
        font-size: 2vh;
    }
    button{
        width: 30%;
    }
    .div-datos{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .mail, .ubicacion, .mail-in, .ubicacion-in{
        padding: 0.5vh;
        font-size: 2vh;
    }
}
@media (min-width: 501px) and  (max-width: 700px){
    #contacto{
        justify-content: center;
    }
    .img-contacto{
        display: none;
        width: 0px;
        height: 0px;
    }
    .hablemos{
        padding: 0 0 2vh 0;
        font-size: 8vh;
    }
    .contacto-texto{
        width: 90%;
        padding: 1vh;
        justify-content: center;
    }
    .titulo-contacto{
        flex-direction: column;
        justify-content: center;
    }
    .form-container{
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    button{
        width: 30%;
    }
}
@media (min-width: 701px) and  (max-width: 1000px){
    #contacto{
        justify-content: center;
    }
    .img-contacto{
        width: 50%;
    }
    .img-contacto img{
        width: 100%;
        height: 100%;
        display: flex;
    }
    .hablemos{
        padding: 0 0 2vh 0;
        font-size: 8vh;
    }
    .contacto-texto{
        width: 50%;
        padding: 1vh;
        justify-content: center;
    }
    .titulo-contacto{
        flex-direction: column;
        justify-content: center;
    }
    .form-container{
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    button{
        width: 30%;
    }
    .div-datos{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mail, .ubicacion, .mail-in, .ubicacion-in{
        padding: 1vh;
    }
}
/*---------------FIN CONTACTO----------------*/
