/* ABSTRACTS */
/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #2F184B;
  color: #C8B1E4;
  font-family: "Roboto", sans-serif;
  font-size: 62.5%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  background-color: #2F184B;
  min-height: 80vh;
}
@media (min-width: 1200px) {
  main {
    width: 1200px;
    align-self: center;
  }
}
@media (min-width: 2400px) {
  main {
    height: 90vh;
  }
}

h3 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: #532B88;
  font-weight: 700;
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before, *::after {
  box-sizing: border-box;
}

/* LAYOUT */
.footer {
  background-color: #2F184B;
}

.footer-nav {
  width: 100%;
  background-color: #532B88;
  margin-bottom: 1rem;
  padding: 0.5rem 0.5rem;
}

.navegacion__footer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.navegacion__footer li {
  padding: 0.5rem;
}
@media (min-width: 1200px) {
  .navegacion__footer {
    width: 1200px;
    justify-self: center;
  }
}
@media (min-width: 768px) {
  .navegacion__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer a {
  color: #C8B1E4;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer a {
    font-size: 1.2rem;
  }
}

.contenedor-footer {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
@media (min-width: 1200px) {
  .contenedor-footer {
    width: 1200px;
    justify-self: center;
  }
}

.redes {
  display: flex;
  margin: 0.5rem 1rem;
  width: 100%;
  justify-content: space-between;
}
.redes a {
  margin: 1rem;
}
@media (min-width: 480px) {
  .redes {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .redes {
    width: 30%;
  }
}

.navegacion__footer li:hover img {
  transition: border 1.2s 0.2s;
  border: solid #EAEAFF 2px;
}

.footer-nav img {
  width: 7vw;
  max-width: 50px;
  background-color: #C8B1E4;
  border-radius: 100%;
  border: solid #2F184B 2px;
  transition: border 0.8s 0.2s;
}

.redes img {
  padding: 0;
  border-radius: 20%;
  width: 40px;
  height: auto;
  transition: 1.2s;
}

.redes img:hover {
  transition: 0.6s;
  height: auto;
  transform: scale(1.2);
}

.redes {
  filter: invert(100%);
}

.logo-wpp img {
  z-index: 3;
  height: 10vw;
  max-height: 70px;
  min-height: 50px;
  position: fixed;
  right: 30px;
  bottom: 100px;
  transition: 0.8s;
}
.logo-wpp img:hover {
  transform: scale(1.2);
}
@media (min-width: 480px) {
  .logo-wpp img {
    right: 30px;
    bottom: 30px;
  }
}

.boton-arriba img {
  z-index: 3;
  height: 10vw;
  max-height: 70px;
  min-height: 50px;
  position: fixed;
  left: 30px;
  bottom: 100px;
  transition: 0.8s;
}
.boton-arriba img:hover {
  transform: scale(1.2);
}
@media (min-width: 480px) {
  .boton-arriba img {
    left: 30px;
    bottom: 30px;
  }
}

ul {
  list-style: none;
}

.header {
  width: 100%;
  background-color: #EAEAFF;
  display: flex;
  justify-content: space-around;
  position: fixed;
}

.contenedor-header {
  height: 15vh;
  position: fixed;
  z-index: 3;
  display: flex;
  flex-flow: column wrap;
  background-color: #EAEAFF;
  width: 100%;
}

nav {
  background-color: #9B72CF;
}

.navbar {
  height: 100%;
}
@media (min-width: 1200px) {
  .navbar {
    width: 1200px;
    align-self: center;
  }
}

.navbar-brand {
  margin-left: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
.navbar-brand img {
  height: 80%;
}

.navbar {
  height: 100%;
  justify-self: center;
}

.navbar-brand.active .titulo {
  color: #000;
  font-weight: 700;
  transform: scale(1.1);
}
.navbar-brand.active .titulo:hover {
  color: #532B88;
}

.titulo {
  display: none;
  font-size: 3vh;
  color: #532B88;
  padding-left: 1rem;
  transition: 0.7s 0.1s ease-out;
}
.titulo:hover {
  transform: scale(1.1);
}
@media (min-width: 400px) {
  .titulo {
    display: inline;
  }
}

.titulo--bold {
  font-weight: bolder;
}

.navbar-toggler {
  margin-right: 0.5rem;
}
.navbar-toggler-icon {
  height: 5vh;
  width: 5vh;
}

.navbar-collapse {
  background-color: #EAEAFF;
}

.nav-derecha {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .nav-derecha {
    align-items: end;
  }
}

.boton-busqueda {
  color: #000;
  border: #532B88;
  background-color: #9B72CF;
  margin-right: 10px;
}

.boton-busqueda:hover {
  background-color: #532B88;
  cursor: pointer;
}

.boton-busqueda svg {
  width: 35px;
  height: 35px;
}

.login {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: end;
  position: relative;
  transition: 1s;
  margin-right: 1rem;
}

.login a {
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #EAEAFF;
  transition: 1s;
  position: relative;
  margin-right: 3rem;
}

.login a:hover {
  transition: 1s;
  position: relative;
  margin-right: 0.3rem;
  color: #532B88;
  position: relative;
  margin-left: 4.5rem;
}

.login svg {
  margin-left: 10px;
  position: relative;
  width: 40px;
  height: 40px;
  color: #532B88;
}

.contenedor-nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 10px 30px;
}
@media (min-width: 768px) {
  .contenedor-nav {
    flex-flow: row nowrap;
  }
}

.contenedor-nav li {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0.2rem;
}

.contenedor-nav a {
  text-decoration: none;
  color: #532B88;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem !important;
}
@media (min-width: 992px) {
  .contenedor-nav a {
    font-size: 1.2rem;
  }
}
.contenedor-nav a:hover {
  color: #000;
}
.contenedor-nav a:hover::after {
  background: #532B88;
}

#active {
  color: #000;
  transform: scale(1.1);
}

#active::after {
  opacity: 1;
  transform: scale(1);
  background: #532B88;
}

