html, body{
    height: 100%;
    font-family: 'Roboto', sans-serif; 
}
body{
    margin: 0px;
}
a{
    font-weight: 500;
    color: #FF0000;
    text-decoration: none;
}
a:hover,
a:focus,
a:active{
    text-decoration: underline;
    cursor: pointer;
}
.wrapper-mantenimiento{
    position: relative;
    background-image: url('img/fondo_manteinance.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100%;
    width: 100%;
    z-index: -2;
    display: flex;
    align-items: center;
}
.wrapper-mantenimiento:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background-image: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,1) 95%, rgba(255,0,0,0));    
    z-index: -1;
}
.wrapper-info{
    width: 55%;
    padding: 30px;
    box-sizing: border-box;
}
.logo{
    max-height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.container-logo,
.container-localizacion{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mantenimiento-info{
    padding: 30px;
    box-sizing: border-box;
    border: 5px solid #FF0000;
    font-weight: 700;
}
.container-logo > div,
.container-localizacion > div{
    flex: 1 1 0;
}
.container-localizacion{
    width: 55%;
    float: right;
    margin-top: 60px;
}
.sede{
    font-weight: 700;
}
.localizacion{
    box-sizing: border-box;
    padding: 15px;
}

@media screen and (max-width: 1200px) {
    .container-localizacion{
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
    }
    .container-logo{
        flex-direction: column;
        flex-wrap: wrap;
    }
    .logo{
        margin-bottom: 30px;
    }
    .wrapper-info{
        width: 100%;
    }
    .wrapper-mantenimiento:before{
        width: 100%;
        background-image: none;
        background-color: rgba(255,255,255, 0.85);
    }
}
@media screen and (max-width: 767px) {
    .container-localizacion > div{
        flex: 1 1 100%;
    }
    .container-localizacion .localizacion{
        margin-bottom: 30px;
    }
    .container-localizacion .localizacion:first-child{
        padding-bottom: 30px;
        border-bottom: 2px solid #FF0000;
    }
}

