@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: "Poppins", sans-serif;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container,
.container2 {
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
  display: grid;
  gap: 1.6em;
  grid-template-columns: repeat(5, 1fr);
}

.container > .header,
.container > .content,
.container > div,
.footer {
  padding: 20px;
}

.container .header,
.footer {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.container .header .button {
  display: none;
}

.container .header .svg {
  width: 2em;
  height: 2em;
}

.container .header .ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
}

.container .header .li:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.container .header .li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  font-family: "Poppins", serif;
  color: #fff;
}

.container > .header,
.footer {
  grid-column: 1/-1;
  background-color: #2e266d;
  color: #ffffff;
}

.container .content_inicio {
  grid-column: 1/-1;
}

.content_inicio .article {
  padding: 20px;
  background-color: rgba(118, 108, 231, 0.3);
}

.content_inicio .article h1,
.content_inicio .article p {
  font-family: "Poppins", serif;
}

.content_inicio .article p {
  text-align: justify;
}

.content_inicio .article_inicio {
  padding: 30px;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.article img {
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0.4;
}

.article .video {
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0.4;
}

.container2 .content_nosotros {
  grid-column: span 4;
  grid-row: span 2;
  border: 1px solid #000;
}

.content_nosotros .article_nosotros {
  padding: 20px;
  margin-top: 5px;
}

.article_nosotros h1,
.article_nosotros p {
  font-family: "Poppins", serif;
  padding: 10px;
}

.container2 .sidebar {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container2 .sidebar img {
  display: block;
}

.container2 .content_nosotros2 {
  grid-column: span 5;
  grid-row: span 2;
}

.content_nosotros2 .article_nosotros2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.article_nosotros2 h1,
.article_nosotros2 p {
  font-family: "Poppins", serif;
  padding: 10px;
  text-align: center;
}

.objetivos {
  max-width: 1000px;
  margin: 1.6em auto;
  display: grid;
  gap: 1.6em;
  grid-template-columns: repeat(3, 1fr);
}

.objetivos .post {
  background: #2b4257;
  color: #ffffff;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.objetivos .post:hover {
  background-color: rgba(118, 108, 231, 0.3);
  color: #2d3436;
}

.container3 {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
  height: 100vh;
  display: grid;
  gap: 1.6em;
  grid-template-columns: repeat(2, 1fr);
}

.container3 img {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0.4;
}

.container3 .encabezado {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(118, 108, 231, 0.5);
}

.container3 .circulos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container3 .circulos p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #2b4257;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.container4 {
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
  height: 100vh;
  position: relative;
}

.container4 img {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0.4;
}

.container4 h1,
.container4 p {
  padding: 30px;
  background: rgba(118, 108, 231, 0.5);
  color: #000000;
}

.container5 {
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(118, 108, 231, 0.3);
  color: #000000;
  text-align: center;
}

.footer {
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
}

.footer .a {
  text-decoration: none;
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  .container .header .button {
    display: block;
    cursor: pointer;
  }
  .container .header .nav {
    width: 100%;
    display: none;
  }
  .container .header .nav.activo {
    display: block;
  }
  .container .header .ul {
    flex-direction: column;
  }
  .container .header .li {
    margin: 1rem 0;
  }
  .content_inicio img {
    height: 300px;
    object-fit: cover;
  }
  .container2 .content_nosotros {
    grid-column: 1/-1;
  }
  .conteiner2 .sidebar {
    display: none;
  }
  .container2 .sidebar img {
    display: none;
  }
  .objetivos .post {
    grid-column: 1/-1;
  }
  .container3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  .container3 img {
    height: 300px;
    object-fit: cover;
  }
  .container4 {
    top: 50px;
  }
  .container4 img {
    height: 340px;
    object-fit: cover;
  }
}

/*# sourceMappingURL=main.css.map */
