header {
  width: 100vw;
  background-color: rgb(226, 226, 226);
  background-color: white;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header nav .diViD {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.461);
}
header nav .inpBoton {
  display: none;
}
header nav .inpBoton input {
  padding: 5px 8px;
  width: 50%;
  border-style: solid;
  border-color: #102f41;
  border-radius: 20px;
  border-width: 3px;
  box-shadow: 1.5px 1.5px 1.5px rgba(10, 10, 10, 0.63);
  transition: 200ms;
}
header nav .inpBoton input:hover {
  box-shadow: 2px 2px 2px rgba(10, 10, 10, 0.63);
}
header nav .inpBoton button {
  padding: 5px 8px;
  border-style: solid;
  border-color: #102f41;
  border-radius: 20px;
  border-width: 3px;
  box-shadow: 1.5px 1.5px 1.5px rgba(10, 10, 10, 0.63);
  transition: 200ms;
}
header nav .inpBoton button:hover {
  background-color: rgba(192, 192, 192, 0.63);
}

header a {
  color: #102f41;
  text-decoration: none;
}

header .nombreT {
  text-shadow: 3px 3px 3px rgba(10, 10, 10, 0.63);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 900;
  font-size: 35px;
}
header nav a {
  font-weight: 700;
  font-size: 15px;
  color: #102f41;
  padding: 0 5px;
  transition: 200ms;
}
header nav a:hover {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.307);
}

header nav hr {
  display: none;
}
header .inp {
  text-align: center;
  width: 35%;
}
header .inp input {
  font-size: 12px;
  padding: 5px 15px;
  width: 70%;
  border-style: solid;
  border-color: rgb(83, 83, 83);
  border-radius: 20px;
  box-shadow: 1.5px 1.5px 1.5px rgba(10, 10, 10, 0.63);
}
header .inp input:hover {
  transition: 200ms;
}
header .inp button {
  background-color: #102f41;
  font-size: 12px;
  padding: 5px 8px;
  border-style: solid;
  border-color: #102f41;
  color: white;
  border-radius: 20px;
  border-width: 2px;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  transition: 200ms;
}
header .inp button:hover {
  box-shadow: 1px 1px 1px rgba(10, 10, 10, 0.63);
}

.mostrar-menu,
.esconder-menu {
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: o.4s;
}

.mostrar-menu {
  order: 1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover {
  color: black;
  transition: 200ms;
}

#check {
  display: none;
}
/* RESPONSIVE NAV */

@media (max-width: 1100px) {
  /* HEADER */

  .mostrar-menu,
  .esconder-menu {
    font-size: 40px;
    display: block;
  }

  .menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgb(199, 199, 199);
    right: -100%;
    top: 0;
    text-align: center;
    padding: 100px 0;
    z-index: 100;
    transition: 0.8s;
  }
  header nav .diViD {
    display: none;
  }

  header nav .inpBoton {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav .inpBoton button {
    font-size: 19px;
    padding: 5px 8px;
    border-style: solid;
    border-color: #102f41;
    border-radius: 20px;
    border-width: 3px;
    font-weight: 700;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  }
  header nav .inpBoton input {
    font-size: 19px;
    padding: 5px 15px;
    width: 70%;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
    border-width: 5px;
  }
  header nav a {
    font-weight: 700;
    font-size: 30px;
    color: #102f41;
    padding: 0 5px;
  }
  header nav a:hover {
    background-color: gainsboro;
  }
  .menu span {
    display: none;
  }

  .menu a {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
  }
  header .inp {
    display: none;
  }
  header nav hr {
    display: block;
  }

  .esconder-menu {
    position: absolute;
    top: 40px;
    right: 40px;
  }

  #check:checked ~ .menu {
    right: 0;
  }
  /* JUMBOTRON */
  body .jbtron {
    width: 100vw;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 876px) {
  header .inp {
    display: none;
  }
}
