#show,#hide {
	display:none;
}

div#contenido_conocenos {
    visibility: hidden; /* Al alterar las márgenes y el height no es necesaria esta propiedad */
    opacity: 0;
    height: 0;
    max-height:1500px;
    border: gray solid 1px;  
}

input#show:checked ~ div#contenido_conocenos {
    visibility: visible;
    /*opacity: 1;
    height: auto;
    transition: opacity 1s linear;*/
    height:auto;
    opacity:1;  
    transition: all 1s ease;
}

input#hide:checked ~ div#contenido_conocenos {   
    visibility: hidden; /* Al alterar las márgenes y el height no es necesaria esta propiedad */
    opacity: 0;
    height: 0;
}
