* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

body .contenedor {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "cab cab cab" "nav nav nav" "pri pri pri" "pie pie pie";
}
body .contenedor .header {
  background-color: white;
  height: 100px;
  grid-area: cab;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .contenedor .header img {
  max-height: 500px;
  max-width: 300px;
  justify-content: center;
}
body .contenedor .nav {
  height: 70px;
  grid-area: nav;
  background-color: #002451;
  position: sticky;
}
body .contenedor .nav .ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  height: 100%;
}
body .contenedor .nav .ul a {
  font-family: Arial;
  font-size: 25px;
  color: white;
  text-decoration: none;
}
body .contenedor .main {
  height: auto;
  width: 100%;
  grid-area: pri;
}
body .contenedor .main .container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 50px;
}
body .contenedor .main .container img {
  width: 75vw;
  max-width: 75vw;
}
body .contenedor .main .map {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
}
body .contenedor footer {
  grid-area: pie;
  width: 100%;
}
body .contenedor footer .footer {
  display: flex;
  background-color: #002451;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 150px;
}
body .contenedor footer .footer img {
  height: 50px;
  border-radius: 10px;
}
body .contenedor footer .foot-text {
  width: 100%;
  height: 100px;
  text-align: center;
  background-color: #002451;
  font-size: 25px;
  color: white;
  font-family: Arial;
}
body .contenedor footer .foot-text a {
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=ubicacion.css.map */