



/* estilo de barra navegacion */


.topnav .icon {
    display: none;
}



.alineado-center {
    text-align: center;
}

.deco_out {
    text-decoration: none;
    margin-left: 1em;
}

#navbar a:hover {
    background-color: white;
    color: black;
  }
  
  .dropbtn {
    background-color: #216B2F;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-top: auto;
    margin-right: 10vw;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #62AD30;
  }


  #navbar {
    background-color: #4B9934;
    position: fixed;
    /* top: -50px; */
    width: 100%;
    display: block;
    transition: top 0.2s;
    z-index: 1;
  }
  
  #navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-size: 1.2em;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 1000px) {
    #navbar a {
      font-size: 0.8em;
    }
  }