#banner{
    width: 100%;
    height: 300px;
    border-bottom: 1px solid #ddd;
    background-color: #fafafa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
/*    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),url(../img/miembros.jpg) !important;*/
    display: flex;
    flex-flow: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#banner h2{
    font-family: 'Roboto',sans-serif;
    text-transform: uppercase;
    margin-top: 50px;
    font-size: 2em;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

#banner div{
    display: flex;
    margin-top: 30px;
}

#banner input{
    width: 400px;
    height: 40px;
    padding-left: 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 1.2em;
    font-family: 'Josefin Sans', sans-serif;
/*    margin-top: 30px;*/
}

#banner div > p {
    width: 38px;
    height: 38px;
    margin-left: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
/*    display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#banner div > p:hover{
    background-color: #000;
}

@media (max-width:900px){
    #banner h2{
        width: 88%;
        margin-left: auto;
        margin-right: auto;
    }
}

