/* Basic styling */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body {
    font-family: sans-serif;
    background: #f0efef;
  }
  
  nav {
    background: #ffffff;
    padding: 5px 20px;
  }
  .button-1 a {
    padding: 7.5px 15px;
    color: aliceblue!important;
    background-color:rgb(1, 78, 167)!important;
    border: 1px rgba(0, 17, 255, 0.692) solid;
  }
  a {
    color: rgb(223, 223, 223);
    text-decoration: none;
  }
  ul {
    list-style-type: 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; /*letras al lado del logo*/
  }
  .button-1 .secondary {
    border-bottom: 1px rgb(51, 51, 51) solid;
  }
  /* Mobile menu */
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .toggle {
    order: 1;
  }
  .item.button-1 {
  }
  .item {
    width: 100%;
    font-size: px!important;
    text-align: center;
    order: 3;
    
    display: none;
  }
  .item.active {
    display: block;
  }
  /* Tablet menu */
  @media all and (min-width: 600px) {
    .menu {
      justify-content: center;
    }
    .logo {
      flex: 1;
    }
    .toggle {
      flex: 1;
      text-align: right;
    }
    .item.button-1 {
      width: auto;
      order: 1;
    }
    .toggle {
      order: 2;
    }
    .button-1.secondary {
      border: 0;
    }
   
    .button-1.secondary a {
      background: transparent;
    }
    .button-1 a:hover {
      text-decoration: none;
    }
    .button-1:not(.secondary) a:hover {
      background: #006d6d;
      border-color: #005959;
    }
    .button-1.secondary a:hover {
      color: #ddd;
    }
  }
  /* Desktop menu */
  @media all and (min-width: 900px) {
    .item {
      display: block;
      width: auto;
    }
    .toggle {
      display: none;
    }
    .logo {
      order: 0;
    }
    .item {
      order: 1;
    }
    .button {
      order: 2;
    }
    .menu li {
      padding: 15px 10px;
    }
    .menu li.button {
      padding-right: 0;
    }
  }
  