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

/* VARIABLES */
/*  Navbar  */
.navbar {
  background: #532B88;
}
.navbar .container-fluid .navbar-brand img {
  width: 50px;
}
.navbar .collapse .navbar-nav .nav-item a {
  color: #fff;
}
.navbar .collapse .dropdown .dropdown-menu {
  background: #532B88;
  border: none;
}
.navbar .collapse .dropdown .dropdown-menu li a {
  color: #fff;
}
.navbar .collapse .dropdown .dropdown-menu li a:hover {
  background: none;
}

header {
  display: flex;
  justify-content: center;
  height: 850px;
  background-color: #F4EFFA;
}
header .header--left {
  display: flex;
  flex-direction: column;
  align-self: center;
}
header .header--left h1 {
  font-size: 55px;
  font-weight: 600;
  color: #532B88;
}
header .header--left p {
  font-size: 25px;
  font-weight: 400;
  animation-delay: 0.1s;
}
header .header--left .header--left--list {
  margin: 0;
  padding: 0;
  animation-delay: 0.2s;
}
header .header--left .header--left--list li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
header .header--left .header--left--list li i {
  margin-right: 7px;
  font-size: 30px;
  color: #532B88;
}
header .header--left .header--text--items {
  margin-top: 50px;
  animation-delay: 0.3s;
}
header .header--left .header--text--items ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
header .header--left .header--text--items ul li {
  list-style-type: none;
}
header .header--left .header--text--items ul li .header--buttom1 {
  margin-right: 25px;
}
header .header--left .header--text--items ul li a {
  text-decoration: none;
  padding: 15px 50px;
  background: #532B88;
  color: #fff;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 2px 13px 24px 0px rgba(83, 43, 136, 0.64);
}
header .header--left .header--text--items ul li a i {
  margin-right: 10px;
}
header .header--left .header--text--items ul li a:hover {
  background: #9B72CF;
}
header .header--img {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}
header .header--img img {
  width: 500px;
}

header {
  display: grid;
  grid-template-columns: 700px 700px;
}

.cursos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F4EFFA;
  color: #fff;
  height: 800px;
}
.cursos .cursos--header {
  text-align: center;
}
.cursos .cursos--header h2 {
  font-size: 45px;
  font-weight: 600;
  color: #532B88;
}
.cursos .cursos--cards {
  display: flex;
  justify-content: center;
}
.cursos .cursos--cards a {
  text-decoration: none;
}
.cursos .cursos--cards a .cards {
  border-radius: 10px;
  box-shadow: 10px 10px 26px 0px rgba(83, 44, 137, 0.27);
}
.cursos .cursos--cards a .cards img {
  width: 300px;
  border-radius: 10px 10px 0 0;
}
.cursos .cursos--cards a .cards .cards--text {
  background-color: #532B88;
  border-radius: 0 0 10px 10px;
}
.cursos .cursos--cards a .cards .cards--text h4 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-left: 10px;
}
.cursos .cursos--cards a .cards .cards--text p {
  margin-left: 10px;
  color: #fff;
}
.cursos .cursos--boton {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.cursos .cursos--boton a {
  text-decoration: none;
  padding: 15px 50px;
  background: #532B88;
  color: #fff;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 2px 13px 24px 0px rgba(83, 43, 136, 0.64);
}

.cursos .cursos--cards {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  grid-gap: 30px;
}
.cursos .cursos--cards .cards {
  display: grid;
  grid-template-rows: 300px 150px;
}

.contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F4EFFA;
}
.contacto .contacto--header {
  text-align: center;
}
.contacto .contacto--header h2 {
  font-size: 45px;
  font-weight: 600;
  color: #532B88;
}
.contacto .contacto--info {
  margin-top: 75px;
  display: flex;
  justify-content: center;
}
.contacto .contacto--info .contacto--left .contacto-item h3 {
  font-size: 30px;
  color: #532B88;
  margin-top: 15px;
}
.contacto .contacto--info .contacto--left .contacto-item p {
  margin: 10px 0;
}
.contacto .contacto--info .contacto--left .contacto-item a {
  text-decoration: none;
  color: #fff;
  background-color: #532B88;
  padding: 10px 20px;
  border-radius: 10px;
}
.contacto .contacto--info .contacto--left .contacto-item a i {
  margin-right: 10px;
  font-size: 20px;
}
.contacto .contacto--info .contacto--left .contacto--social a {
  border-radius: 100%;
  padding: 15px 15px;
}
.contacto .contacto--info .contacto--left .contacto--social a i {
  margin: 0;
}
.contacto .contacto--info .contacto--maps iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.contacto {
  display: grid;
  grid-template-columns: 900px;
}
.contacto .contacto--info {
  display: grid;
  grid-template-columns: 600px 600px;
}

