/* pagina 404 */
body.error404 #masthead, body.error404 #colophon, body.error404 .prenav{
    display: none !important;
}
body.error404 .error-404{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
body.error404 .error-404 .contenedor-texto{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.error404 .error-404 .contenedor-texto h1{
    color: white;
    font-size: 10vw;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
}
body.error404 .error-404 .contenedor-texto h2{
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2vw;
    margin-bottom: 0;
}
body.error404 .error-404 .contenedor-texto p{
    font-size: 1vw;
    margin-bottom: 50px;
    line-height: 1.2;
    opacity: 0.8;
    color: white;
}
body.error404 .error-404 .contenedor-texto .boton{
    background-color: var(--color-marca-tercero);
    color: white;
    padding: 1vw 2.5vw;
    border-radius: 5px;
    font-size: 1vw;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.5);
}
body.error404 .error-404 .contenedor-texto .boton:hover{
    background-color: var(--color-marca-segundo);
}
@media (max-width:767px){
    body.error404 .error-404{
        background-color: rgba(0,0,0,0.6);
        background-blend-mode: overlay;
    }
    body.error404 .error-404 .contenedor-texto h1{
        font-size: 90px;
    }
    body.error404 .error-404 .contenedor-texto h2{
        font-size: 24px;
    }
    body.error404 .error-404 .contenedor-texto p{
        font-size: 16px;
    }
    body.error404 .error-404 .contenedor-texto .boton{
        font-size: 15px;
        padding: 10px 25px;
    }
}