/* COMPONENTES */
.boton {
  border-radius: 50%;
}

.enlace__navbar {
  position: relative;
  display: flex;
  align-items: center;
  color: #C8B1E4;
  transition: 0.6s;
}

.enlace__navbar::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #FFF;
  position: absolute;
  transform: scale(0);
  left: 0;
  bottom: -8px;
  transition: all 0.4s 0.2s;
  pointer-events: none;
}

.enlace__navbar:hover {
  color: #EAEAFF;
}

.enlace__navbar:hover::after {
  opacity: 1;
  transform: scale(1);
}

body {
  font-family: "Roboto", sans-serif;
}

.titulo {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

/* PAGES */
.consultas-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .consultas-contenedor {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    column-gap: 1rem;
  }
}

.consultas-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}
.consultas-article h3 {
  padding-bottom: 1rem;
  font-weight: bold;
}

.consultas-article--contactanos {
  grid-column: 1/3;
  justify-self: center;
}

.consultas-article a {
  color: #9B72CF;
  padding: 1rem;
}

.consultas-titulo {
  justify-self: center;
  padding: 12rem 0 2rem 0;
}
@media (min-width: 992px) {
  .consultas-titulo {
    grid-column: 1/3;
  }
}

.contacto-titulo {
  margin-bottom: 1rem;
  text-align: center;
}

.contacto-contenedor {
  padding-top: 24vh;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .contacto-contenedor {
    flex-direction: row-reverse;
    align-items: first baseline;
  }
}

.contacto-ubicacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contacto-ubicacion iframe {
  width: 75vw;
  height: 60vh;
  box-shadow: 0px 10px 10px 10px #000;
}
@media (min-width: 768px) {
  .contacto-ubicacion iframe {
    width: 30vw;
  }
}
@media (min-width: 992px) {
  .contacto-ubicacion iframe {
    height: 40vh;
  }
}
@media (min-width: 1200px) {
  .contacto-ubicacion iframe {
    width: 500px;
    height: 300px;
  }
}