@media (max-width: 1100px) {
  header .header--left .header--text h1 {
    font-size: 30px;
  }
  header .header--left .header--text p {
    font-size: 20px;
  }
  header .header--img img {
    width: 350px;
  }
  header {
    display: grid;
    grid-template-columns: 400px 400px;
    grid-template-rows: 500px;
  }
  .cursos {
    height: 500px;
    margin-top: -100px;
  }
  .cursos .cursos--cards .cards {
    display: grid;
    grid-template-rows: 300px 150px;
  }
  .contacto {
    padding: 75px 0;
  }
  .contacto .contacto--info {
    display: grid;
    grid-template-columns: 400px 400px;
  }
}
@media (max-width: 770px) {
  header {
    height: 1250px;
  }
  header .header--left {
    margin-top: 1200px;
  }
  header .header--img img {
    margin-top: -900px;
    width: 600px;
  }
  header {
    display: grid;
    grid-template-columns: 600px;
    grid-template-rows: 500px 500px;
  }
  .cursos {
    height: 1600px;
  }
  .cursos .cursos--cards {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 450px 450px 450px;
    grid-gap: 30px;
  }
  .cursos .cursos--cards .cards {
    display: grid;
    grid-template-rows: 300px 150px;
  }
  .contacto {
    padding-top: 30px;
  }
  .contacto .contacto--info .contacto--info--left {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .contacto .contacto--info .contacto--info--left .contacto--info--whatsapp a {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 7px 15px;
  }
  .contacto .contacto--info .contacto--info--left .contacto--info--whatsapp a i {
    font-size: 20px;
  }
  .contacto .contacto--info .contacto--maps {
    padding-bottom: 50px;
  }
  .contacto .contacto--info .contacto--maps iframe {
    width: 100%;
    height: 100%;
  }
  .contacto {
    display: grid;
    grid-template-columns: 700px;
  }
  .contacto .contacto--info {
    display: grid;
    grid-template-columns: 700px;
    grid-template-rows: 500px 500px;
  }
}
@media (max-width: 578px) {
  header {
    height: 700px;
  }
  header .header--left {
    margin-top: 100px;
  }
  header .header--left h1 {
    font-size: 35px;
  }
  header .header--left p {
    font-size: 20px;
    font-weight: 200;
  }
  header .header--left .header--text--items ul {
    display: flex;
    flex-direction: row;
  }
  header .header--left .header--text--items ul li a {
    padding: 7px 25px;
  }
  header .header--img img {
    display: none;
  }
  header {
    display: grid;
    grid-template-columns: 300px;
  }
  a .cursos {
    height: 1600px;
  }
  a .cursos .cursos--cards {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 450px 450px 450px;
    grid-gap: 30px;
  }
  a .cursos .cursos--cards .cards {
    display: grid;
    grid-template-rows: 300px 150px;
  }
  .contacto .contacto--info .contacto--maps iframe {
    width: 100%;
    height: 100%;
  }
  .contacto {
    display: grid;
    grid-template-columns: 300px;
  }
  .contacto .contacto--info {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 400px 300px;
  }
}/*# sourceMappingURL=index.css.map */