*{  
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.logoheader{
    background-color: #00427B;
    background-image: -moz-linear-gradient(#00427B, #002D4B);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#00427B), to(#002D4B));
    background-image: -webkit-linear-gradient(#00427B, #002D4B);
    background-image: -o-linear-gradient(#00427B, #002D4B);
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 90px;
}

.logoheader img{
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 50000;
    width: 100%;
    max-width: 700px;
    top: 30px;
}


.navegacion{
    background-color: #000;
    display: block;
    margin: 0 auto;

}


header{
    width: 100%;
    height: 130px;
    z-index: 1000; /* Un valor alto para asegurar que esté encima de otros elementos */
   
    top: 0; /* Esto hará que se quede fijo en la parte superior */
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto;
    border: 0 40px;
}

.logo{
    width: 120px;
    margin-left: 10px;
    margin-top: 8px;
}

.nav{
    width: 100%;
}

.nav-bar {
    width: 100%;
    color: #fff;
   
    transition: 0.2s;
    display: block;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color1);
    padding: 10px 20px;
}

/* Basic styling */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body {
    font-family: sans-serif;
    background: #f1f1f1;
  }
  nav {
    background: #222;
    padding: 5px 20px;
  }
  ul {
    list-style-type: none;
  }
  a {
    color: white;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  .logo a:hover {
    text-decoration: none;
  }
  .menu li {
    font-size: 16px;
    padding: 15px 5px;
    white-space: nowrap;
  }
  .logo a,
  .toggle a {
    font-size: 20px;
  }
  .button.secondary {
    border-bottom: 1px #444 solid;
  }

   .menu {
      justify-content: center;
    }

  
  /* Mobile menu */
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
 







