p{
    margin-bottom: 0;
}
a{
    text-decoration: none;
    color: cornflowerblue;
    transition: all 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.plecaHeader {
  background-color: #006d4e !important;
  color: white;
  padding: 10px;
  display: flex;
}
.plecaHeader img{
    width: 200px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.tituloDiagrama{
    position: absolute;
    right: 20px;
}
.cardDiagrama{
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    margin-bottom: 30px;
}
.tituloCard{
    background: #f3f3f3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
    font-size: 1.5em;
    letter-spacing: 1px;
}
.bodyCard{
    padding: 20px;
}
.btnMostrar{
    background: #006d4e;
    color: white;
}
.btnMostrar:hover{
    background: #037656;
    color: white;
}
.btnMostrar.activo {
    background: #029b70;
    color: #fff;
  }
.desplegarCard{
    border: 1px solid #f3f3f3;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
}
.desplegarCard ul{
    padding-left: 5px;
    margin-bottom: 0px;
}
.desplegarCard ul li{
    list-style: none;
    padding-bottom: 5px;
}
.formatoImagen{
    width: 100%;
}
.footer img{
    width: 100%;
    background: #006d4e;
    margin-top: 50px;
}
.menu{
    text-align: left;
    margin-top: 10px;
}
.menu ul li{
    background-color: #006d4e;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    list-style: none;
    margin: 5px;
    padding: 10px;
}
.menu ul li a{
    color: #fff;
}







/***Estas clases se utilizan para poder darle ajuste a los distintos tamaños de los dispositivo / notebook / tabletas / telèfono*****/
/***medias querys****/
@media only screen and (max-width: 768px) {
    .blockMobil{
        display: block !important;
        text-align: center;
    }
    .plecaHeader img {
        width: 100%;
    }
    .tituloDiagrama{
        position: relative;
        text-align: center;
    }
}