.content_acreditation {

    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: 500px 800px;

    grid-template-areas: 

    "section_seremi"

    "section_empresas";

}

.section_seremi {

    grid-area: section_seremi;

    display: grid;

    grid-template-columns: 700px 400px;

    grid-template-rows: 1fr 400px;

    grid-template-areas: 

    "title_seremi title_seremi"

    "text_seremi seremi_logo";

    padding: 50px;

    justify-content: center;

}



.title_seremi {

    grid-area: title_seremi;

    font-size: 2rem;

    text-align: left;

    color: #ffffff;

}



.text_seremi {

    padding: 40px;

    background: #e66700;

}



.text_seremi p {

    font-size: 1.2rem;

    text-align: left;

    color: #ffffff;

    font-weight: 300;

}



.seremi_logo {

    display: inline;

    background: url("../img/seremi.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    height: 100%;

}



.section_empresas {

 grid-area: section_empresas;

}



.section_empresas h3 {

    text-align: center;

    font-size: 2rem;

    color: #e66700;

}



.section_empresas p {

    text-align: center;

    font-size: 1.1rem;

    color: #222222;

    font-weight: 600;

}



.validacion {

    background: url('../img/empresas.png');

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;

    height: 75%;

    margin: 70px;

}


/* MEDIA QUERYS RESPONSIVE */

@media(max-width: 768px){

.content_acreditation {
        display: flex;
        flex-direction: column;
}

.section_seremi {
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: center;
}

.title_seremi {
    font-size: 2rem;
    text-align: left;
    color: #ffffff;
}

.text_seremi {
    padding: 40px;
    background: #e66700;
}

.text_seremi p {
    font-size: 1.2rem;
    text-align: left;
    color: #ffffff;
    font-weight: 300;
}

.seremi_logo {
    background: url("../img/seremi.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
}

.section_empresas {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section_empresas h3 {
    text-align: center;
    font-size: 2rem;
    color: #e66700;
}

.section_empresas p {
    text-align: center;
    font-size: 1.1rem;
    color: #222222;
    font-weight: 600;
}

.validacion {
    background: url('../img/empresas.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 200px;
}
}