 *{
    margin: 0px;
    padding: 5px;
    box-sizing: border-box;
}

.padre{
    display: flex;
    flex-flow: column nowrap;
}
    .header-we{
        
        display: flex;
        flex-flow: column nowrap;
    }
        .menu-we{
            /* background: orange; */
            display: flex;
            flex-flow: row nowrap;
            height: 100px;
            align-items: center;

        }
            .logo-we{
                /* background: yellowgreen; */
                flex: 1 1 auto;
                height: 30px;
            }
            .nav-we{
                /* background: yellowgreen; */
                flex: 5 1 auto;
                height: 30px;
            }
            .social-we{
                /* background: yellowgreen; */
                flex: 1 1 auto;
                height: 30px;
            }
        .texto-ppal-we{
            background: #fff;
        }
            .img-we{
            
                width: 99%;
            }
    .section-we{
        /* background: #000; */
        display: flex;
    }
        .articulos-we{
            /* background: blue; */
            flex: 1 1 auto;
            display: flex;
            flex-flow: row wrap;
        }
            .q-somos-we{
                /* background: lawngreen; */
                flex: 1 1 100%;
            }
            .q-somos-we p{
                text-align: justify;
            }
            .article-we{
                /* background: lightcoral; */
                flex: 1 1 45%;

            }

            .article-we p{
                text-align: justify;
            }

@media all and (max-width:800px){
    .section-we{
        flex-direction: column;
    }
    .articulos-we{
        flex-direction: column;
    }
    .menu-we{
        flex-direction: column;
        height: auto;
    }
}

@media all and (max-width:600px){
    
}

 
