.cont-top{
    margin-top: 50px;
}
.quienes_somos{
    width: 100%;
    height: auto;
     font-size: 1.4rem;
     text-align: left;
     padding: 20px;
}
.promecom_img{
    width: 100%;
    height: 500px;
    background-color: aliceblue;
    background-image: url('../img/nosotros/BannerNosotros.png');
    background-size: cover;
}
.mision{
    width: 100%;
    text-align: left;
    font-size: 1.4rem;
    padding: 10px;
}
.vision{
    width: 100%;
    height: auto;
    display: flex;
    padding: 10px;
}
.vision_txt{
    width: 50%;
    height: auto;
    font-size: 1.4rem;
}
.vision_img{
    width: 32%;
    height: auto;
    background-image: url('../img/nosotros/icon-caja.png');
    background-size: cover;
}

/*Animado */
.animado{
    opacity: 0;
    transition: all 0.6s;
}
.lado{
    animation: moverarriva 1.6s;
}

@keyframes moverarriva{
    0%{transform: translateY(70px);}
    100%{transform: translateY(0px);}
}

@media screen and (max-width:800px){
    .banner{
        width: 100%;
        height: 135px;
        background: url("../img/nosotros/BannerMenus.png");
        background-size: cover;
        margin-top: 23px;
    }
    .quienes_somos{
        width: 80%;
        height: auto;
        margin: auto;
        font-size: 1.7rem;
        text-align: left;
        padding: 20px;
    }
    .mision{
        width: 80%;
        text-align: left;
        margin: auto;
        font-size: 1.7rem;
        padding: 10px;
    }
    .vision{
        width: 80%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        margin: auto;
        padding: 10px;
    }
    .vision_txt{
        width: 100%;
        height: auto;
        font-size: 1.7rem;
    }
    .vision_img{
        display: none;
    }
}