.contacto-contenedor-formulario {
  width: 90%;
  margin-right: 2rem;
}

.contacto-formulario {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
  padding-bottom: 2rem;
}

.input-nombre {
  grid-column: 1/2;
  grid-row: 1/2;
}

.input-nombre input,
.input-mail input,
.input-tel input,
.input-lista input,
.input-mensaje input {
  border: #9B72CF solid 3px;
}
.input-nombre input:focus,
.input-mail input:focus,
.input-tel input:focus,
.input-lista input:focus,
.input-mensaje input:focus {
  border-color: #C8B1E4;
  box-shadow: 0 0 0 0.25rem #9b72cf;
}
.input-nombre select,
.input-mail select,
.input-tel select,
.input-lista select,
.input-mensaje select {
  border: #9B72CF solid 3px;
}
.input-nombre select:focus,
.input-mail select:focus,
.input-tel select:focus,
.input-lista select:focus,
.input-mensaje select:focus {
  border-color: #C8B1E4;
  box-shadow: 0 0 0 0.25rem #9b72cf;
}
.input-nombre textarea,
.input-mail textarea,
.input-tel textarea,
.input-lista textarea,
.input-mensaje textarea {
  border: #9B72CF solid 3px;
  height: 80%;
}
.input-nombre textarea:focus,
.input-mail textarea:focus,
.input-tel textarea:focus,
.input-lista textarea:focus,
.input-mensaje textarea:focus {
  border-color: #C8B1E4;
  box-shadow: 0 0 0 0.25rem #9b72cf;
}
.input-nombre label,
.input-mail label,
.input-tel label,
.input-lista label,
.input-mensaje label {
  font-size: medium;
  font-weight: 400;
}

.input-mail {
  grid-column: 1/2;
  grid-row: 2/3;
}

.input-tel {
  grid-column: 1/2;
  grid-row: 3/4;
}

.input-lista {
  grid-column: 2/3;
  grid-row: 1/2;
}

.input-mensaje {
  grid-column: 2/3;
  grid-row: 2/4;
  padding-bottom: 2rem;
}

.input-submit {
  align-self: center;
  justify-self: center;
  grid-column: 1/3;
  grid-row: 4/5;
  width: 100%;
}

.contacto-boton-enviar {
  display: flex;
  justify-self: center;
  align-self: center;
  font-size: medium;
  font-weight: 600;
  color: #EAEAFF;
  border: #532B88;
  background-color: #9B72CF;
  height: 3rem;
  border-radius: 5px;
  transition: 0.4s;
  width: 100%;
}
@media (min-width: 768px) {
  .contacto-boton-enviar {
    width: 90%;
  }
}

.contacto-boton-enviar:hover {
  color: #000;
  background-color: #C8B1E4;
  cursor: pointer;
  transition: 0.4s;
}

@media (max-width: 992px) {
  .contacto-formulario {
    grid-template-columns: 1fr;
  }
  .input-nombre {
    grid-column: 1/3;
    grid-row: auto;
  }
  .input-mail {
    grid-column: 1/3;
    grid-row: auto;
  }
  .input-tel {
    grid-column: 1/3;
    grid-row: auto;
  }
  .input-lista {
    grid-column: 1/3;
    grid-row: auto;
  }
  .input-mensaje {
    grid-column: 1/3;
    grid-row: auto;
  }
  .input-submit {
    grid-column: 1/3;
    grid-row: auto;
  }
}
.cursos-main {
  background-color: #000;
}

