* {
  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 {
  grid-area: pri;
  width: 100%;
}
body .contenedor .main .text-box {
  background-image: url(/assets/img/SECTORES-15.webp.crdownload);
  filter: saturate(150%);
  max-width: 1920px;
  min-height: 1080px;
  height: auto;
  margin: auto;
  text-align: center;
}
body .contenedor .main .text-box .text {
  color: white;
  text-shadow: 3px 3px 5px black;
  font-family: Arial;
  font-size: 20px;
  text-align: center;
  text-align: justify;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 5%;
  padding-bottom: 5%;
}
body .contenedor .main .text-box .text h2 {
  text-align: center;
}
body .contenedor .main .text-box .text h3 {
  text-align: center;
}
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=sectores.css.map */