/*HERO*/
section.hero-section{
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 6.356rem;
    place-items: center;
}

section.hero-section div:first-child{
    width: 100%;
    text-align: center;
}

section.hero-section div:first-child h1{
    padding: 4.5rem 0;
    background-color: var(--verde-primario);
    color: var(--arena-secundario);
}

section.hero-section div:last-child{
    width: 100%;
    background-image: url(../img/cielo.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 34vh;
}

@media (width <= 768px){
    section.hero-section{
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 6.356rem;
    place-items: center;
    }   

    section.hero-section div:first-child{
        width: 100%;
    }

    section.hero-section div:first-child h1{
        margin: 0;
    }

    section.hero-section div:last-child{
        width: 100%;
        padding: 20vh;
    }
} 
/*FIN HERO*/

/*NOSOTROS*/
section.nosotros-section{
    background-color: var(--verde-primario);
    color: var(--arena-secundario);
    padding: 1.25rem 1.5rem;
}

section.nosotros-section p > span{
    font-weight: bold;
}
/*FIN NOSOTROS*/