* {
  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;
}
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 {
  grid-area: pri;
  height: auto;
}
body .contenedor .main .encabezado {
  width: 100%;
  height: auto;
}
body .contenedor .main .text {
  width: 100%;
  height: 200px;
  padding-top: 75px;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: Arial;
}
body .contenedor .main .box {
  display: flex;
  width: 100%;
  height: auto;
  background-color: #002451;
  text-decoration: none;
}
body .contenedor .main .box .texto {
  width: 60%;
  height: auto;
  color: white;
  margin: auto;
  font-family: Arial;
  font-size: 25px;
  padding: 50px;
  pointer-events: none;
  text-align: center;
}
body .contenedor .main .box .b-img {
  width: 40%;
  height: auto;
  overflow: hidden;
}
body .contenedor .main .box .b-img img {
  height: 100%;
  width: 100%;
}
body .contenedor .main .box-I {
  display: flex;
  width: 100%;
  text-decoration: none;
}
body .contenedor .main .box-I .texto {
  width: 80%;
  margin: auto;
  font-family: Arial;
  font-size: 25px;
  text-align: start;
  padding: 50px;
  pointer-events: none;
  text-align: center;
}
body .contenedor .main .box-I .b-img {
  width: 60%;
  height: auto;
  overflow: hidden;
}
body .contenedor .main .box-I .b-img img {
  height: 100%;
  width: 100%;
}
body .contenedor .main .box2 {
  display: flex;
  width: 100%;
  height: auto;
  background-color: #002451;
  text-decoration: none;
}
body .contenedor .main .box2 .texto {
  width: 60%;
  height: auto;
  margin: auto;
  color: white;
  font-family: Arial;
  font-size: 25px;
  padding: 50px;
  text-align: center;
}
body .contenedor .main .box2 .b-img {
  width: 40%;
  height: auto;
  overflow: hidden;
}
body .contenedor .main .box2 .b-img img {
  height: 100%;
  width: 100%;
}
body .contenedor .main .text2 {
  width: 100%;
  height: 350px;
  padding-top: 75px;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: Arial;
}
body .contenedor .main .text2 .btn {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 30px;
  padding: 20px;
  pointer-events: fill;
  background-color: white;
  border-color: #002451;
  pointer-events: auto;
}
body .contenedor .main .text2 .btn a {
  text-decoration: none;
  font-size: 25px;
  height: 100%;
  color: #002451;
}
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=proYmaq.css.map */