/* Librerias */
@import url("animate.css");
@import url("hamburgers.css");


.logo {
  display: none;
}
.logo img, .logo-desktop img {
  width: 150px;
}

.nav ul {
  display: flex;
}

.responsive-nav {
  display: none;
}

.responsive-nav .header-nav-icon {
  border: 0;
  background-color: transparent;
}

.responsive-nav svg {
  fill: #fff;
}


.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: white;
  height: 2px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: white;
}
  
  
  
  @media (max-width: 900px) {
    .nav {
      position: fixed;
      top: 100px;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #000;
      color: white;
      display: flex;
      margin:0;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      display: none;
      text-align: center;
    }

    .nav-activo.fondo {
      background-image: none;
    }
    
    .nav-activo .nav {
      display: flex;
      flex-direction: column;
      z-index: 1;
      padding-top: 4rem;
    }
  
    .nav ul {
      flex-direction: column;
      padding: 0;
    }
    
    .nav a{
      color: inherit;
      transition: color 0.3s;
      margin-left: 0;
      font-size: 24px;
    }

    .nav a:hover {
      color: white;
    }
    
    .responsive-nav {
      display: flex;
      z-index: 2;
    }
    .logo-desktop {
      display: none !important;
    }

    .logo {
      display: block;
      padding: 0 1rem;
      width: 100%;
      text-align: center;
      padding-left: 5rem;
    }
    .header-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*margin-top: 40px; */
    }
  }
  
  