@media screen and (min-width: 800px){
        
    article{
        position: relative;
        padding: 2%;
        font-size: 1.2em;
        line-height: 1.5em;
        text-align: justify;
    }
    article header {
        box-shadow: none;
        margin: auto;
        height: 300px;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
    }
    article header h2{
        font-size: 3em;
        line-height: 1.1em;
        width: 80%;
        flex-shrink: 1;
    }

    article header img{
        height: 100%;
        margin: 10px;
    }

    article:first-child{
        display: flex;
        flex-wrap: nowrap;
        padding-left: 32%;
    }
    article:first-child .fondo{
        top: -10px;
        left: -10px;
        filter: hue-rotate(45deg) opacity(0.3);
    }
    article img.imgdch{
        margin-left: 5%;
    }
    article img.imgizq{
        margin-right: 5%;
    }
    article:nth-child(3){
        background-color: #8db33c;
        color: #fff;
    }
    article:nth-child(4){
        background-color: #fff;
    }
    /**********************ID**********************/

    #imgSobre{
        position: absolute;
        top: 0;
        left: 0;
        width: 30%;
        max-width: 600px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(131deg, #1b5b15, #009233);
    }
    #imgSobre img{
        width: 60%;
    }

    #sep{
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
    #sep img{
        top: initial;
        bottom: 0;
        height: auto;
        filter: saturate(0.5);
    }

}
@media screen and (max-width: 800px){
    p{
        padding: 10px;
    }
    article{
        position: relative;
        padding: 2%;
        font-size: 1.2em;
        line-height: 1.5em;
        text-align: justify;
    }
    article header {
        box-shadow: none;
        margin: auto;
        height: auto;
        align-items: center;
        justify-content: space-between;
        display: flex;
        flex-flow: column;
    }
    article:nth-child(4) header{
        flex-flow: column-reverse
    }
    article header h2{
        display: inline;
        font-size: 2em;
        line-height: 1.1em;
        text-align: center;
    }

    article header img{
        width: 80%;
        margin: 10px auto;
    }

    article:first-child{
        display: flex;
        flex-flow: column;
        padding-top: 18vh;
    }
    article:first-child .fondo{
        top: -10px;
        left: -10px;
        filter: hue-rotate(45deg) opacity(0.3);
    }
    article img.imgdch{
        margin-left: 5%;
    }
    article img.imgizq{
        margin-right: 5%;
    }
    article:nth-child(3){
        background-color: #8db33c;
        color: #fff;
    }
    article:nth-child(4){
        background-color: #fff;
    }
    /**********************ID**********************/

    #imgSobre{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 18vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(131deg, #1b5b15, #009233);
    }
    #imgSobre img{
        height: 60%;
    }

    #sep{
        position: relative;
        width: 100vw;
        height: 25vh;
        overflow: hidden;
    }
    #sep img{
        top: initial;
        bottom: -6vh;
        left: -25vw;
        height: auto;
        width: 150VW;
        filter: saturate(0.5);
    }

}