.acerca {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.acerca.director {
    background: #032c69;
    flex-direction: column-reverse;

}

.acerca h2 {
    margin: 40px 0;
    font-size: 2rem;

}

.acerca.director h2 {
    color: white;

}

.acerca.director p {
    color: white;

}

.acerca p {
    color: black;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: justify;
}

.acerca>div>div {
    max-width: 600px;
}

.acerca>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.acerca figure {
    width: 100%;
    height: 623px;

}

.acerca figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.acerca>div {
    display: flex;
    flex-direction: column;
    padding: 10px 30px 50px 30px;
}

.acerca.director p:nth-last-of-type(-n+2) {
    margin: 0;
    text-align: right;
}



@media screen and (min-width: 1000px) {
    .acerca {
        flex-direction: row;
    }

    .acerca figure {
        width: 40%;
        height: auto;
    }

    .acerca>div {
        width: 60%;

    }

    .acerca.director {
        flex-direction: row;
    }
}