.nosotros {
    box-sizing: border-box;
    width: 98%;
    margin: 1em auto;
    display: block;
}
.nosotros .foto {
    box-sizing: border-box;
    width: 300px;
    margin: auto;
    padding: 0 1em 1em;
    float: none;
}
.nosotros .texto {
    box-sizing: border-box;
    font-size: .8em;
    line-height: 1.5em;
    padding: 0 1em 2em;
}
@media only screen and (min-width: 1024px){
    .nosotros {
        width: 90%;
        max-width: 1000px;
        margin: 2em auto;
    }
    .nosotros .foto {
        float: left;
    }
    .nosotros .texto {
        font-size: 1em;
        line-height: 2em;
    }
}