.cursos-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.cursos__titulo--principal {
  margin-top: 50px;
  background-image: url(../../../img/banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  width: 100%;
  height: 90vh;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  .cursos__titulo--principal {
    width: 1200px;
    height: 600px;
  }
}

.cursos__screen-black {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  align-self: center;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-around;
  z-index: 1;
}
.cursos__screen-black h2 {
  color: #FFF;
  font-size: 3rem;
  align-self: center;
  z-index: 5;
}

.cursos__titulo {
  padding: 2rem;
}

.cursos-contenedor-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.cursos-contenedor-article:nth-child(even) {
  background-color: #2F184B;
}

.cursos-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2F184B;
}

.cursos-article2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cursos-article-grafico {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cursos-article-grafico img {
  max-width: 80%;
  align-self: center;
}

.cursos-article-texto {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  width: 90%;
}

.cursos-boton-inscribirse {
  border: #532B88;
  background-color: #C8B1E4;
  margin-right: 10px;
}
.cursos-boton-inscribirse a {
  color: #2F184B;
}

.cursos-boton-inscribirse:hover {
  background-color: #EAEAFF;
  cursor: pointer;
}

@media (min-width: 992px) {
  .cursos-article {
    flex-direction: row;
  }
  .cursos-article2 {
    flex-direction: row-reverse;
  }
}
main {
  background-color: #2F184B;
  min-height: 80vh;
}
@media (min-width: 1200px) {
  main {
    width: 1200px;
    align-self: center;
  }
}

.index__main {
  background-color: #000;
}

.index__title {
  margin-top: 20vh;
  align-self: center;
  justify-self: center;
}

.contenedor-section {
  background-color: black;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  padding-top: 5vh;
}

.contenedor-section article {
  width: 90%;
  min-width: 300px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.contenedor-section article h3 {
  text-align: center;
}
.contenedor-section article p {
  text-align: center;
  padding: 1rem 1rem 0 1rem;
  margin-bottom: 0.5rem;
}
.contenedor-section article a {
  color: #9B72CF;
}
.contenedor-section article a:hover {
  color: #EAEAFF;
}
.contenedor-section article img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  padding: 1rem 1rem;
}
@media (min-width: 768px) {
  .contenedor-section article {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .contenedor-section article {
    width: 30%;
  }
}

.contenedor-body {
  display: flex;
  flex-flow: column wrap;
}

.lista-nosotros a {
  color: #000;
}

.nosotros-contenedor-main {
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nosotros-contenedor-portada {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contenedor-video {
  display: flex;
  align-items: center;
}
.contenedor-video video {
  height: 60vh;
  width: 80vw;
  object-fit: cover;
  box-shadow: 0rem 0 5rem 3rem #000;
}
@media (min-width: 1400px) {
  .contenedor-video video {
    width: 1200px;
    height: 500px;
  }
}

/* .nosotros-contenedor-portada-lista{
    padding: 20px;
    border: solid;
    height: 70vh;
    width: 90%;
    background-color: $main-color-secondary;
    background-image: url(../img/mapa.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-areas:
    "empresa conector1 historia    conector2 fundacion"
    "empresa conector1 historia    conector2 hitos"
    "empresa conector1 equipo      conector3 liderazgo"
    "empresa conector1 equipo      conector3 departamentos"
    "empresa conector1 mision      .         ."
    "empresa conector1 testimonios .         .";
    grid-template-columns: 30% auto 15% auto 30%;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.a-empresa{
    grid-area: empresa;
    align-self: center;
}

.a-historia {
    grid-area: historia;

}


.a-fundacion {
    grid-area: fundacion;

}

.a-hitos {
    grid-area: hitos;

}

.a-equipo {
    grid-area: equipo;

}

.a-liderazgo {
    grid-area: liderazgo;

}

.a-departamentos {
    grid-area: departamentos;

}

.a-mision {
    grid-area: mision;

}

.a-testimonios {
    grid-area: testimonios;

} */
.nosotros-articulo {
  overflow-x: hidden;
}

.nosotros-contenedor-contenido {
  padding: 10px;
}

.nosotros-articulo-contenido {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
}

.nosotros-articulo-contenido-texto {
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
.nosotros-articulo-contenido-texto h2 {
  justify-self: center;
  padding-bottom: 1rem;
}
.nosotros-articulo-contenido-texto h3 {
  padding-bottom: 1rem;
  align-self: center;
}

.nosotros--hitos,
.nosotros--departamentos {
  align-items: start;
}
.nosotros--hitos p,
.nosotros--departamentos p {
  padding: 0.5rem;
}

.nosotros-articulo-contenido:nth-child(even) {
  flex-direction: row-reverse;
}

.nosotros-articulo-contenido img {
  max-width: 40%;
  align-self: center;
  margin: 10px 30px;
}

@media (max-width: 992px) {
  .nosotros-articulo-contenido {
    flex-direction: column;
  }
  .nosotros-articulo-contenido:nth-child(even) {
    flex-direction: column;
  }
  .nosotros-articulo-contenido img {
    max-width: 50%;
    margin: 10px 30px;
  }
}
#testimonios {
  display: flex;
  flex-direction: column;
}

#testimonios img {
  height: auto;
}

.contenedor-testimonio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonios-title {
  padding-bottom: 30px;
}

.tarjeta-testimonio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60%;
  border-radius: 10px;
  border: solid black 2px;
  background-color: #000;
  padding: 10px 15px 10px 15px;
}

.autor-testimonio {
  font-weight: 400;
  font-style: italic;
}

.contenedor-testimonio .autor-testimonio {
  font-weight: 100;
}

.contenedor-testimonio img {
  position: relative;
  top: -20px;
  width: 25vw;
}

.servicios-titulo {
  align-self: center;
  justify-self: center;
}

.servicios-contenedor-article {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.servicios__titulo--principal {
  margin-top: 50px;
  background-image: url(../../../img/img_1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
  height: 90vh;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  .servicios__titulo--principal {
    width: 1200px;
    height: 600px;
  }
}

.servicios__screen-black {
  background-color: rgba(255, 200, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-around;
  z-index: 1;
}
.servicios__screen-black h2 {
  color: #000;
  font-size: 3rem;
  align-self: center;
  z-index: 5;
}

.servicios-article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  overflow-x: hidden;
  background-color: #2F184B;
}
@media (min-width: 768px) {
  .servicios-article {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* .servicios-article-titulo {
    justify-content: center;
} */
.servicios-article-icono {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80%;
  text-align: center;
}
.servicios-article-icono h3 {
  font-weight: bold;
}
.servicios-article-icono img {
  width: 30%;
  min-width: 100px;
  padding: 1rem;
  filter: invert(1);
}
.servicios-article-icono p {
  padding: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .servicios-article-icono {
    text-align: justify;
    max-width: 50%;
  }
}

.servicios-article:nth-child(2) {
  color: #2F184B;
  background-color: #FFF;
}
.servicios-article:nth-child(2) img {
  filter: invert(0);
}
@media (min-width: 768px) {
  .servicios-article:nth-child(2) {
    flex-direction: row-reverse;
  }
}

.servicios-article-imagen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.servicios-article-imagen img {
  max-height: 30vh;
  min-width: 90vw;
  object-fit: cover;
}
@media (min-width: 768px) {
  .servicios-article-imagen img {
    max-height: none;
    min-height: 40vh;
    max-width: 90%;
    min-width: auto;
  }
}

/* VENDORS */
#navbarSupportedContent {
  justify-content: space-around;
}

.navbar {
  background-color: #EAEAFF !important;
}

.navbar-nav {
  justify-content: space-between;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.accordion-button:not(.collapsed) {
  z-index: 1;
  color: #FFF;
  font-weight: 600;
  background-color: #9B72CF;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #2F184B;
}

.accordion-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-align: left;
  background-color: #C8B1E4;
}

.accordion-button:focus {
  z-index: 2;
  box-shadow: #000;
}

.form {
  border-radius: 100%;
}

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