header {
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
header #header-logo #logobn{
    display: none;
}
header #header-logo #logo{
    display: inline-block;
}
header #header-menu #header-menu-cont {
    background-color: transparent;
}
header #header-menu #header-menu-lnk #header-menu-icon {
    background-image: url('../../images/menu-blanco.png');
}
header #header-menu #header-menu-lnk,
header #header-menu a {
    color: white;
}
header #header-menu #header-menu-lnk:hover,
header #header-menu a:hover {
    color: #4fc6e6;
}

section {
    width: 100%;
    border-bottom: 2px solid white;
    background-image: url('../../images/login/fondo.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    text-align: center;
}
section h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: italic;
}
section hr {
    max-width: 320px;
    border-top: 2px solid #4fc6e6;
    margin: 15px auto 35px;
}
section input {
    width: 100%;
    max-width: 320px;
    height: 48px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid white;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.5);
    color: white;
}

section .btn-acceso{
    width: 90px;
    height: 90px;
    margin-top: 20px;
    border-radius: 45px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-size: 20px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
}
section .btn-acceso:hover{    
    border: 2px solid #4fc6e6;
    color: #4fc6e6;
}

@media (min-width: 768px) {
    section {
        height: calc(100vh - 140px);
    }
    section .container-fluid {
        padding: 50px 15px 50px;
    }
    section h1 {
        font-size: 26px;
    }
    section h2 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    section {
        height: calc(100vh - 60px);
    }
    section .container-fluid {
        padding: 75px 15px 15px;
    }
    section h1 {
        font-size: 20px;
    }
    section h2 {
        font-size: 16px;
    }
}