.navbar a {
    text-decoration: none;
  }
  
  .navbar a, .nav-link {
    font-weight: bold;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;
    color: rgba(13, 77, 46, 0.835);
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.1rem;
  }
  
  /* Para que no se muestre el ícono para cel en modo pantalla */
  .responsive-mobile {
    /* display: none; */
  }
  .responsive-mobile .hamburger {
    position: fixed;
    background-color: transparent;
    left: 80vw;
    top: -1.5vh;
    height: 30px;
    width: 30px;
    padding: 20px 20px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    z-index: 1002;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .responsive-mobile .hamburger.is-active {
    background-color: none;
  }
  .responsive-mobile ._layer {
    background: #FFFFFF;
    background: #000;
    margin-bottom: 4px;
    border-radius: 2px;
    width: 28px;
    height: 4px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  }
  .responsive-mobile .hamburger:hover .-top {
    transform: translateY(-100%);
  }
  .responsive-mobile .hamburger:hover .-bottom {
    transform: translateY(100%);
  }
  .responsive-mobile .hamburger.is-active .-top {
    transform: translateY(200%) rotate(45deg) !important;
  }
  .responsive-mobile .hamburger.is-active .-mid {
    opacity: 0;
  }
  .responsive-mobile .hamburger.is-active .-bottom {
    transform: translateY(-200%) rotate(135deg) !important;
  }
  .responsive-mobile .menuppal.is_active {
    transform: translate3d(0px, 0px, 0px);
    margin-top: 5rem;
  }
  .responsive-mobile .menuppal {
    background-color: #CCCCCC;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
    width: 100%;
    z-index: 1001;
  }
  .responsive-mobile .menuppal ul {
    margin: 10vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }
  .responsive-mobile .menuppal ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 3.5vmin;
    height: 4rem;
    text-transform: none;
    font-weight: bold;
    border: 0.1rem solid #707070;
    border-radius: 0.5rem;
  }
  .responsive-mobile .menuppal ul li a {
    text-decoration: none;
    color: #474747;
    width: 95%;
    text-align: center;
  }
  .responsive-mobile .menuppal ul li a:hover {
    border-radius: 0.2rem;
    border: 0.2rem solid #FF6900;
  }

@media only screen and (max-width: 480px) {
  .hamburger {
    top: 1.5vh !important;
    left: 80vw;
  }
  
  .responsive-mobile {
      display: block;
  }
  .responsive-mobile .menuppal {
      transform: none;
      margin-top: 6rem;
  }
}