li{
    font-weight : bold;
    color : black;
}

li>a{
    font-weight : bold;
    color: #000;
}


li>a:hover{
    font-weight : bold;
    color: #f07d00 ;
}

h3 a{
    font-weight : bold;
    color: #f07d00 ;
}
a.btn-canal-etica{
    background-color: #f07d00;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

  .btn-canal-etica:hover {
    animation: none;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.61);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.575);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }