*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: 100%;
}
header{
    width: 100%;
    height: 110px;
    background: #93278F;
    display: flex;
}
.cabeza{
    width: 90%;
    height: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.cabeza .parte1{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cabeza .parte1 img{
    width: 80px;
    height: 80px;
}
.cabeza .titulo{
    display: flex;
    flex-direction: column;
    margin-left: 5%;
}
.titulo h1{
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
}
.titulo h3{
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #FFFF00;
}
.cabeza .parte2{
    width: 25%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.parte2 h1{
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
}
.parte2 a{
    text-decoration: none;
    font-family: 'Roboto';
    font-size: 18px;
    margin-top: 3%;
    color: #FFFF00;
    font-weight: 500;
}
.contenido{
    width: 100%;
    height: 100%;
/*    min-height: 800px;*/
}
footer{
    width: 100%;
    height: 40px;
    background: #662D91;
    bottom: 0;
    display: flex;
    position: absolute;
}
.grupo-pie{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.logo-footer{
    width: 30px;
    height: 30px;
}
.logo-footer img{
    width: 100%;
}
.info-pie{
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.info-pie h2{
    margin-left: 10%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #ffffff;
    text-align: right;
    font-size: 18px;
}
.informacion-contacto{
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
    color: #F7931E;
    text-align: right;
    font-size: 12px;
}

/*//////////////////////////////////////  MEDIA QUERIE //////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (min-width: 800px) and (max-width:900px){
    .titulo h1{
        font-size: 30px;
    }
    .titulo h3{
        font-size: 20px;
    }
    .parte2 h1{
        font-size: 28px;
    }
}

@media screen and (min-width: 700px) and (max-width: 799px){
    .titulo h1{
        font-size: 26px;
    }
    .titulo h3{
        font-size: 18px;
    }
    .cabeza .parte2{
        width: 35%;
    }
    .parte2 h1{
        font-size: 24px;
    }
    footer{
        position: absolute;
    }
}
@media screen and (min-width: 600px) and (max-width: 699px){
    .cabeza .parte1 img{
        width: 60px;
        height: 60px;
    }
    .contenido{
        min-height: 1000px;
    }
    .titulo h1{
        font-size: 26px;
    }
    .titulo h3{
        font-size: 18px;
    }
    .parte2 h1{
        font-size: 20px;
    }
    footer{
        position: relative;
    }
    .info-pie{
        width: 50%;
    }
}
