    /*HERO*/
section.hero-section{
    background-image: url(../img/hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 40rem;
    margin-top: 6.356rem;
}

div.hero-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 100;
    place-items: start;
    height: 50%;
}

div.hero-container div{
    background-color: var(--verde-primario);
    color: var(--arena-secundario);
    opacity: 95%;
    margin: 1rem;
    padding: 2rem;
    border-radius: 1rem;
    font-size: 2rem;
    width: 34rem;

}

div.hero-container p{
    font-weight: bold;
}

div.hero-container div a{
    background-color: var(--arena-secundario);
    color: var(--verde-primario);
    text-decoration: none;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
}

div.hero-container div a:hover{
    background-color: var(--arena-hover);
}/*FIN HERO*/

/*SERVICIOS*/
section.servicios-section{
    background-color: var( --arena-secundario);
    color: var(--verde-primario);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem 2rem;
    font-weight: bold;
}

section.servicios-section div:first-child{
    border-right: 0.75rem solid var(--verde-primario);
    padding-right: 1rem;
}

section.servicios-section div:first-child p{
    margin-top: 0;
}

section.servicios-section div h2{
    margin-top: 0;
}

@media (width <= 768px){
    section.servicios-section{
        display: block;
    }
    section.servicios-section div{
        width: 100%;
    }

    section.servicios-section div:first-child{
        border-right: 0;
    }

    section.servicios-section div:first-child ul{
        margin-bottom: 0;
    }

    section.servicios-section div:last-child ul{
        margin-top: 0;
    }
}/*FIN SERVICIOS*/