.institucional-content {
    display: flex; 
    flex-direction: row;
    width: 100vw;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 3rem;
}

.institucional-content div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25vw;
    height: 55vh;
    background-color: transparent;
    border: 4px solid #B5A47A;
    margin: auto 2rem auto 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.886);
    transition: linear 500ms;
}

.institucional-content div h3 {

    background-color: transparent;
    box-shadow: none;
    color: #D9D9D9;
    font-size: 1.5rem;
    text-align: center;
}

.institucional-content div p {
    color: #D9D9D9;
    text-align: justify;
    max-width: 22.5vw;
    margin: auto;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Mountserrat', sans-serif;
}

.institucional-content div:hover {
    transform: scale(1.1);
    filter: invert(1);
    background-color: #322e2c;
    border: none;
}

.institucional-content div img {
    filter: invert(1);
    margin-top: 1rem;
    height: 4rem;
}

.institucional {
    height: 85vh;
}

@media only screen and  (max-width:850px) {

    .institucional {
        height: auto;
    }
    .institucional-content div {
        width: 70vw;
        margin-bottom: 2rem;
    }

    .institucional-content div p {
        width: 60vw;
        max-width: 60vw;
    }
}