@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: linear-gradient(to top, #9ED17D, white 50%) no-repeat;
}

header{
    width: 100%;
    background:  #83BC5F;
}

#btn-menu{display: none;}

header label{
    display: none; 
    width: 3rem; 
    height: 3rem; 
    padding: 1rem; 
}

.menu ul{
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li:hover{
    background: rgba(0,0,0,0.3);
}
.menu li a{
    display: block;
    padding: .2rem .2rem;
    color: white;
    text-decoration: none;
    letter-spacing: -1px
}

.menu li i{
    display: none;
    padding: .2rem 1rem;
    color: white;
    text-decoration: none;
}

.menu_inicio{
    display: flex;
    justify-content:space-between;
    align-items: center;
    color: white;
    padding: 1em;
}


.menu li:hover{
    background: rgba(0,0,0,0.3);
}

.menu ul li img{
    width: 1.1em;
    display: none;
    color: white;
    text-decoration: none;
    margin-left: 2.2em;
}

img{
    width: 100%;
}


.cnt-gral{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2em;
    padding: 3em;
}

.cnt-gral a{
    text-decoration: none;
    font-weight: 600;
}

.cnt-gral a:hover{
    text-decoration: none;
    font-weight: 200;
}


.cnt-curso{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: .5em;
}

.cnt-imagen-jardin{
    width: 15em;
}

.cnt-carrera{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: .5em;
    padding: .5em;

}
h2{
    color: #575756;
    text-align: center;
    margin-top: 2em;
}

p{
    font-size: 10px;
    text-align: center;
    color: white;
    margin: 6em;
}

h6{
    font-size: .6em;
    font-weight: 600;
    text-align: center;
    color: #006837;
    margin: 6em;
}


.informacion{
    margin: 0 10em 0 10em;
}
.info{
    padding: 1em 3em;
    margin: 2em;
    text-align:left;
    text-decoration: none;
    list-style: none;
    color: white;
    padding: 1em 5;
}

.cnt-info{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    padding: em 2em;
    font-size: 15px;
    margin-top: 2em;
}

.mapa{    
    filter: invert(0);
    width: 250px;
    height: 200px;
    margin-top: 2em;
}


.contenedor-footer{
    color: white; 
    display: flex;
    font-size: 10px;
    padding: 2em;
    justify-content: center;
    width: 100%;
    background: black

    
}


@media (max-width:768px){

    header{
        height: 4em;
    }

    header label{
        display: block;
        width: 5em;
        height: 4em;
    }
    
    .menu{
        position: absolute;
        background:#83BC5F;
        width: 50%;
        margin-left: -70%;
        transition: all .3s;
    }
    
    .menu__img img{
        display: none;

    }

    label img:hover{
        position: relative;
        bottom: .2em;
        left: 1em;
        width: 3.5em;
    }
    

    label img {
        position: relative;
        bottom: .2em;
        left: 1em;
    }

    .menu ul{
        flex-direction: column;
    }


    .menu_inicio{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: white;
        padding-left: 1em;
        border-radius: 5px;            
    }

    .menu li i{
        display: block;
        padding: .2rem 2rem;
        color: white;
        text-decoration: none;
    }


    #btn-menu:checked ~ .menu{
        margin: 0;
    }
}



@media screen and (min-width: 768px){

    .cnt-gral{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
        height: 57vh;
        margin-top: -3em;
    }

    .cnt-imagen-jardin{
        width: 20em;
    }

    h2{
        color: #575756;
        text-align: center;
        margin-top: 2em;
    }
    
   main p{
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        color: #006837;
        padding: 0 20em;
    }

    .informacion{
        margin: 0 10em 0 10em;
    }
    .info{
        padding: 1em 3em;
        margin: 2em;
        text-align:left;
        text-decoration: none;
        list-style: none;
        color: white;
        padding: 1em 5;
    }
    
    .cnt-info{
        display:flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: black;
        font-size: 12px;
        text-align: center;
        padding: 1em;
    }

    .cnt-info li{
        text-align: center;
        padding: .3em;
    }
    
    .mapa{
        position: relative;
        right: 4em;
        filter: invert(0);
        width: 250px;
        height: 200px;
        overflow: hidden;
    }
    
    
    .contenedor-footer{
        color: white; 
        display: flex;
        font-size: 10px;
        margin: auto;
        padding: 30px;
        justify-content: center;
        width: 100vw;
    }



}
