.nosotros{
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.container__about{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.picture__about{
    width: 95%;
}
.picture__about img{
    width: 100%;
    -webkit-box-shadow: 10px 11px 5px -1px rgb(0 0 0 / 27%);
    -moz-box-shadow: 10px 11px 5px -1px rgba(0,0,0,0.27);
    box-shadow: 10px 11px 5px -1px rgb(0 0 0 / 27%);
    border-radius: 30px 120px 30px 30px;
}
.container__about-text{
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-family: roboto;
    color: #5d5a5a;
    font-size: 1.2rem;
    margin-top: 2em;
}
@media (min-width: 768px) { 
    .picture__about{
        width: 70%;
    }
}
@media (min-width: 1024px) {
    .nosotros{
        flex-direction: row;
    }
    .container__about{
        flex-direction: row;
    }
    .picture__about{
        width: 30%;
    }
    .container__about-text{
        width: 55%;
        padding-right:0.05rem ;
    }
 }
